0pt=0mm 0pt=0mm 图形前后

0pt=0mm 0pt=0mm 图形前后

当我将一个图形放入 Latex 文档时,图形前后都显示“0pt=0mm 0pt=0mm”。下面是我使用的环境。有趣的是,当我将其放入非常基本的文档时,一切都正常,但是当我将代码粘贴到包含许多包等的非常高级的文档时,就会出现此问题。可能是什么原因?

% Long figure
\newenvironment{longfigure}[2][]{%
  % #1 (optional) is arbitrary code to be executed before the longtable
  % #2 is the column specification
  \renewcommand{\LTcaptype}{figure}%
  \expandafter\def\csname @captype\endcsname{figure}%
  \setcounter{subfigure}{0}%
  \setlength{\LTleft}{0pt}%
  \setlength{\LTright}{0pt}%
  \renewcommand\thesubfigure{\alphalph{\value{subfigure}}}
  
  #1%
  \begin{longtable}{#2}
}{\end{longtable}} 

相关内容