?? do_latex
字號:
#!/bin/csh -f##===============================================================================# do_latex#===============================================================================# Build document with bibliography if available. ## Usage: do_latex <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## C. DeLuca March 15, 2000#===============================================================================if ($#argv != 2) then echo "Usage: do_latex <component> <document type> exitelse if (-r $1.bib) then cp $1.bib $1_$2doc.bib latex $1_$2doc.tex latex $1_$2doc.tex bibtex $1_$2doc latex $1_$2doc.tex rm -f $1_$2doc.bib else latex $1_$2doc.tex latex $1_$2doc.tex endifendif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -