diff options
author | Karl Berry <karl@freefriends.org> | 2016-10-17 21:25:14 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-10-17 21:25:14 +0000 |
commit | 0ef9e5e0733974cb6927cb3512c75165998e0b59 (patch) | |
tree | 9266f2f6d37c5ceb28c5ddb1bb1347017be14a46 /Master/texmf-dist/doc/latex/testidx/samples/sample-idx.tex | |
parent | 194bd35605c2da5ae9f60db1eae3c76992a4d92b (diff) |
testidx (17oct16)
git-svn-id: svn://tug.org/texlive/trunk@42294 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/testidx/samples/sample-idx.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/testidx/samples/sample-idx.tex | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/testidx/samples/sample-idx.tex b/Master/texmf-dist/doc/latex/testidx/samples/sample-idx.tex new file mode 100644 index 00000000000..964dc13e292 --- /dev/null +++ b/Master/texmf-dist/doc/latex/testidx/samples/sample-idx.tex @@ -0,0 +1,36 @@ +% This file is public domain. +% +% This example document demonstrates the testidx package +% with makeindex. You can build this document using: +% +% pdflatex sample-idx +% makeindex sample-idx.idx +% pdflatex sample-idx +% +% If you are using arara, the directives are: +% +% arara: pdflatex +% arara: makeindex +% arara: pdflatex +\documentclass{article} + +\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} + |