I am using an finished template at my school for writing my thesis in LaTeX. I am using TeXShop. My problem is that I can't get the symbol list to appear. It is no problem to get my abbreviations to appear. In the abbreviations I am using e.g.
\newacronym{ARMA}{ARMA}{auto regressive moving average}
For my symbol list I am using e.g
\newglossaryentry{symb:N}{sort={3},
name={$\mathbb N$},
first={first $\mathbb N$},
text={additional $\mathbb N$},
description={Set of natural numbers},
type=symbolslist}
In my main file I am typing:
\printglossary[type=\acronymtype,style=long ,title=Abbreviations, toctitle=Abbreviations]
\printglossary[type=symbolslist,style=long ,title=Symbols]
Settings:
\usepackage{makeidx}
\usepackage[nonumberlist,toc,acronym]{glossaries}
\newglossary[slg]{symbolslist}{syi}{syg}{Symbols}
\makeglossaries
\include{Abbr} % all abbreviations
\include{Symbols} % all symbols
I am compiling it with: latex – pdflatexmk – latex
makeglossariesas well aspdflatexto make the lists appear. I'm a little confused by your compilation list. Why are you using bothlatexandpdflatexmk? By the way, use\inputinstead of\includeto input the files containing the definitions, see Why shouldn't I use \include to include my glossary definitions?. – Nicola Talbot Jun 08 '14 at 11:56pdflatexmkto do this for you. Have a look at How to make Latexmk use makeglossaries? – Nicola Talbot Jun 08 '14 at 13:44makeglossariesengine in TeXShop's directory in your home Library directory e.g. under/Users/YourUserName/Library/TeXShop/engines/disabled. Note that that path will not be quite correct as I have not used a Mac for a while and can't remember the details.disabled, for example, might beinactiveor similar. There are instructions there for activating the engines. Or you can read TeXShop's help. – cfr Jun 08 '14 at 13:48