文本和表格始终位于页面底部

文本和表格始终位于页面底部

我需要将一些内容(文本/表格)始终对齐到页面底部。中间有一个tableofcontents- 这显然是相对长度。这就是为什么我不能使用绝对距离\vspace

\documentclass[15pt, a4paper]{scrartcl}

\begin{document}
\tableofcontents

\begin{center}
\begin{tabular}{ |c|c|c|c|c| } 
 \hline
 Beschluss & Ja & Nein & Enthaltung & Ergebnis \\ \hline
  & X & X & X & X-X-X   \\ 
 \hline
\end{tabular}
\end{center}

\begin{flushleft}
\begin{tabbing}
\footnotesize Beginn: \hspace{1.5cm}\= \footnotesize 18:00 \\
\footnotesize Ende: \> \footnotesize 20:00 \\
\footnotesize Ort: \> \footnotesize Raum \\
\end{tabbing}

\end{flushleft}

\newpage

\section{Topic A}
\section{Topic B}

\end{document}

在此处输入图片描述

答案1

答案显然是

\vspace{\fill}

相关内容