A zine about Linux. That's all.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.0 KiB

3 years ago
3 years ago
  1. \documentclass[10pt,twoside,letterpaper]{book}
  2. \usepackage[utf8]{inputenc}
  3. \usepackage{amsmath}
  4. \usepackage{amsfonts}
  5. \usepackage{amssymb}
  6. \usepackage{makeidx}
  7. \usepackage{graphicx}
  8. \usepackage{lmodern}
  9. \usepackage{kpfonts}
  10. % Let's set this as a half-letter sized sheet
  11. % https://tex.stackexchange.com/questions/338789/how-to-set-paper-size-to-half-letter-5-5-x-8-5-in-in-amsbook
  12. \usepackage{geometry}
  13. \geometry{
  14. paperheight=8.5in,
  15. paperwidth=5.5in,
  16. heightrounded,
  17. margin=0.5in
  18. }
  19. % Adjust the top and bottom margins
  20. % http://kb.mit.edu/confluence/pages/viewpage.action?pageId=3907057
  21. \addtolength{\topmargin}{0.5in}
  22. \addtolength{\textheight}{-1in}
  23. % Set the header style
  24. % https://www.overleaf.com/learn/latex/Headers_and_footers
  25. \usepackage{fancyhdr}
  26. \pagestyle{fancy}
  27. \fancyhf{}
  28. \fancyhead[LE,RO]{the codex}
  29. \fancyhead[RE,LO]{Issue \#001}
  30. \cfoot{Page \thepage}
  31. \renewcommand{\footrulewidth}{1pt}
  32. \usepackage{kantlipsum}
  33. \author{Kenneth John Odle}
  34. \begin{document}
  35. \chapter{Introduction}
  36. \kant
  37. \kant
  38. \end{document}