diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/testidx/samples/sample-idx-t1.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/testidx/samples/sample-idx-t1.tex | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/testidx/samples/sample-idx-t1.tex b/Master/texmf-dist/doc/latex/testidx/samples/sample-idx-t1.tex new file mode 100644 index 00000000000..6d50be97f06 --- /dev/null +++ b/Master/texmf-dist/doc/latex/testidx/samples/sample-idx-t1.tex @@ -0,0 +1,37 @@ +% This file is public domain. +% +% This example document demonstrates the testidx package +% with makeindex. You can build this document using: +% +% pdflatex sample-idx-t1 +% makeindex sample-idx-t1.idx +% pdflatex sample-idx-t1 +% +% If you are using arara, the directives are: +% +% arara: pdflatex +% arara: makeindex +% arara: pdflatex +\documentclass{article} + +\usepackage[T1]{fontenc} +\usepackage{makeidx} +\usepackage + [% options: + stripaccents,% strip accents from sort key (default) + %nostripaccents,% don't strip accents from sort key + %verbose,% show \index commands in the text + noverbose,% don't show \index commands in the text (default) + showmarks,% highlight where \index has been used (default) + %hidemarks,% don't highlight where \index has been used + %notestencaps,% don't test the encaps + ]{testidx} + +\makeindex + +\begin{document} +\testidx + +\printindex +\end{document} + |