📄 readme
字号:
## $XORP: xorp/docs/mk/README,v 1.3 2004/06/15 00:22:01 pavlin Exp $#This directory contains Makefile includes. These are intended to helpwith generating consistent documentation. At present only one includefiles exist: Makefile.doc.am=============================================Makefile.doc.am:Makefile.doc.am is intended to be used in conjunction with automake'sMakefile.am files. Currently, the Makefile.am should contain thefollowing: * DOCS: the list of documents. * For each document foo in "DOCS" there should be the foo_LATEX with the Latex and Bibtex files for that document. Note that the main Latex file for document foo MUST be named foo.tex. Otherwise, we would have to introduce additional semantics to Makefile.am. * All figures for that document should be listed in foo_FIGURES. A file with a figures can be in any directory, and the file name can have any extention, though it is recommended that all files should be Encapsulated Postscript (i.e., *.eps). If a file extention is *.eps or *.ps and if there is a correspoding *.fig file in the same directory, then the *.eps or *.ps file will be regenerated whenever the *.fig file is modified: if the listed file name is *.eps, the regenerated file will be Encapsulated Postscript; if the listed file name is *.ps, the regenerated file will be Postscript. * Note that the only Postscript files "gmake clean" would remove are the foo.ps final documents, hence it is safe to have other *.ps files in the directory with the Latex source files. Though, it is recommended that all figures are in a subdirectory; for Xorp, the common convention is that directory name to be "figs". Other files that "gmake clean" removes are: - all foo.pdf final documents - all files with suffix *.aux *.bbl *.blg *.dvi *.logExample of a Makefile.am file that uses Makefile.doc.am:## Process this file with automake to produce Makefile.in.include $(top_srcdir)/docs/mk/Makefile.doc.am# -- Document NamesDOCS = mydoc# -- Document Sourcesmydoc_LATEX = mydoc.bib mydoc.texmydoc_FIGURES = \ figs/fig1.eps \ figs/fig2.eps
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -