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.

35 lines
806 B

  1. \documentclass[border=0]{standalone}
  2. \usepackage{kpfonts}
  3. \usepackage[
  4. tmargin=1in,
  5. bmargin=0in,
  6. paperwidth=6.6in,
  7. paperheight=9.6in,
  8. bmargin=0in
  9. ]{geometry}
  10. % Colored lines in table, see
  11. % https://ctan.math.illinois.edu/macros/latex/contrib/colortbl/colortbl.pdf
  12. \usepackage{colortbl}
  13. \begin{document}
  14. % Remove cell padding from tabular environment
  15. \renewcommand{\arraystretch}{1.1}
  16. \begin{tabular}{
  17. % Cell and vertical rules definitions
  18. !{\color{black}\vline}
  19. p{7.67cm}
  20. !{\color{black}\vline}
  21. p{7.67cm}
  22. !{\color{black}\vline}
  23. }
  24. Goals for this Year & Goals for this Month \\ \hline
  25. & \\ [1.5mm] \arrayrulecolor[gray]{0.85}\hline
  26. & \\ [1.5mm] \hline
  27. & \\ [1.5mm] \hline
  28. & \\ [1.5mm] \arrayrulecolor[gray]{0}\hline
  29. \multicolumn{2}{l}{Hoping For:} \\
  30. \end{tabular}
  31. \end{document}