General ⇒ Nomenclatur
Nomenclatur
\usepackage[dvips]{graphicx}
\usepackage{nomencl}
\nomenclature{$\beta$}{scattering angle}
I really don't know what to do about that and I can't find an answer in my learning LaTeX book.
Thank you
Heather
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Nomenclatur
Nomenclatur
if it cannot be presented in your final compiled file.
try this command:
makeindex (your file title).nlo -s nomencl.ist -o (your file title).nls
coz it wont start automatically when you compile the file.
Actually the multibib has the same problem ,in which the bibtex cannot be started automatically either.
Hopefully this solution could work for your case.
Ps: if you feel it is troublesome to type command everytime, you could write a macro using batch or vbs script, easy to fix.
Heather wrote:I have been having problems with getting nomenclature to work for my LaTeX document. This is what I have so far:
\usepackage[dvips]{graphicx}
\usepackage{nomencl}
\nomenclature{$\beta$}{scattering angle}
I really don't know what to do about that and I can't find an answer in my learning LaTeX book.
Thank you
Heather
-
rockstar1707
- Posts: 27
- Joined: Wed Jan 17, 2007 12:35 pm
Nomenclatur
Preamble
Code: Select all
\usepackage{nomencl}
\makenomenclatureCode: Select all
\nomeclature{<simbol>}{<description>}
\printnomenclature % put this command at the place where you want the nomenclature to be printedmakeindex settings
Code: Select all
makeindex <filename>.nlo -s nomencl.ist -o <filename>.nls- didn't put "\makenomenclature" to the preamble,
- didn't use the "\printnomenclature" command in the document, and
- forgot to setup the "makedindex" command for you build profile (Build -> Define output profiles)