如何隐藏全页浮动的页码?

如何隐藏全页浮动的页码?

我创建了一个 TikZ 图形并将其编译为 pdf。在我的 TeX 主文档中,我使用以下方法将其包含进去:

\documentclass[12pt,a4paper]{article}
% ...
\begin{figure}
    \centering
    \includegraphics{tikzfigure.pdf}
    \caption{My caption.}
    \label{fig:myfig}
\end{figure}

该图形足够大,可以覆盖整个页面。如何隐藏浮动图形所在页面上的页码?

有没有更好的解决方案来包含整页 TikZ 图形?

答案1

您可以使用该floatpag包来更改浮动页面的页面样式:

\documentclass[12pt,a4paper]{article}

\usepackage{graphicx}
\usepackage{lipsum}

\usepackage{floatpag}
\floatpagestyle{empty} 

\begin{document}

\lipsum

\begin{figure}[p]
    \centering
    \includegraphics[height=.95\textheight,width=\textwidth]{example-image-duck}
    \caption{My caption.}
    \label{fig:myfig}
\end{figure}

\lipsum

\end{document}

相关内容