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.

52 lines
1.3 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. \documentclass[10pt,twoside,letterpaper]{report}
  2. \usepackage[utf8]{inputenc}
  3. \usepackage{amsmath}
  4. \usepackage{amsfonts}
  5. \usepackage{amssymb}
  6. \usepackage{makeidx}
  7. \usepackage{graphicx}
  8. \usepackage{kpfonts}
  9. % Let's set this as a half-letter sized sheet
  10. % https://tex.stackexchange.com/questions/338789/how-to-set-paper-size-to-half-letter-5-5-x-8-5-in-in-amsbook
  11. \usepackage{geometry}
  12. \geometry{
  13. paperheight=8.5in,
  14. paperwidth=5.5in,
  15. heightrounded,
  16. margin=0.5in
  17. }
  18. % Adjust the top and bottom margins
  19. % http://kb.mit.edu/confluence/pages/viewpage.action?pageId=3907057
  20. \addtolength{\topmargin}{0.5in}
  21. \addtolength{\textheight}{-1in}
  22. % Set the header style
  23. % https://www.overleaf.com/learn/latex/Headers_and_footers
  24. \usepackage{fancyhdr}
  25. \pagestyle{fancy}
  26. \fancyhf{}
  27. \fancyhead[LE,RO]{the codex}
  28. \fancyhead[RE,LO]{Issue \#001}
  29. \cfoot{Page \thepage}
  30. \renewcommand{\footrulewidth}{1pt}
  31. % Include sections and subsections in the TOC
  32. \setcounter{tocdepth}{2}
  33. \usepackage{kantlipsum}
  34. \author{Kenneth John Odle}
  35. \title{{\Huge the codex}\\{\footnotesize Life with Linux — A Zine}}
  36. \date{2021\\ August}
  37. \begin{document}
  38. \maketitle
  39. \tableofcontents
  40. \chapter{Introduction}
  41. This is just some dummy text
  42. \section{Part, the First}
  43. \kant
  44. \section{Part, the Second}
  45. \kant
  46. \end{document}