Code: Select all
xindy -I xindy -L dutch -M test -C utf8 -t test.glg -o test.gls test.glo
Code: Select all
Cannot locate xindy module for language dutch in codepage utf8
Code: Select all
xindy -I xindy -M test -t test.glg -o test.gls test.glo
LaTeX file test.tex:
Code: Select all
\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[dutch]{babel}
\usepackage{appendix}
\usepackage[automake,xindy={language=dutch,codepage=utf8}]{glossaries}
\newglossaryentry{John Lennon}{
name={John Lennon},
sort={John Lennon},
description={A Beatle}}
\newglossaryentry{Paul McCartney}{
name={Paul McCartney},
sort={Paul McCartney},
description={Another Beatle}}
\newglossaryentry{Ringo Star}{
name={Ringo Star},
sort={Ringo Star},
description={Yet another Beatle}}
\newglossaryentry{George Harrison}{
name={George Harrison},
sort={George Harrison},
description={Some Beatle}}
\makeglossaries
\begin{document}
\glsaddall
\printglossary[style=indexgroup]
\end{document}
Cannot seem to wrap my head around this, any help is appreciated.