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.

95 lines
3.3 KiB

  1. \documentclass[twoside]{report}
  2. \usepackage[utf8]{inputenc}
  3. \usepackage{amsmath}
  4. %\usepackage{amsfonts}
  5. \usepackage{amssymb}
  6. \usepackage{makeidx}
  7. %\makeindex
  8. \usepackage{graphicx}
  9. \usepackage{kpfonts}
  10. \raggedbottom
  11. % Where are our images?
  12. \graphicspath{{images/}}
  13. % Let's set this as a half-letter sized sheet
  14. % https://tex.stackexchange.com/questions/338789/how-to-set-paper-size-to-half-letter-5-5-x-8-5-in-in-amsbook
  15. \usepackage{geometry}
  16. \geometry{
  17. paperheight=8.5in,
  18. paperwidth=5.5in,
  19. % heightrounded,
  20. margin=0.5in
  21. }
  22. % Adjust the top and bottom margins
  23. % http://kb.mit.edu/confluence/pages/viewpage.action?pageId=3907057
  24. \addtolength{\topmargin}{0.5in}
  25. \addtolength{\textheight}{-1in}
  26. % Set the header style
  27. % https://www.overleaf.com/learn/latex/Headers_and_footers
  28. \usepackage{fancyhdr}
  29. \pagestyle{fancy}
  30. \fancyhf{}
  31. \fancyhead[LE,RO]{\textit{the codex}}
  32. \fancyhead[RE,LO]{Issue \#002}
  33. \cfoot{Page \thepage}
  34. \renewcommand{\footrulewidth}{0.5pt}
  35. % Include sections and subsections in the TOC
  36. % https://latex-tutorial.com/tutorials/table-of-contents/
  37. % \setcounter{tocdepth}{2}
  38. % We will probably want some two- or three-column sections
  39. \usepackage{multicol}
  40. % Stop resetting the footnote count after each chapter
  41. \counterwithout{footnote}{chapter}
  42. % Let's wrap some images
  43. \usepackage{wrapfig}
  44. % Do we want to include URLs?
  45. \usepackage{hyperref}
  46. % Use tab stops when we need to (especially in footnotes)
  47. \usepackage{tabto}
  48. % Define 18 tab stops (at 1/4" intervals)
  49. \NumTabs{18}
  50. % Use strikethrough
  51. \usepackage{ulem}
  52. \author{Kenneth John Odle}
  53. \title{
  54. {\Huge the codex} \\
  55. {\footnotesize Life with Linux — A Zine \\
  56. \bigskip
  57. Typeset in \LaTeX{} \\
  58. Issue \#002}
  59. }
  60. \date{\begin{small}2021.10.01\end{small}}
  61. \begin{document}
  62. \maketitle
  63. \section*{Impressum}
  64. All contents \copyright2021 Kenneth John Odle
  65. Although this is now in your hands, and it's also on the web, so if you really wanted to steal this, I've made it pretty darn easy. I can't imagine why anyone would want to, though. You don't need to, however, since this is licenced under a CC BY-NA-SA 4.0 Creative Commons license. More information is at \href{https://creativecommons.org/licenses/by-nc-sa/4.0/}{https://creativecommons.org/licenses/by-nc-sa/4.0/}. \includegraphics[scale=0.35]{ncsa4-0}
  66. FYI, this is made in \LaTeX \,using the report document class. It then gets exported to a letterhalf (5.5 in x 8.5 in) pdf, which then gets made into a booklet using PDF Booklet (\href{https://pdfbooklet.sourceforge.io/wordpress/}{\texttt{https://pdfbooklet.sourceforge.io/wordpress/}}).
  67. I'm pushing this to my own git server as I write this. You can find it \href{https://git.kjodle.net/kjodle/the-codex}{here}: \texttt{https://git.kjodle.net/kjodle/the-codex}. New issues will be pushed after they are complete.
  68. You can just skip over all the diversions in you want. It's just how my mind works. (And yes, there will be politics in this. \textit{You have been warned.}) Also, I use a lot of em-dashes, parentheses, and footnotes because that is also how my mind works. It's just one big long stream of consciousness up in here most days.
  69. \tableofcontents
  70. \chapter{The Early Salad Days, continued}
  71. Boring, early life stuff when my world smelled like sweat and disinfectant and room temperature bologna. Feel free to skip this. I wish I could.
  72. \end{document}