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.

53 lines
1.5 KiB

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