main.tex 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. \documentclass[a4paper, 12pt]{article}
  2. \def\arcdeg{\hbox{$^\circ$}}
  3. \def\arcmin{\hbox{$^\prime$}}
  4. \def\arcsec{\hbox{$^{\prime\prime}$}}
  5. \def\farcs{\hbox{$.\!\!^{\prime\prime}$}}
  6. \def\farcm{\hbox{$.\!\!^{\prime}$}}
  7. \def\itfarcs{\hbox{{\it $.\!\!^{\prime\prime}$}}}
  8. \def\arcpt{${{\lower3pt\hbox{$^{\prime\prime}$}}\atop{\raise4pt\hbox{.}}}$}
  9. \setlength\evensidemargin{0.0in}
  10. \setlength\oddsidemargin{0.0in}
  11. \setlength\textwidth{6.5in}
  12. \setlength\textheight{9.5in}
  13. \setlength\topmargin{-0.5in}
  14. \usepackage{graphicx}
  15. \usepackage{geometry}
  16. \geometry{ headsep=20pt,
  17. headheight=20pt,
  18. left=10mm,
  19. top=15mm,
  20. right=10mm,
  21. bottom=15mm,
  22. footskip=20pt,
  23. includeheadfoot}
  24. \setlength{\parindent}{0em}
  25. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  26. % For Footer
  27. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  28. \usepackage[english]{babel}
  29. \usepackage[utf8]{inputenc}
  30. \usepackage{fancyhdr}
  31. \pagestyle{fancy}
  32. \fancyhf{}
  33. \renewcommand{\headrulewidth}{0pt}
  34. %\rhead{Share\LaTeX}
  35. %\lhead{Guides and tutorials}
  36. \rfoot{\thepage}
  37. \def\day{}
  38. \cfoot{\textit{\day}}
  39. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  40. % For Multiple Columns within Text
  41. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  42. \usepackage{multicol}
  43. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  44. % For Links to Websites
  45. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  46. % https://www.sharelatex.com/learn/Hyperlinks
  47. \usepackage{hyperref}
  48. \hypersetup{
  49. colorlinks=true,
  50. linkcolor=blue,
  51. filecolor=magenta,
  52. urlcolor=cyan,
  53. }
  54. \urlstyle{same}
  55. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  56. \begin{document}
  57. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  58. %Title Page
  59. \include{./title}
  60. % Title Page for the Year, Then "Chapters" for Each Month
  61. \def\year{2021} % The year is 2017
  62. \include{newyear} % Include "Title Page" for Year
  63. %\def\month{August} % The month is August
  64. %\include{./2020/2020_08} % Include the writing for the month
  65. %\def\month{September} % Include more months as you go
  66. %\include{./2020/2020_09}
  67. %\def\year{2021} % Set the New Year
  68. %\include{newyear} % Include the page for the new year, and continue!
  69. %\def\month{January} % The month is January
  70. %\include{./2021/2021_01} % Include the writing for the month
  71. \def\month{March}
  72. \include{./2021/2021_03}
  73. \def\month{April}
  74. \include{./2021/2021_04}
  75. \end{document}