具体页面编号

具体页面编号

我想将特定页面(包含图片)放在特殊页码处。有人知道如何做吗?

例如:第 1 - 20 页:普通文本
第 21 页:特殊页面宽度图片
第 21 页 - 结束:文本结束

感谢您的帮助!诚挚问候,

答案1

根据第 10 页的答案,制作了超宽图强制将表格或图片放在指定页面上。不过,这里也使用了[p]图中使用的选项。\everypar

通过 创造额外的宽度\makebox[\textwidth]{<figure content>}

\documentclass{article}
\usepackage{ifthen,lipsum}
\usepackage{boxhandler}
\holdFigures
\bxfigure{Here is my caption}
  {\makebox[\textwidth]{\fbox{\rule{7in}{5in}}}}
\newcommand\checkpage{\ifthenelse{\equal{\csname %
  figpage\roman{figure}\endcsname}{\the\numexpr\thepage+1\relax}}%
  {\nextFigure[p]}{}}
\def\figpage{10}
\begin{document}
\everypar{\checkpage}
\lipsum[1-70]
\end{document}

在此处输入图片描述

答案2

谢谢回答!看起来不错!但我尝试添加一个包含图形,但它不再起作用了……

\bxfigure{Here is my caption}
  {\includegraphics[scale=0.4]{pic.png}}

\newcommand\checkpage{\ifthenelse{\equal{\csname %
  figpage\roman{figure}\endcsname}{\the\numexpr\thepage+1\relax}}%
  {\nextFigure[p]}{}}
\def\figpage{10}

相关内容