将表格扩展到多页,以便我可以在同一个 pdf 中记录日常数据?

将表格扩展到多页,以便我可以在同一个 pdf 中记录日常数据?

我正在按照医生的要求写一份四列表格,记录我的日常活动。目前我已记录了 8 月 13、14、15、16 和 17 日的五个时间段,但我必须在 18 日的下一次会议后添加更多时间段。但问题是,这个表格只包含第一页。也就是说,pdf 将从顶部开始的所有内容放在一页中,然后其他所有内容都会在 pdf 上丢失,为什么不能有第 2 页、第 3 页等等……?

\documentclass{article}
\usepackage{blindtext}
\usepackage{multicol}
\usepackage{geometry}
\usepackage{changepage}
\setlength{\columnsep}{1cm}


\begin{document}


\begin{table}[h]

\begin{tabular}{ |p{3cm}|p{4cm}|p{4cm}|p{3cm}|  }
 \hline
 
 \textbf{What came to mind?} & \textbf{Situation behind it} &\textbf{Thoughts about it}&\textit{Feelings about it}\\
 \hline
 \multicolumn{4}{|c|}{13 August 2021 - Friday} \\
 \hline
 10:40 a.m.- I should keep virtual diary instead of physical one. It makes me feel more safe and I can write more stuff here and truths instead of the physical one.   & fgh  & I think it will improve the recordings and will result in a better data. &  Feel good about this decision.\\
 \hline
 9:00 p.m. -  Nothing else to record. &   xyz.  & I think there is nothing wrong & But I feel that this might result in something \\
 \hline
10:30 p.m. potato & tomato & okra &  zucchini \\

 \hline
\end{tabular}


\begin{tabular}{ |p{3cm}|p{4cm}|p{4cm}|p{3cm}|  }
 \hline
 \multicolumn{4}{|c|}{14 August 2021- Saturday} \\
 \hline
 
12:15 p.m. Felt anxiety more than ususal.    & May be lack of sleep last night   & It happens sometimes, no big deal. &   Where is Waldo?\\
 \hline
 x&   X  & AA   &123\\
 \hline
 x & L & B&  321\\
 \hline
 z    &Z & A&  000\\

 \hline
\end{tabular}


\begin{tabular}{ |p{3cm}|p{4cm}|p{4cm}|p{3cm}|  }
 \hline
 \multicolumn{4}{|c|}{15 August 2021 - Sunday} \\
 \hline
 
 GG   & AF    &AG&   007\\
 \hline
 x&   X  & AA   &123\\
 \hline
 x & L & B&  321\\
 \hline
 z    &Z & A&  000\\

 \hline
\end{tabular}


\begin{tabular}{ |p{3cm}|p{4cm}|p{4cm}|p{3cm}|  }
 \hline
 \multicolumn{4}{|c|}{16 August 2021 - Monday} \\
 \hline
 
 GG   & AF    &AG&   007\\
 \hline
 x&   X  & AA   &123\\
 \hline
 x & L & B&  321\\
 \hline
 z    &Z & A&  000\\

 
 \hline
\end{tabular}


\begin{tabular}{ |p{3cm}|p{4cm}|p{4cm}|p{3cm}|  }
 \hline
 \multicolumn{4}{|c|}{17 August 2021 - Tuesday} \\
 \hline

GG   & AF    &AG&   007\\
 \hline
 x&   X  & AA   &123\\
 \hline
 x & L & B&  321\\
 \hline
 z    &Z & A&  000\\

 \hline
\end{tabular}

\end{table}

\end{document}

我还被告知要保留单独的日记,为此我使用了“\documentclass{tufte-book}”,这没有任何问题。我该如何修复这个表格,让它可以容纳我想要的任意多页,还是我必须为每个日期创建一个单独的 tex 文件?

相关内容