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.

33 lines
1.0 KiB

  1. \documentclass[border=0,crop]{standalone}
  2. \usepackage{kpfonts}
  3. % Colored lines in table, see
  4. % https://ctan.math.illinois.edu/macros/latex/contrib/colortbl/colortbl.pdf
  5. \usepackage{colortbl}
  6. \begin{document}
  7. % Remove cell padding from tabular environment
  8. \renewcommand{\arraystretch}{0}
  9. % Add padding into the header row
  10. % See https://tex.stackexchange.com/questions/126539/padding-at-the-top-of-a-table-cell-in-latex
  11. \newcommand\Tstrut{\rule{0pt}{2.6ex}} % "top" strut
  12. \newcommand\Bstrut{\rule[-0.9ex]{0pt}{0pt}} % "bottom" strut
  13. \newcommand{\TBstrut}{\Tstrut\Bstrut} % top&bottom struts
  14. \begin{tabular}{
  15. % Cell and vertical rules definitions
  16. !{\color{black}\vline}
  17. p{83.4mm}
  18. !{\color{black}\vline}
  19. p{83.3mm}
  20. !{\color{black}\vline}
  21. }
  22. Goals for this Year & Goals for this Month \TBstrut \\ \hline
  23. & \\ [6mm] \arrayrulecolor[gray]{0.6}\hline
  24. & \\ [6mm] \hline
  25. & \\ [6mm] \hline
  26. & \\ [6mm] \arrayrulecolor[gray]{0}\hline
  27. \multicolumn{2}{|l|}{Hoping For:} \TBstrut \\ \hline
  28. \end{tabular}
  29. \end{document}