do_l2h
来自「CCSM Research Tools: Community Atmospher」· 代码 · 共 46 行
TXT
46 行
#!/bin/csh -f##===============================================================================# do_l2h#===============================================================================## Create html version from latex document.## Usage: do_l2h <comp> <document type>## <comp> is the name of the component, library, or module used as the# basis for document filenames (e.g., coupler)## <document type> is one of the following:# req - requirements document# arch - architecture document# des - detailed design document# ref - reference manual# usr - user's guide# phys - algorithmic or physical description# # See the latex2html manual:# http://laborant.dfki.uni-sb.de:8000/doc/latex2html-manual-html-99_1/# for a desription of the command-line parameters used in this script.## C. DeLuca March 15, 2001#===============================================================================if($#argv != 2) then echo "Usage: do_l2h <component> <document type>" exitelse latex2html -white \ -toc_depth 5 \ -split +1 \ -show_section_numbers \ -address "<A HREF="mailto:esmf@ucar.edu">esmf@ucar.edu</A>" \ $1_$2doc.texendif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?