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.

54 lines
1.5 KiB

  1. \documentclass[border=0]{standalone}
  2. \usepackage[
  3. ]{geometry}
  4. % Colored lines in table, see
  5. % https://ctan.math.illinois.edu/macros/latex/contrib/colortbl/colortbl.pdf
  6. \usepackage{colortbl}
  7. \usepackage{multirow}
  8. \begin{document}
  9. % Remove cell padding from tabular environment
  10. \renewcommand{\arraystretch}{0}
  11. \begin{tabular}
  12. % Cell and vertical rules definitions
  13. {
  14. !{\color{black}\vline}
  15. p{1cm}
  16. !{\color{black}\vline}
  17. p{4.5cm}
  18. !{\color{black}\vline}
  19. p{4.5cm}
  20. !{\color{black}\vline}
  21. p{4.5cm}
  22. !{\color{black}\vline}
  23. }
  24. \multicolumn{4}{l}{Month and Year:} \\
  25. \hline
  26. ~~\textbf{Day} & \textbf{Tasks/Appointments} & \textbf{Financial} & \textbf{Communications} \\ \hline
  27. \centering{Mo} & & & \\ [4mm] \arrayrulecolor{red}\hline
  28. & & & \\ [4mm] \arrayrulecolor{red}\hline
  29. & & & \\ [4mm] \arrayrulecolor{red}\hline
  30. & & & \\ [4mm] \arrayrulecolor{red}\hline
  31. & & & \\ [4mm] \arrayrulecolor{black}\hline
  32. \begin{center}{\Large Tu}\end{center} & & & \\ [2.15cm] \hline
  33. \begin{center}{\Large We}\end{center} & & & \\ [2.15cm] \hline
  34. \begin{center}{\Large Th}\end{center} & & & \\ [2.15cm] \hline
  35. \begin{center}{\Large Fr}\end{center} & & & \\ [2.15cm] \hline
  36. \begin{center}{\Large Sa}\end{center} & & & \\ [2.15cm] \hline
  37. \begin{center}{\Large Su}\end{center} & & & \\ [2.15cm]
  38. \hline
  39. \end{tabular}
  40. \begin{tabular}{ |p{7.67cm}|p{7.67cm}| }
  41. Goals for this Year & Goals for this Month \\ \hline
  42. & \\ [4mm] \hline
  43. & \\ [4mm] \hline
  44. & \\ [4mm] \hline
  45. & \\ [4mm] \hline
  46. \multicolumn{2}{l}{Hoping For:} \\
  47. \end{tabular}
  48. \end{document}