planner-in-latex/lefttable-bottom-sa.tex

34 lines
1.0 KiB
TeX
Raw Normal View History

\documentclass[border=0,crop]{standalone}
2021-11-27 18:26:05 +00:00
\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
2021-11-27 18:26:05 +00:00
\begin{tabular}{
% Cell and vertical rules definitions
!{\color{black}\vline}
p{83.4mm}
!{\color{black}\vline}
p{83.3mm}
!{\color{black}\vline}
}
Goals for this Year & Goals for this Month \TBstrut \\ \hline
2022-01-05 23:19:38 +00:00
& \\ [6mm] \arrayrulecolor[gray]{0.6}\hline
& \\ [6mm] \hline
& \\ [6mm] \hline
& \\ [6mm] \arrayrulecolor[gray]{0}\hline
\multicolumn{2}{|l|}{Hoping For:} \TBstrut \\ \hline
\end{tabular}
\end{document}