Navigation
Records in this category
- How to convert LaTeX files into HTML files?
- How to change the bibliography/reference names?
- How to make a list of abbreviations or a glossary in the appendices?
- How to include source code (programs) in LaTeX?
- How to create multiple indexes?
- I prefer to have my own bibliography appearance, e.g., customize my bibliography for a particular publication, how to do that?
- I need to generate both DVI and PDF, what should I write in the source code?
- How to use hyperref and pdflatex?
- Error: Package hyperref Warning:Token not allowed in a PDFDocEncoded string?
- Error message: ! pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has been already used, duplicate ignored ...
- How can I draw a tree quickly and easily?
- I have to deal with TeX macros... Any online Tex macro programming tutorial?
- Can I install LaTeX/TeX systems on a shared host like BlueHost?
- Why latexrender based on LaTeX does not work in my WordPress/blog?
- Can I install latex2html on a shared host?
- Why LaTeX cannot find my own style/class file, e.g., llncs.cls?
- How to use latex2html to convert my paper to webpages?
- How to enable math on MediaWiki?
- How to resolve this problem: Failed to parse (PNG conversion failed; check for correct installation of latex, dvips, gs, and convert) in MediaWiki when I try to enable math?
Tags
Sticky FAQs
Education » Computer Science » LaTeX
How to make a list of abbreviations or a glossary in the appendices?
Use the package {nomencl} (manual),
which provides a mechanism for a glossary/nomenclature.
If you need similar functionalities, say, a list of abbreviations, try to
define them yourself as follows:
\let\abbrev\nomenclature
\renewcommand{\nomname}{List of Abbreviations}
\setlength{\nomlabelwidth}{.45\hsize} %%% Length of each label, see the manual.
\renewcommand{\nomlabel}[1]{#1 \dotfill} %%% To center the lables, you can use
\hfill #1 \hfill instead.
\setlength{\nomitemsep}{-\parsep}
\makenomenclature
\newcommand{\listofabbreviations}{
\printnomenclature
\newpage
}
Then, the command \arrev{DL}{Description Logics} defines the lables, which can
then be used for \listofabbreviations (possibly in the appendix).
Wait... This must be done by makeindex like this: makeindex foo.nlo -s
nomencl.ist -o foo.nls
To define a postprocessing in MiKTEX gives you an easy option:
just add above arguments "foo.nlo -s nomencl.ist -o foo.nls".
Tags: latex
Related entries:
- How to change the bibliography/reference names?
- I prefer to have my own bibliography appearance, e.g., customize my bibliography for a particular publication, how to do that?
- How to install SVN (subversion) on Bluehost/Hostmonster etc.?
- What are the commonly seen Latin words/phrases etc. in technical papers?
- How to show hidden files, e.g., files starting with a dot, on Mac?
Last update: 2009-01-02 16:49
Author: Admin
Revision: 1.0
You can comment this FAQ