General ⇒ nomenclature/glossary
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
nomencl package, glossary, .nlo @ .nls files
I wanted to ask you for help with 2 things:
1/ Glossary
When I use command "\nomenclature{symbol}{description}" it creates an input into .nlo file but it won't appear in .nls file and therefore in the document. Only when I re-write entries in .nls file manually I can see the result in my document - somehow .nlo doesn't feed .nls file. Any idea why? I guess it'd something "trivial" but apparently behind my experience/ability... I have tried to fix it by myself using documentation for "nomencl" as recommended by one of you, but unsuccessfully so far (apart of the fact that I am able to produce now glossary at least manually... ).
2/ In my document, first few pages contain a line on top of the page right above the title (e.g. Abstract, Acknowledgement...). I would like to get rid of it but cannot find where it is defined. I have looked through .cls file but haven't find anything.
I have attached those files...
Thank you,
a.k.
- Attachments
-
- thesis.zip
- (189.42 KiB) Downloaded 158 times
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
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
nomenclature/glossary
I have tried to fix my glossary as you probably know from my previous posts...
I was not successful though. Well, I wanted to ask if anyone could provide an example/file of working glossary they might have... It would be really helpfull.
Cheers.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
nomenclature/glossary
here's a very small example using nomencl:
Code: Select all
\documentclass{article}
\usepackage{nomencl}
\makenomenclature
\begin{document}
\section{Test}
\begin{equation}
e^{\pi i} + 1 = 0
\end{equation}%
\nomenclature{$e$}{Euler's number}%
\nomenclature{$\pi$}{The ratio of any circle's circumference to its diameter}%
\printnomenclature
\end{document}
Code: Select all
makeindex nomencltest.nlo -s nomencl.ist -o nomencltest.nls
Stefan