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.

48 lines
1.4 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. % Columns spanning multiple rows
  8. \usepackage{multirow}
  9. \begin{document}
  10. % Remove cell padding from tabular environment
  11. \renewcommand{\arraystretch}{0}
  12. \begin{tabular}
  13. % Column and vertical rules definitions
  14. {
  15. @{}
  16. !{\color{black}\vline}
  17. p{1cm}
  18. !{\color{black}\vline}
  19. p{4.5cm}
  20. !{\color{black}\vline}
  21. p{4.5cm}
  22. !{\color{black}\vline}
  23. p{4.5cm}
  24. !{\color{black}\vline}
  25. }
  26. \multicolumn{4}{l}{Month and Year:} \\
  27. \hline
  28. ~~\textbf{Day} & \textbf{Tasks/Appointments} & \textbf{Financial} & \textbf{Communications} \\ \hline
  29. \multirow{5}{1cm}{Mo} & & & \\ [4mm] \arrayrulecolor{red}\hline
  30. & & & \\ [4mm] \arrayrulecolor{red}\hline
  31. & & & \\ [4mm] \arrayrulecolor{red}\hline
  32. & & & \\ [4mm] \arrayrulecolor{red}\hline
  33. & & & \\ [4mm] \arrayrulecolor{black}\hline
  34. \begin{center}{\Large Tu}\end{center} & & & \\ [2.15cm] \hline
  35. \begin{center}{\Large We}\end{center} & & & \\ [2.15cm] \hline
  36. \begin{center}{\Large Th}\end{center} & & & \\ [2.15cm] \hline
  37. \begin{center}{\Large Fr}\end{center} & & & \\ [2.15cm] \hline
  38. \begin{center}{\Large Sa}\end{center} & & & \\ [2.15cm] \hline
  39. \begin{center}{\Large Su}\end{center} & & & \\ [2.15cm]
  40. \hline
  41. \end{tabular}
  42. \end{document}