メモ付き日記帳テンプレート(A5形式)をご存知ですか?

メモ付き日記帳テンプレート(A5形式)をご存知ですか?

メモ付きの日記のテンプレートをご存知ですか? これを実行するには、Pdflatex と Tikz が最適です。

時間枠とその下または上に、メモや優先順位を記入できる場所があると便利です。

閉じた状態で印刷された本が A5 形式になるように、2 ページに印刷できれば理想的です。

ここに良い例を挙げます: ここに画像の説明を入力してください

最小限の試みの動作例:

\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}

関連情報