?? 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 + -