Make glossary
#1063
Replies: 2 comments
-
@Marsevil For me it works. Consider the following ( \documentclass[11pt]{article}
\usepackage{fontspec}
\usepackage{glossaries}
\makeglossaries
\newglossaryentry{latex}
{
name=latex,
description={Is a markup language specially suited
for scientific documents}
}
\newglossaryentry{maths}
{
name=mathematics,
description={Mathematics is what mathematicians do}
}
\title{How to create a glossary}
\author{ }
\date{ }
\begin{document}
\maketitle
The \Gls{latex} typesetting markup language is specially suitable
for documents that include \gls{maths}.
\clearpage
\printglossaries
\end{document}
Then tectonic -k test_glossary.tex
makeglossaries test_glossary
tectonic -k test_glossary.tex produce a pdf with glossary. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ok thank you, it works. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
I everyone,
Today I'm trying to make a glossary in my Latex document. And unfortunately, it does not work.
I found this issue which sounds related to that but still no contribution at that time.
I'm wondering if somebody found a work around, I tried to run Tectonic with
--keep-intermediates
then runmakeglossaries
manually and, to finish, re-run tectonic, but my glossary still does not show up in the generated document.Please note that there is no error reported.
Beta Was this translation helpful? Give feedback.
All reactions