I'm honestly sorry for my stupid question but i just cannot get glossaries to function. I'm constantly reading that I should execute some sort of pearl script where i need a pearl processor or something.
I'm currently on a Windows 7 Computer with a pretty new and intact MikTeX installation using TeXmaker as Client.
I tried multiple times creating new .tex files and copy & pasting minimal examples but I just cant get it to work
Here's a MWE:
\documentclass[
fontsize=11pt,
a4paper,
pdflatex
]{article}
\usepackage[utf8]{inputenc}
\usepackage[german]{babel}
\usepackage[T1]{fontenc}
\usepackage{Blindtext}
\usepackage{glossaries}
\makeglossaries
\begin{document}
\section{Story of an Apple}
\Blindtext
\section{Story of a Pear}
\Blindtext
\newglossaryentry{apple}{ name=apple, description={it's used as an example fruit}}
\newglossaryentry{pear}{ name=pear, description={it's used as an example fruit}}
\glsaddall
\end{document}
It's sadly not working. Would be really cool if you guys could help me
Also the compiler tells me this:
! LaTeX Error: File `tracklang.sty' not found.
I already doublechecked. The File is installed. Also my MikTeX installation isn't older than a month.
Thanks for all your help. I really appreciate it.
MWE? It's a pretty nice feature ;-) – Jun 10 '15 at 19:53MWE. I just copied and compiled it: It runs out of the box on TeXLive 2014 (freeze state april 2015) and Linux – Jun 10 '15 at 20:01\printglossaries;-) – Jun 10 '15 at 20:29