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