I'm writing my thesis and have to use a LyX-template which uses the glossary package. When creating the PDF in LyX there is no error but also no glossary?
I check my document against the description here: https://secure.mario-konrad.ch/wiki/doku.php?id=latex:glossary (last example)
The interesting point the execution chain of compiling:
$ latex example.tex
$ makeindex example.glo -s example.ist -t example.glg -o example.gls
$ latex example.tex
$ dvips example.dvi -o example.ps
Does anybody know how to configure LyX to do the compilation in this order?
glossaryshould not be used anymore and theglossariespackage should be used instead. Check my answer here. To omit the acronyms list, just ignore the\newglossaryentry{...}{type=\acronymtype...and the\printglossary[type=\acronymtype]. – e-birk Mar 05 '13 at 23:18\printglossary...commands? There is also an example given. Is it working? - To your second question: It is possible according to this documentation on how to upgrade fromglossarytoglossaries. You might replace\newacronymwith\oldacronymto get the old functionality. – e-birk Mar 06 '13 at 23:07@e-birkto notify me. Otherwise I get notifications only about answers and comments to my own questions and comments to my own answers. – e-birk Mar 13 '13 at 17:41makeglossariesis a Perl script. Do you have Perl installed (also mentioned in a comment here? Furthermore, as said the ".bat" file was not tested. For me, following seems to workFOR /F %%i in ("%1") do makeglossaries %%~ni. Maybe the full path of the filemakeglossarieshas to be added... – e-birk Mar 13 '13 at 17:54.batfile consists of the two lines:FOR /F %%i in ("%1") do C:\texlive\2012\bin\win32\makeindex.exe -s %%~ni.ist -t %%~ni.glg -o %%~ni.gls %%~ni.gloandFOR /F %%i in ("%1") do C:\texlive\2012\bin\win32\makeindex.exe -s %%~ni.ist -t %%~ni.alg -o %%~ni.acr %%~ni.acn. (Please adjust the path of "makeindex" such that it points tomakeindex.exein your system!) – e-birk Mar 13 '13 at 17:57