将文本放在页面底部

将文本放在页面底部

看看下面的 MWE 示例。我希望文本出现在页面底部而不是顶部。我尝试了 \vfill 选项,但这似乎不起作用。有什么想法吗?

\documentclass{report}
\begin{document}
\vfill
© Copyright by KU Leuven\\

Without written permission of the promotors and the authors it is forbidden 
to reproduce or adapt in any form or by any means any part of this  publication.   
Requests for obtaining the right to reproduce or utilize parts of this publication 
should be addressed to KU Leuven, Faculteit Wetenschappen, Geel Huis, 
Kasteelpark Arenberg 11 bus 2100, 3001 Leuven (Heverlee), Telephone +32 16 32 14 01.\\
\end{document}

答案1

以下对我有用:
(注:我只是转发上面的评论作为答案)

Some random text in the page
\vspace*{\fill}
Text that will now be at the bottom of the page

答案2

\mbox{}之前放置\vfill就可以了!

\documentclass{report}
\begin{document}
\mbox{}
\vfill
© Copyright by KU Leuven\\

Without written permission of the promotors and the authors it is forbidden 
to reproduce or adapt in any form or by any means any part of this  publication.   
Requests for obtaining the right to reproduce or utilize parts of this publication 
should be addressed to KU Leuven, Faculteit Wetenschappen, Geel Huis, 
Kasteelpark Arenberg 11 bus 2100, 3001 Leuven (Heverlee), Telephone +32 16 32 14 01.\\
\end{document}

相关内容