Generalglossaries | No Lists of Acronyms and Symbols

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
ChinchillaTerremoto
Posts: 2
Joined: Sun Feb 12, 2012 6:54 pm

glossaries | No Lists of Acronyms and Symbols

Post by ChinchillaTerremoto »

Dear all,

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}
I have also tried changing the command line

Code: Select all

\usepackage{glossaries}
by

Code: Select all

\usepackage[toc, xindy]{glossaries}
But when I run LaTeX (I'm not using PDFLaTeX because in my thesis all the figures have EPS format, so I do prefer to run latex at this stage) it appears this error:
Process started

latex: Cannot start MiKTeX package manager. latex: Data: Invalid syntax

Process exited normally
I did install the package from MiKTeX Package Manager, so I do not understand why it is saying invalid syntax.

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}
This time there is no error at all and the .nlo file is created, but still the PDF does not output the list with the nomenclature.

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.
Last edited by localghost on Mon Feb 13, 2012 10:40 am, edited 2 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

glossaries | No Lists of Acronyms and Symbols

Post by cgnieder »

This may be a stupid question but you did run

Code: Select all

> makeglossaries yourfilename
didn't you?
site moderator & package author
ChinchillaTerremoto
Posts: 2
Joined: Sun Feb 12, 2012 6:54 pm

Re: glossaries | No Lists of Acronyms and Symbols

Post by ChinchillaTerremoto »

Dear Clemens,

thank you, it was actually dead easy. I was not really sure were to run 'makeglossaries myfile'. This was the problem! But after your comment and the useful website

http://the-moni-blog.blogspot.com/2009/ ... er-on.html

I followed step by step what they said (because I am using windows) and, as I have Strawberry Perl installed it was actually easy.

Thank you again!
Post Reply