如何從standalone.dtx中提取standalone.tex?

如何從standalone.dtx中提取standalone.tex?

standalone的手冊解釋了使用該包的三種方法。

  1. standalone.sty: \usepackage{standalone}: 與非獨立類別一起使用,設定\standalonefalse;
  2. standalone.cls: \documentclass{standalone}: 獨立使用,設定\standalonetrue
  3. standalone.tex: \input{standalone}: 與另一個類別獨立使用,設定\standalonetrue.

但是,TeX Live 不包括standalone.tex.我認為這是一個打包問題,因此複製了來源目錄,其中包含standalone.dtxstandalone.ins,並重新提取了檔案。

cp -pr source/latex/standalone ~/
pushd ~/standalone
pdflatex standalone.ins

這會產生,standalone.tex以及standalone.cls, standalone.cfgstandalone.sty然而,與其他文件不同的是,standalone.tex它是空的。

total 272K
drwxr-xr-x   2 <username> <username> 4.0K Gor   3 16:26 ./
drwx------ 103 <username> <username>  12K Gor   3 16:32 ../
-rw-r--r--   1 <username> <username>  902 Gor   3 16:34 standalone.cfg
-rw-r--r--   1 <username> <username>  27K Gor   3 16:34 standalone.cls
-rw-r--r--   1 <username> <username> 178K Tach 25  2016 standalone.dtx
-rw-r--r--   1 <username> <username>  442 Tach 25  2016 standalone.ins
-rw-r--r--   1 <username> <username> 2.7K Gor   3 16:34 standalone.log
-rw-r--r--   1 <username> <username>  34K Gor   3 16:34 standalone.sty
-rw-r--r--   1 <username> <username>    0 Gor   3 16:34 standalone.tex

據推測,這就是 TeX Live 根本不包含該文件的原因。

現在,docstrip對我而言,這是相當陌生的領域。然而,它.dtx看起來確實包含以下程式碼standalone.tex

% \iffalse
%<*standalone.tex>
% \fi
%
%\iffalse
%<*tex>
% \fi
% \subsection{Simple TeX File}
%
%    \begin{macrocode}
%%\ProvidesFile{standalone.tex}[2010/02/28 v0.4 Provides if-switch to show if file is compiled standalone]%
%    \end{macrocode}
%
% \begin{macro}{\ifstandalone}
% Provides \cs{ifstandalone} switch which is |\iftrue| if the normal |\documentclass|
% was not yet executed (and subsequently redefined to be |\@twoclasseserror|).
%    \begin{macrocode}
\expandafter\ifx\csname ifstandalone\endcsname\relax
\expandafter\newif\csname ifstandalone\endcsname
\expandafter\ifx\csname @twoclasseserror\endcsname\documentclass
\else
  \standalonetrue
\fi
\fi
%    \end{macrocode}
% \end{macro}
%
% \iffalse
%</tex>
% \fi
%
% \iffalse
%</standalone.tex>
% \fi
%

我究竟應該如何產生該standalone.tex文件,以便我可以編譯以下內容進行排版abc(以不必要的迂迴方式)? (請參閱手冊第 18 頁。)

\input{standalone}
\documentclass{article}    
\begin{document}
\ifstandalone
  abc
\fi
\end{document}

答案1

這是一個標準.ins文件,並且具有

  \file{standalone.tex}{\from{standalone.dtx}{standalone.tex}}%

我懷疑這是故意的

  \file{standalone.tex}{\from{standalone.dtx}{standalone.tex,tex}}%

隨著這個改變

 tex standalone.ins

產生所有文件,包括standalone.tex看起來像

%%\ProvidesFile{standalone.tex}[2010/02/28 v0.4 Provides if-switch to show if file is compiled standalone]%
\expandafter\ifx\csname ifstandalone\endcsname\relax
\expandafter\newif\csname ifstandalone\endcsname
\expandafter\ifx\csname @twoclasseserror\endcsname\documentclass
\else
  \standalonetrue
\fi
\fi

相關內容