我使用 mdframed 作为页脚,并希望将页码作为页脚,但在 mdframed 中。如果我使用 mdframed,它会覆盖页码。如何在 mdframed 中的页脚中写入页码?
编辑:评论的代码
\pagestyle{fancy}
\fancyhf{} % sets both header and footer to nothing \renewcommand{\headrulewidth}{0pt}
\fancyfoot{}
\fancyfoot[C]{\begin{mdframed}[roundcorner=4pt,leftmargin=1, rightmargin=1, linecolor=blue,outerlinewidth=.5, innerleftmargin=5,innertopmargin=5,innerbottommargin=5,everyline = true, splittopskip=.6cm, splitbottomskip=.3cm]
\parbox[t]{0.333\textwidth}{\raggedright{ID} \parbox[t]{0.333\textwidth}{\centering{footertext} \parbox[t]{0.333\textwidth}{\raggedleft{Date} \end{mdframed}}
\documentclass{article}
\usepackage[framemethod=tikz]{mdframed}
\usepackage{fancyhdr} \usepackage{lipsum}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyfoot[C]{%
\begin{mdframed}[linecolor=blue!60,roundcorner=3pt]
\parbox[t]{0.333\textwidth}{\raggedright XXXXXXXX}%
\parbox[t]{0.333\textwidth}{\centering Page}%
\parbox[t]{0.333\textwidth}{\raggedleft 31 July 2012}
\end{mdframed}%
}
\begin{document}
\lipsum[1-2]
\end{document}
答案1
你只需添加\thepage
\parbox[t]{0.333\textwidth}{\centering Page \thepage}%
请始终将完整的文件提交给在问题中(因为我这次编辑了你的问题)这使得回答问题变得容易得多。