我正在尝试为我的论文创建一个标题页,其中包含一个浮动框,其中包含标题、大学徽标、作者等。我已经按照自己的意愿设置了框环境,但我无法将其定位在页面底部!我在下面发布了一个 MWE。10cm 只是一个占位符值。我真正想要的是让框与我的标题页底部对齐。
\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[many]{tcolorbox}
\begin{document}
\begin{tcolorbox}[before skip=10cm,]
\end{tcolorbox}
\end{document}
答案1
该before skip
选项仅在以下情况下有用:前应该跳过。
一种“更好”的方法是插入明确的垂直空间并使用float=b
以使tcolorbox
框浮动到底部,然后\clearpage
\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[many]{tcolorbox}
\begin{document}
\begin{tcolorbox}[code={\vphantom{This floats away}\thispagestyle{empty}},float=b]
How not to be seen
\end{tcolorbox}
\clearpage% Ship out here
\end{document}