你知道带注释的日记模板吗?Pdflatex 和 Tikz 最适合做这个。
如果有时间段+下方/上方某个地方用于记录一些笔记和优先事项就太好了。
如果可以将其打印在两页上,以便打印的书在关闭时具有 A5 格式,那就太理想了。
最小尝试工作示例:
\documentclass[tikz]{standalone}
\usepackage{tgheros,tikz,array}
\usetikzlibrary{calendar}
\begin{document}
\sffamily
\newcommand\daytext[2]{%
\begin{tabular}{|>{\mdseries\tiny}r|p{1.5cm}|}
\multicolumn{2}{c}{#1} \\
\multicolumn{2}{c}{#2\color{black}} \\[1ex]
\hline
6:00 & \\\hline
7:00 & \\\hline
8:00 & \\\hline\hline
9:00 & \\\hline
10:00 & \\\hline
11:00 & \\\hline
12:00 & \\\hline\hline
1:00 & \\\hline
2:00 & \\\hline\hline
3:00 & \\\hline
4:00 & \\\hline
5:00 & \\\hline
6:00 & \\\hline\hline
7:00 & \\\hline
8:00 & \\\hline
9:00 & \\\hline\hline
10:00 & \\\hline
11:00 & \\\hline
\end{tabular}
}
\begin{tikzpicture}
\calendar (cal)
[dates=2016-04-17 to 2016-04-23,day list right,day xshift=3cm,
day text={\daytext{\%wt}{\Huge\%d-}}]%\ooalign{\Huge\%d-\cr\hidewidth\raisebox{1cm}{\%wt}\hidewidth}}]
if (weekend) [font=\bfseries]
if (Sunday) [red];
\node[above right,font=\bfseries\LARGE] at (cal-2016-04-17.north west)
{April 17--23, 2016};
\end{tikzpicture}
\end{document}