document.tex 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. \documentclass[paper=a5,fontsize=11pt,parskip=half,twoside,DIV=16]{scrbook}
  2. \KOMAoptions{toc=flat}
  3. \KOMAoptions{toc=idx}
  4. \usepackage{helpers}
  5. \usepackage{recipe}
  6. \usepackage[type={CC},modifier={by-sa},version={4.0}]{doclicense}
  7. \usepackage{makeidx}
  8. \makeindex
  9. \usepackage[toc,style=altlist,nopostdot]{glossaries}
  10. \makeglossaries
  11. \loadglsentries{glossarydefs}
  12. \glsaddall
  13. \title{The Open Source Cookbook}
  14. \lowertitleback{This compilation \copyright 2020, Samuel Flint,
  15. licensed \doclicenseName (\doclicenseIcon). Recipes copyright their
  16. respective contributors, and under the same terms unless otherwise
  17. noted.}
  18. \usepackage{hyperref}
  19. \hypersetup{
  20. pdftitle={The Open Source Cookbook},
  21. pdfcreator={LatexMk},
  22. pdflang={en-US},
  23. colorlinks=true,
  24. linkcolor=black,
  25. citecolor=black,
  26. filecolor=black,
  27. urlcolor=black
  28. }
  29. \begin{document}
  30. \maketitle
  31. \frontmatter
  32. \tableofcontents
  33. \mainmatter
  34. \backmatter
  35. \printglossary[nonumberlist]
  36. \printindex
  37. \end{document}
  38. %%% Local Variables:
  39. %%% mode: latex
  40. %%% TeX-master: t
  41. %%% End: