📄 make_doc
字号:
#!/bin/ksh##===============================================================================# make_doc#===============================================================================# # Builds ESMF html and pdf documents from latex source. # (Currently hard-wired for TimeMgr documents)## Usage: make_doc ## This script should be run in the esmf/doc directory.# D. Neckels# Aug. 15, 2001#===============================================================================docprojs="TimeMgr Time Date"sourcedir="../interface/F90"dir=`pwd`echo $dir | grep 'esmf/doc$'if [ "$?" -ne "0" ]then echo "This script should be run in esmf/doc" exit 1fiecho "Building Tex files..."for proj in $docprojsdo echo "\tBuilding tex documents for <$proj>" sfiles=`ls $sourcedir/*"$proj"Overload.F` sfiles=${sfiles}" " sfiles=${sfiles}`ls $sourcedir/*"$proj".F` echo "sfiles=<$sfiles>" perl protex -bF +f $sfiles > TimeMgmt/MFM_${proj}.texdonecd TimeMgmtecho "Executing do_latex..."do_latex TimeMgmt ref echo "Executing do_l2h..."do_l2h TimeMgmt ref > /dev/nullecho ""dvipdf TimeMgmt_refdoc.dvicd ..
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -