I'm using the glossaries package with MikTeX 2.9 (using TeXnicCenter as my editor) and my document is setup as follows:
\documentclass[ebook,11pt,openany]{memoir}
\usepackage{color}
\usepackage{graphicx}
\usepackage[toc]{glossaries}
\usepackage{float}
\usepackage[scaled]{berasans}
\usepackage[T1]{fontenc}
\usepackage{type1cm}
\usepackage{eso-pic}
\usepackage{mystyle}
\author{...}
\title{...}
\makeatletter
\AddToShipoutPicture{
\setlength{\@tempdimb}{.5\paperwidth}
\setlength{\@tempdimc}{.5\paperheight}
\setlength{\unitlength}{1pt}
\put(\strip@pt\@tempdimb,\strip@pt\@tempdimc){
\makebox(0,0){\rotatebox{55}{\textcolor[gray]{0.85}
{\fontsize{5cm}{5cm}\selectfont{DRAFT}}}}
}
}
\makeatother
\setcounter{tocdepth}{2}
\makeglossaries
\include{glossary}
\begin{document}
\maketitle
\frontmatter
\include{dedication}
\tableofcontents
\mainmatter
\include{introduction}
\include{chaptr1}
...
\backmatter
\printglossaries
\end{document}
Unfortunately, when I generate my document my PDF doesn't contain a glossary at all. Here's a quick snippet from my glossary file:
\newglossaryentry{entry}
{
name={entry},
description={my entry description.}
}
I'm also referencing the glossary entry from my chaptr1.tex file, which is included above, using the \gls{entry} command. I'm not seeing any errors in my build output, so I'm not sure what's going on. Any help would be appreciated.
pdflatex,makeglossaries,pdflatex,pdflatex(see Compile LaTeX with BibTeX and glossaries), right? It is similar to usingbibtex... – Werner Feb 7 '12 at 22:42