我想在页面底部画一个带有一些文本的框,并删除该页码。
到目前为止,我可以使用表格环境绘制框并用文本填充它。我正在使用该p
选项使其拥有自己的页面。
但我无法让它出现在底部,我尝试了“b”选项和命令\null \vfill
,但似乎没有任何效果......
\thispagestyle{empty}
另外,即使我输入D,页码也不会消失:
这是文件
\documentclass[12pt, oneside, draft]{report}
\usepackage[brazil]{babel}
\usepackage[latin1]{inputenc}
为了提供更多细节,我在一个单独的文件中有一个自定义页面,带有框的页面应该遵循该页面,但如果我只是尝试在它之后添加框的代码,它就会与其他页面混合。
我尝试了\newpage
命令,但问题仍然存在,然后我尝试为盒子代码创建一个单独的文件,但没有任何变化。我唯一得到一些帮助的是使用该p
选项,但使用此选项我无法控制盒子应该放在哪里。
我希望下面的代码能够正确表示错误......
\input{./file.tex}
\begin{table}[p]
\thispagestyle{empty}
\centering
\begin{tabular}{|l|}
\hline
Random text\\ in\\ the box
\hline
\end{tabular}
\end{table}
\section*{Section}
A new section I start, that's the part that mixed with the table if I remove the 'p' option.
还有 file.tex,仅用于示例
Some formatted text all over the page.
\newpage
%Still worked even without this command.
有人可以帮我一下吗?:)
答案1
这似乎有效:
上图是第 3 页的底部。第 2 页和第 4 页有编号。
笔记:
- 这
showframe
仅用于显示页边距。 - 这
lipsum
仅用于提供虚拟文本。您的文档中不需要它。
代码:
\documentclass[ondesided]{report}
\usepackage{lipsum}
\usepackage{showframe}
\begin{document}
\lipsum[1-15]
{% Group this so that these changes are kept local
\thispagestyle{empty}
\pagestyle{empty}
\vfill
\hfill
\begin{tabular}[b]{|l|}
\hline
Random text\\
in\\
the box\\
\hline
\end{tabular}%
\hfill%
}
\section*{Section}
A new section I start, that's the part that mixed with the table if I remove the 'p' option.
\lipsum[1-12]
\end{document}