Problem : Line 11 in MKDoc.tex undefined control sequence when I pdflatex it on TS. The idx and ind files has zero bytes when I ran Makeindex on TS button
In the main document MkDoc I have several errors
line 35 at \gls{bdc}
line 37 at \gls{IEEE}
line 39 at \Gls{latex}
line 42 at \printglossaries
I use a preamble for input to MkDoc.tex . The preamble file has use glossaries package.
How to fix this? I don't understand how this works. Here is my MWE. Real example.
\documentclass{article}
\usepackage [utf8] {inputenc}
%\usepackage{hyperref}
\usepackage{inputenc}
\usepackage{fontenc}
\usepackage{glossaries}
\include{Preamble_MK2}
% OPTION 2 must make glossaries before each new entry
\makeglossaries
\begin{document}
\newglossaryentry{bdc}
{
name=bdc,description={Borneo Development Coporation}
}
\newglossaryentry{latex}
{
name=latex,description={Is a mark up language suitable for scientific documents}
}
\newglossaryentry{IEEE}
{
name=IEEE,description={Institute of Electrical Electronic Engineers }
}
\title{How to create a glossary of terms}
\makeindex % in order to create the .idx file
%\begin{document}
\make title
In Sarawak \gls{bdc} plays a key role in the development\\
\gls{IEEE} plays the professional membership organisation for engineers
The \Gls{latex} typesetting is suitable for documents that include \gls{maths}\\
\printglossaries
\end{document}

\makeis not a command. I think you mean\maketitlebut I don't know if that's just a typo in your example or a typo in your code. – cfr Nov 20 '14 at 03:48\makeindexmust be before\begin{document}. There are not\newglossaryentryfor "maths" word. – Fran Nov 20 '14 at 04:15