您知道有筆記範本的日記嗎? Pdlatex 和 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}