答案1
基于以下建议这个答案。
\documentclass{article}
\usepackage{tikzpagenodes}
\usetikzlibrary{positioning}
\usepackage{lipsum}
%from https://tex.stackexchange.com/a/193605/121799
\newcommand{\FancyPage}[4][]{
\begin{tikzpicture}[overlay,remember picture]
\node[anchor=north west,text
width={\textwidth-2*\pgfkeysvalueof{/pgf/inner xsep}}] at
(current page text area.north west) (topnode-\thepage)
{
\vbox to 0.486\textheight{#2\vfill}
};
\node[below=0pt of topnode-\thepage,text width={\textwidth-2*\pgfkeysvalueof{/pgf/inner xsep}},
yshift=\the\pgflinewidth](bottomnode-\thepage){
\vbox to 0.486\textheight{#3\vfill}
};
\node[anchor=south east,text
width=0.3\textwidth,xshift=\the\pgflinewidth,
yshift=3\pgflinewidth] (rightnode-\thepage) at
(current page text area.south east) {
\vbox to 0.3\textheight{#4\vfill}
};
\draw (current page text area.south west) rectangle
(current page text area.north east);
\draw (current page text area.west) -- (current page text area.east);
\draw (current page text area.south -| rightnode-\thepage.west)
|- (current page text area.east |- rightnode-\thepage.north);
\end{tikzpicture}
}
\begin{document}
\FancyPage{\begin{center}
Questions
\end{center}
\begin{enumerate}
\item \dots
\item \dots
\end{enumerate}
}{
\begin{flushleft}
Working area
\end{flushleft}
\dots
}{
Answers:
\begin{enumerate}
\item \dots
\item \dots
\end{enumerate}}
\clearpage
\FancyPage{\begin{center}
Questions
\end{center}
\begin{enumerate}
\item Another question
\item \dots
\end{enumerate}
}{
\begin{flushleft}
Working area
\end{flushleft}
\dots more stuff
}{
Answers:
\begin{enumerate}
\item \dots
\item \dots
\end{enumerate}}
\end{document}
该答案附带一个宏\FancyPage{<top content>}{<bottom content>}{<right content>}
,它可以创建类似于您的屏幕截图的页面。