A personal planner which I am developing in LaTeX. You are free to download and adapt to your own purposes. This is my first project in LaTeX. Pull requests are welcome.
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.

407 lines
10 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. \documentclass[twoside]{book}
  2. \usepackage[
  3. letterpaper,
  4. bindingoffset=15mm,
  5. textheight=250mm,
  6. textwidth=175mm,
  7. top=1in,
  8. bottom=20mm,
  9. footskip=0.5in,
  10. marginparwidth=0mm,
  11. marginparsep=0mm
  12. ]{geometry}
  13. % Changed from kpfonts
  14. % https://www.reddit.com/r/LaTeX/comments/ahpv0g/comment/eejd28h/?utm_source=reddit&utm_medium=web2x&context=3
  15. %\usepackage[bitstream-charter]{mathdesign}
  16. %\usepackage[T1]{fontenc}
  17. \usepackage{kpfonts}
  18. % Two-columns in introduction
  19. \usepackage{multicol}
  20. \setlength{\columnsep}{8mm}
  21. % Use tab stops when we need to
  22. \usepackage{tabto}
  23. % Use a better tabular system (2022.12.26 - currently on "Habits" pages)
  24. \usepackage{tabularray}
  25. \usepackage{ninecolors}
  26. \author{Kenneth John Odle}
  27. % Put page numbers in bottom center
  28. \pagestyle{plain}
  29. % Add our copyright image
  30. \usepackage{graphicx}
  31. \graphicspath{ {./images/} }
  32. % https://texfaq.org/FAQ-repeat-num
  33. % https://ctan.org/pkg/forloop
  34. % Output a variable value: https://sodocumentation.net/latex/topic/9224/counters--if-statements-and-loops-with-latex
  35. \usepackage{forloop}
  36. % Draw circles, but redefine the command first
  37. \usepackage{wasysym}
  38. \newcommand\kcir{{\large \Circle ~}}
  39. \raggedright
  40. \raggedbottom
  41. \begin{document}
  42. \chapter*{}
  43. \thispagestyle{empty}
  44. % \pagenumbering{gobble}
  45. % Eliminates page number on reverse side; see https://texfaq.org/FAQ-nopageno
  46. \begin{center}
  47. {\Huge Planning Notebook}
  48. \medskip
  49. by Kenneth John Odle
  50. \medskip
  51. v. 2.0.0 \\ 2024 Version
  52. \medskip
  53. \today{}
  54. \vspace*{10cm}
  55. \includegraphics[scale=0.5]{ccancs4}
  56. \bigskip
  57. \begin{minipage}{14cm}
  58. \begin{flushleft}
  59. This work is provided under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
  60. \end{flushleft}
  61. This means:
  62. \begin{itemize}
  63. \itemsep-0.30em
  64. \item You are free to share this work.
  65. \item You are free to adapt this work.
  66. \item You are free to share your adaptation(s) of this work.
  67. \item You are not allowed to sell this work or your adaptation(s) of this work.
  68. \item You must attribute it to the author by providing the following link:
  69. \end{itemize}
  70. \texttt{https://git.kjodle.net/kjodle/planner-in-latex}
  71. \end{minipage}
  72. \end{center}
  73. \chapter*{Introduction}
  74. \begin{multicols}{2}
  75. This document is part of a never-ending search for the perfect planner.
  76. My goal was to create a planner where I can plan my days, weeks, and entire year ahead of time as much as possible. In addition to a regular planner where I can make note of everyday life events (i.e., medical appointments), I also wanted a way to incorporate annual goals into my weekly plans. I believe the reason so many new year's resolutions fail is that we simply forget about them. If you want to achieve something, you have to keep that goal in front of you. I also wanted a place to reflect on my progress on those goals, both on a monthly and on an annual basis.
  77. Prior to this year, this was contained in a single document. Several notable changes have led this to being version 2.0.0, most notably:
  78. \begin{itemize}
  79. \item The research on goals and habits has been moved to a separate document (``Notes'').
  80. \item The annual and monthly goals and reflection pages have been moved to a separate document (``Annual Goals''). This makes it easier to refer to them when planning your weeks.
  81. \item Tables have been reconstructed entirely using the \texttt{tabularray} package for greater consistency.
  82. \end{itemize}
  83. You are welcome to download the pdf of this planner and use it. You can also customize it by forking or downloading the package and making whatever changes you may want. All of these documents have been written in \LaTeX{}; only the most basic working knowledge of that language should be required to make basic changes.
  84. If you choose to fork this work, please note that it is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License and your work, should you choose to release it (and I encourage you to) is required to be released under the same license.
  85. \end{multicols}
  86. %\newpage
  87. %\thispagestyle{plain} % empty
  88. %\mbox{}
  89. % Not part of the table definition; it just makes sure to get us off this introductory page
  90. % Be sure the next page is a left (i.e., even-numbered) page.
  91. %%%%%%%%%%%%%%%%%%%%%
  92. % Begin a new week
  93. \newcounter{ct}
  94. \forloop{ct}{1}{\value{ct}<54}{
  95. %%%%%%%%%%%%%%%%%%%%%
  96. % Begin a new week
  97. % First Left Page
  98. \newpage
  99. \noindent \tabto{4mm} \textbf{Week \thect}
  100. \vspace{3mm}
  101. Month and Year \line(1,0){10cm}
  102. \vspace{5mm}
  103. This week's goal activities:
  104. \vspace{3mm}
  105. \begin{tblr}{
  106. width=175mm,
  107. colspec={ | X[30,l] | X[35,l] | X[35,l] | },
  108. rowspec={
  109. | Q % Header Row
  110. | Q | Q | Q | Q
  111. | Q | Q | Q | Q
  112. | Q | Q | Q | Q
  113. |
  114. },
  115. rows={5.5mm, m, rowsep=1.5pt} %
  116. }
  117. % Header
  118. \textbf{Yearly Goal} & \textbf{Monthly Goal} & \textbf{Weekly Activities} \\
  119. % Table Content
  120. \SetCell[r=4]{l} & \SetCell[r=2]{l} & \\
  121. & & \\
  122. & \SetCell[r=2]{l} & \\
  123. & & \\
  124. \SetCell[r=4]{l} & \SetCell[r=2]{l} & \\
  125. & & \\
  126. & \SetCell[r=2]{l} & \\
  127. & & \\
  128. \SetCell[r=4]{l} & \SetCell[r=2]{l} & \\
  129. & & \\
  130. & \SetCell[r=2]{l} & \\
  131. & & \\
  132. \end{tblr}
  133. \vspace{10mm}
  134. This week's to-do list:
  135. \vspace{3mm}
  136. \begin{tblr}{
  137. width=175mm,
  138. colspec={ | X[55,l] | X[1,l] | X[5,c,gray9] | [gray8]X[39,l] | },
  139. hline{1,2,4,6,8,10,12,14,16} = {1, 3-4}{0.5pt},
  140. hline{3} = {1}{0.5pt,black},
  141. hline{3} = {4}{0.5pt,gray7},
  142. hline{5,7,9,11,13,15} = {1}{0.5pt},
  143. rows={5.5mm, m, rowsep=2pt} % Row height(depends on contents?); position; row separation
  144. }
  145. %Header
  146. \textbf{Tasks this week} & & \textbf{Day} & \textbf{Chores} \\
  147. %Body
  148. \kcir & & \SetCell[r=2]{c} M & \kcir \\
  149. \kcir & & & \kcir \\
  150. \kcir & & \SetCell[r=2]{c} Tu & \kcir Clean bathroom sinks \\
  151. \kcir & & & \kcir Clean toilets \\
  152. \kcir & & \SetCell[r=2]{c} W & \kcir Clean bathtub \\
  153. \kcir & & & \kcir Pickup floor \\
  154. \kcir & & \SetCell[r=2]{c} Th & \kcir Vacuum \\
  155. \kcir & & & \kcir Kitchen floor \\
  156. \kcir & & \SetCell[r=2]{c} F & \kcir Clear off DR table \\
  157. \kcir & & & \kcir Clean office\\
  158. \kcir & & \SetCell[r=2]{c} Sa & \kcir Meal planning \\
  159. \kcir & & & \kcir Grocery planning \\
  160. \kcir & & \SetCell[r=2]{c} Su & \kcir Grocery shopping \\
  161. \kcir & & & \kcir Meal prep\\
  162. \end{tblr}
  163. % First Right Page
  164. \newpage
  165. \noindent \tabto{4mm} \textbf{Week \thect}
  166. \vspace{3mm}
  167. Month and Year \line(1,0){10cm}
  168. \vspace{5mm}
  169. \begin{tblr}{
  170. width=175mm,
  171. colspec={ X[50,l] X [50,l] },
  172. vline{1-3} = {2-Z}{0.5pt,solid},
  173. hline{2-Z} = {0.5pt,solid},
  174. rows={5.5mm, m, rowsep=1.5pt}
  175. }
  176. \SetCell[c=2]{l} \textbf{Pre-week Notes:} \\
  177. & \\
  178. & \\
  179. & \\
  180. & \\
  181. & \\
  182. & \\
  183. & \\
  184. \end{tblr}
  185. \vspace{5mm}
  186. \begin{tblr}{
  187. width=175mm,
  188. colspec={ X[100,l] },
  189. vline{1,2} = {2-5}{0.5pt,solid},
  190. vline{1,2} = {7-10}{0.5pt,solid},
  191. vline{1,2} = {12-Z}{0.5pt,solid},
  192. hline{2-Z} = {0.5pt,solid},
  193. rows={5.5mm, m, rowsep=1.5pt}
  194. }
  195. \textbf{Hoping For:} \\
  196. \\
  197. \\
  198. \\
  199. % Blank row follows
  200. \\
  201. \textbf{Grateful For:} \\
  202. \\
  203. \\
  204. \\
  205. % Blank row follows
  206. \\
  207. \textbf{Looking For:} \\
  208. \\
  209. \\
  210. \\
  211. \end{tblr}
  212. \vspace{5mm}
  213. \begin{tblr}{
  214. width=175mm,
  215. colspec={ X[50,l] X [50,l] },
  216. vline{1-3} = {2-Z}{0.5pt,solid},
  217. hline{2-Z} = {0.5pt,solid},
  218. rows={5.5mm, m, rowsep=1.5pt}
  219. }
  220. \SetCell[c=2]{l} \textbf{Post-week Notes:} \\
  221. & \\
  222. & \\
  223. & \\
  224. & \\
  225. & \\
  226. & \\
  227. & \\
  228. \end{tblr}
  229. \vspace{5mm}
  230. % Second Left Page
  231. \newpage
  232. \noindent \tabto{4mm} \textbf{Week \thect}
  233. \vspace{3mm}
  234. Month and Year \vspace{1mm}
  235. \begin{tblr}{
  236. width=175mm,
  237. colspec={ | X[6,c] | X[47,l] | X[47,l] | },
  238. hlines,
  239. rows={5mm, m, rowsep=1.5pt} % Row height(depends on contents?); position; row separation
  240. }
  241. % Header
  242. \textbf{Day} & \textbf{Tasks Today} & \textbf{Goal Steps} \\
  243. % Monday
  244. \SetCell[r=5]{c} \textbf{Mon} & & \kcir Read \\
  245. & & \kcir \kcir Exercise \\
  246. & & \kcir \kcir Create \\
  247. & & \\
  248. & & \\
  249. % Tuesday
  250. \SetCell[r=5]{c} \textbf{Tue} & & \kcir Read \\
  251. & & \kcir \kcir Exercise \\
  252. & & \kcir \kcir Create \\
  253. & & \\
  254. & & \\
  255. % Wednesday
  256. \SetCell[r=5]{c} \textbf{Wed} & & \kcir Read \\
  257. & & \kcir \kcir Exercise \\
  258. & & \kcir \kcir Create \\
  259. & & \\
  260. & & \\
  261. % Thursday
  262. \SetCell[r=5]{c} \textbf{Thu} & & \kcir Read \\
  263. & & \kcir \kcir Exercise \\
  264. & & \kcir \kcir Create \\
  265. & & \\
  266. & & \\
  267. % Friday
  268. \SetCell[r=5]{c} \textbf{Fri} & & \kcir Read \\
  269. & & \kcir \kcir Exercise \\
  270. & & \kcir \kcir Create \\
  271. & & \\
  272. & & \\
  273. % Saturday
  274. \SetCell[r=5]{c} \textbf{Sat} & & \kcir \kcir Read \\
  275. & & \kcir \kcir Exercise \\
  276. & & \kcir \kcir \kcir \kcir Create \\
  277. & & \\
  278. & & \\
  279. % Sunday
  280. \SetCell[r=5]{c} \textbf{Sun} & & \kcir \kcir Read \\
  281. & & \kcir \kcir Exercise \\
  282. & & \kcir \kcir \kcir \kcir Create \\
  283. & \kcir Finances for next week & \\
  284. & \kcir Goals/Activities for next week & \\
  285. \end{tblr}
  286. % Second Right Page
  287. \newpage
  288. \noindent \tabto{4mm} \textbf{Week \thect}
  289. \vspace{3mm}
  290. Month and Year \vspace{1mm}
  291. \begin{tblr}{
  292. width=175mm,
  293. colspec={ | X[6,c] | X[47,l] | X[47,l] | },
  294. hlines,
  295. rows={5mm, m, rowsep=1.5pt} % Row height(depends on contents?); position; row separation
  296. }
  297. % Header
  298. \textbf{Day} & \textbf{Finances} & \textbf{Health} \\
  299. % Monday
  300. \SetCell[r=5]{c} \textbf{Mon} & & \kcir \\
  301. & & \kcir \\
  302. & & \kcir \\
  303. & & \kcir \\
  304. & & \kcir \\
  305. % Tuesday
  306. \SetCell[r=5]{c} \textbf{Tue} & & \kcir \\
  307. & & \kcir \\
  308. & & \kcir \\
  309. & & \kcir \\
  310. & & \kcir \\
  311. % Wednesday
  312. \SetCell[r=5]{c} \textbf{Wed} & & \kcir \\
  313. & & \kcir \\
  314. & & \kcir \\
  315. & & \kcir \\
  316. & & \kcir \\
  317. % Thursday
  318. \SetCell[r=5]{c} \textbf{Thu} & & \kcir \\
  319. & & \kcir \\
  320. & & \kcir \\
  321. & & \kcir \\
  322. & & \kcir \\
  323. % Friday
  324. \SetCell[r=5]{c} \textbf{Fri} & & \kcir \\
  325. & & \kcir \\
  326. & & \kcir \\
  327. & & \kcir \\
  328. & & \kcir \\
  329. % Saturday
  330. \SetCell[r=5]{c} \textbf{Sat} & & \kcir \\
  331. & & \kcir \\
  332. & & \kcir \\
  333. & & \kcir \\
  334. & & \kcir \\
  335. % Sunday
  336. \SetCell[r=5]{c} \textbf{Sun} & & \kcir \\
  337. & & \kcir \\
  338. & & \kcir \\
  339. & & \kcir \\
  340. & & \kcir \\
  341. \end{tblr}
  342. } % End forloop
  343. \end{document}