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.

31 lines
945 B

  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{171mm}
  18. !{\color{black}\vline}
  19. }
  20. Goals for this Week \TBstrut \\ \hline
  21. \\ [6mm] \arrayrulecolor[gray]{0.6}\hline
  22. \\ [6mm] \hline
  23. \\ [6mm] \hline
  24. \\ [6mm] \arrayrulecolor[gray]{0}\hline
  25. Grateful For: \TBstrut \\ \hline
  26. \end{tabular}
  27. \end{document}