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.

32 lines
945 B

\documentclass[border=0,crop]{standalone}
\usepackage{kpfonts}
% Colored lines in table, see
% https://ctan.math.illinois.edu/macros/latex/contrib/colortbl/colortbl.pdf
\usepackage{colortbl}
\begin{document}
% Remove cell padding from tabular environment
\renewcommand{\arraystretch}{0}
% Add padding into the header row
% See https://tex.stackexchange.com/questions/126539/padding-at-the-top-of-a-table-cell-in-latex
\newcommand\Tstrut{\rule{0pt}{2.6ex}} % "top" strut
\newcommand\Bstrut{\rule[-0.9ex]{0pt}{0pt}} % "bottom" strut
\newcommand{\TBstrut}{\Tstrut\Bstrut} % top&bottom struts
\begin{tabular}{
% Cell and vertical rules definitions
!{\color{black}\vline}
p{171mm}
!{\color{black}\vline}
}
Goals for this Week \TBstrut \\ \hline
\\ [6mm] \arrayrulecolor[gray]{0.6}\hline
\\ [6mm] \hline
\\ [6mm] \hline
\\ [6mm] \arrayrulecolor[gray]{0}\hline
Grateful For: \TBstrut \\ \hline
\end{tabular}
\end{document}