메모가 포함된 다이어리 템플릿(A5 형식)을 아시나요?

메모가 포함된 다이어리 템플릿(A5 형식)을 아시나요?

메모 템플릿이 포함된 일기장을 알고 계시나요? 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}

관련 정보