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.

60 lines
1.5 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
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. % https://latex-tutorial.com/tutorials/table-of-contents/
  33. \setcounter{tocdepth}{2}
  34. % We will probably want some two- or three-column sections
  35. \usepackage{multicol}
  36. \usepackage{kantlipsum}
  37. \author{Kenneth John Odle}
  38. \title{{\Huge the codex}\\{\footnotesize Life with Linux — A Zine\\Typeset in \LaTeX}}
  39. \date{2021\\ August}
  40. \begin{document}
  41. \maketitle
  42. \tableofcontents
  43. \chapter{Introduction}
  44. This is just some dummy text
  45. \section{Part, the First}
  46. \kant
  47. \section{Part, the Second}
  48. \begin{multicols}{2}
  49. [This is the beginning of our great submission.]
  50. \kant
  51. \end{multicols}
  52. \kant
  53. \end{document}