standalone.dtx から standalone.tex を抽出するにはどうすればよいですか?

standalone.dtx から standalone.tex を抽出するにはどうすればよいですか?

standaloneのマニュアルでは、パッケージを使用する 3 つの方法について説明しています。

  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

関連情報