section
ジャーナル論文 ( s ではなくchapter
s!)のコンパイルを高速化するためにコードを複数のセクション ファイルに整理しようとしたときに、この MWE を思いつきました。
\documentclass{article}
\usepackage{filecontents}
%\usepackage{newclude}
\begin{filecontents}{\jobname-ext.tex}
\section{A section}
\label{sec:A}
References to this section \ref{sec:A} do not work.
\end{filecontents}
\begin{document}
\begingroup
\let\clearpage\relax
\include{\jobname-ext}
\endgroup
\section{Another section}
No page break after section \ref{sec:A}, please!
\end{document}
驚いたことに(最初は)、結果には正しい参照が欠けている。include tコマンドを使用して複数のファイルをインクルードする場合の相互参照の問題そして付属のファイルと緩和されたクリアページを備えた参照ラベル、 特に、この答え。
さて、上記の質問とLaTeX で「\let\clearpage\relax」で無効にした後、「\clearpage」を再度有効にする、1つの回答やコメント(または質問)でも、newclude
パッケージについて言及されていません。パッケージは、\include*
を発行しないコマンドを提供しています\clearpage
。更新されていないので、これは使用しても問題ないパッケージなのだろうかと思います。1999年から。
再定義せずに動作する別のコードを次に示します\clearpage
。
\documentclass{article}
\usepackage{filecontents}
\usepackage{newclude}
\begin{filecontents}{\jobname-ext.tex}
\section{A section}
\label{sec:A}
References to this section \ref{sec:A} DO work.
\end{filecontents}
\begin{document}
\include*{\jobname-ext}
\section{Another section}
No page break after section \ref{sec:A}, please!
\end{document}
そして、そうではないものがさらに 2 つあります。
\documentclass{article}
\makeatletter
\def\include#1{\relax
\ifnum\@auxout=\@partaux
\@latex@error{\string\include\space cannot be nested}\@eha
\else \@include#1 \fi}
\def\@include#1 {%
%\clearpage
\if@filesw
\immediate\write\@mainaux{\string\@input{#1.aux}}%
\fi
\@tempswatrue
\if@partsw
\@tempswafalse
\edef\reserved@b{#1}%
\@for\reserved@a:=\@partlist\do
{\ifx\reserved@a\reserved@b\@tempswatrue\fi}%
\fi
\if@tempswa
\let\@auxout\@partaux
\if@filesw
\immediate\openout\@partaux #1.aux
\immediate\write\@partaux{\relax}%
\fi
\@input@{#1.tex}%
%\clearpage
\@writeckpt{#1}%
\if@filesw
\immediate\closeout\@partaux
\fi
\else
\deadcycles\z@
\@nameuse{cp@#1}%
\fi
\let\@auxout\@mainaux}
\makeatother
\usepackage{filecontents}
\begin{filecontents}{\jobname-ext.tex}
\section{A section}
\label{sec:A}
References to this section \ref{sec:A} do not work.
\end{filecontents}
\begin{document}
\include{\jobname-ext}
\section{Another section}
No page break after section \ref{sec:A}, please!
\end{document}
そして
\documentclass{article}
\usepackage{xpatch}
\makeatletter
\patchcmd{\@include}{\clearpage}{}{}{error}
\patchcmd{\@include}{\clearpage}{}{}{error}
\makeatother
\usepackage{filecontents}
\begin{filecontents}{\jobname-ext.tex}
\section{A section}
\label{sec:A}
References to this section \ref{sec:A} do not work.
\end{filecontents}
\begin{document}
\include{\jobname-ext}
\section{Another section}
No page break after section \ref{sec:A}, please!
\end{document}