- Output as PDF:
$ latex -output-format=pdf -shell-escape foo.tex
- Get current job's path information with package 'fink'. After having created fink.sty in terms of the fink manual, move it here (debian lenny):
$ cp /thesis/fink.sty /usr/share/texmf-texlive/tex/latex/fink/fink.sty
- Suppress automatically section numbering:
\section*{1 Manually numbering section}
- Reset page number to 1:
\setcounter{page}{1}
- Comment content (3 methods):
- % annotation
- \begin{comment} lines of annotations \end{comment}
- \newcommand{\mycomment}[1]{}
- Debug output:
\typeout{msg}
- Create nomenclature (i.e. glossary):
\documentclass{article}
\usepackage{nomencl}
\makenomenclature
\begin{document}
\nomenclature{$\sigma$}{The total mass of angels per unit area}
\printnomenclature
\end{document}$ latex my_article.tex
$ makeindex my_article.nlo -s nomencl.ist -o my_article.nls
Weekend
11 年前
没有评论:
发表评论