I'm not very familiar with LaTeX however I decided to write my PhD thesis with it and it is done, but unfortunately I'm trying to create a list at the beginning of the document with the acronyms and symbols used and I am having problems. I have tried with the glossaries and with the nomencl package without success. I am using Temaker, MiKTeX, Windows 7, and Strawberry Perl. I manage to create a .glo document and the PDF, but no glossary appears. I include two very simple programs that I wrote after reading all the manuals and posts, I am using them just to test that I manage to run the packages. The first one with glossaries is:
Code: Select all
\documentclass{article}
\usepackage{glossaries}
\makeglossaries
\newglossaryentry{label1}
{
name=name1,
description={description1},
}
\begin{document}
sample...\gls{label1}
\printglossaries
\end{document}
Code: Select all
\usepackage{glossaries}
Code: Select all
\usepackage[toc, xindy]{glossaries}
I did install the package from MiKTeX Package Manager, so I do not understand why it is saying invalid syntax.Process started
latex: Cannot start MiKTeX package manager. latex: Data: Invalid syntax
Process exited normally
Also, alternatively, if I try with the nomencl package in a simple trial:
Code: Select all
\documentclass{article}
\usepackage{nomencl}
\makenomenclature
\begin{document}
trying...
\nomenclature{$Symbol1$}{Description1}
\nomenclature{$Symbol2$}{Description2}
\printnomenclature
\end{document}
Please, would you mind helping me out? I am really struggling and I just need this last bit to finish my thesis, after four years! Please!
I'm sure it is something obvious I am just overseeing!
Thank you in advance.