I just got the "glossaries" package working by using the supplied information in the "LaTeX Community Know How Section", specifically: Using makeindex explicitly. To build my PDF file from Texworks i now run five steps:
- First run of PDFLaTeX.
- Make Glossaries
Code: Select all
makeindex -s $basename.ist -t $basename.glg -o $basename.gls $basename.glo
- Make Acronyms
Code: Select all
makeindex -s $basename.ist -t $basename.alg -o $basename.acr $basename.acn
- Make Symbols
Code: Select all
makeindex -s $basename.ist -t $basename.slg -o $basename.sym $basename.sbl
- Second run of PDFLaTeX.
- Can I somehow combine all these steps so only one click on the green "Typeset" button is necessary to produce the final PDF?
- I used to use TeXworks default run option "PDFLaTeX+MakeIndex+BibTeX" which uses texify.exe before. Can I combine the steps above with this option? I assume that I'm missing the BibTeX command now, don't I? Are the new options for MiKTeX and PDFLaTeX identical to the former ones?