
動作するマクロができたので、いくつかのパラメータをオプションにして改善しようとしました。残念ながら、マクロは動作しなくなりました。代わりに、理解できないエラーが発生します。例:
LaTeX Warning: Label `####5' multiply defined.
LaTeX Warning: Label `####5' multiply defined.
! LaTeX Error: \fLab undefined.
! Illegal parameter number in definition of \fLab.
! Illegal parameter number in definition of \reserved@a.
! LaTeX Error: \fCap undefined.
...などなど。最後に試したコードは次のようになります。
%% Graphics figure with caption and label
% [1:placement,] 2:relative width, 3:file name[, 4:caption[, 5:label]]
\newcommand{\figCapLab}[5][htbp]{%
\ifthenelse{\equal{#5}{}}%
{\renewcommand{\fLab}{}}%
{\renewcommand{\fLab}{\label{##5}}}%
\ifthenelse{\equal{#4}{}}%
{\renewcommand{\fCap}{\fLab}}%
{\renewcommand{\fCap}{\caption{\fLab{\small{}##4}}}}%
\begin{figure}[#1]%
\centering%
\begin{minipage}[t]{#2\textwidth}%
\includegraphics[width=\textwidth]{#3}% is width of surrounding minipage
\fCap%
\end{minipage}%
\end{figure}
}
%% Graphics figure with caption
% [1:placement,] 2:relative width, 3:file name, 4:caption
\newcommand{\figCap}[4]{%
\ifthenelse{\equal{#1}{}}%
{\figCapLab{#2}{#3}{#4}{}}%
{\figCapLab[#1]{#2}{#3}{#4}{}}%
}
%% Graphics figure with label
% [1:placement,] 2:relative width, 3:file name, 4:label
\newcommand{\figLab}[4]{%
\ifthenelse{\equal{#1}{}}%
{\figCapLab{#2}{#3}{}{#4}}%
{\figCapLab[#1]{#2}{#3}{}{#4}}%
}
何が悪かったのか説明できる人はいますか?
完全な例が好きな人は、このプロローグを追加してください。
\documentclass[a4paper,twoside]{report}
\usepackage{german}
\usepackage[latin1]{inputenc}
\usepackage{a4}
\usepackage{amsmath}
\usepackage{url}
\usepackage{graphicx}
\usepackage{ifthen}
...そしてこのエピローグ:
\begin{document}
See \ref{foo}.
\figCapLab{0.9}{whatever.pdf}{Caption}{foo}
\end{document}
答え1
誤った動作を示すコンパイル可能な例を自分で作成するというあなたの漠然とした指示に従うと
\documentclass[a4paper,twoside]{report}
\usepackage{german}
\usepackage[latin1]{inputenc}
\usepackage{a4}
\usepackage{amsmath}
\usepackage{url}
\usepackage{graphicx}
\usepackage{ifthen}
%% Graphics figure with caption and label
% [1:placement,] 2:relative width, 3:file name[, 4:caption[, 5:label]]
\newcommand{\figCapLab}[5][htbp]{%
\ifthenelse{\equal{#5}{}}%
{\renewcommand{\fLab}{}}%
{\renewcommand{\fLab}{\label{##5}}}%
\ifthenelse{\equal{#4}{}}%
{\renewcommand{\fCap}{\fLab}}%
{\renewcommand{\fCap}{\caption{\fLab{\small{}##4}}}}%
\begin{figure}[#1]%
\centering%
\begin{minipage}[t]{#2\textwidth}%
\includegraphics[width=\textwidth]{#3}% is width of surrounding minipage
\fCap%
\end{minipage}%
\end{figure}
}
%% Graphics figure with caption
% [1:placement,] 2:relative width, 3:file name, 4:caption
\newcommand{\figCap}[4]{%
\ifthenelse{\equal{#1}{}}%
{\figCapLab{#2}{#3}{#4}{}}%
{\figCapLab[#1]{#2}{#3}{#4}{}}%
}
%% Graphics figure with label
% [1:placement,] 2:relative width, 3:file name, 4:label
\newcommand{\figLab}[4]{%
\ifthenelse{\equal{#1}{}}%
{\figCapLab{#2}{#3}{}{#4}}%
{\figCapLab[#1]{#2}{#3}{}{#4}}%
}
\begin{document}
See \ref{foo}.
\figCapLab{0.9}{whatever.pdf}{Caption}{foo}
\end{document}
、あなたが説明したエラーは発生しませんが、次のエラーが発生します:
LaTeX Warning: Reference `foo' on page 1 undefined on input line 43.
! LaTeX Error: \fLab undefined.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.44 \figCapLab{0.9}{whatever.pdf}{Caption}{foo}
?
! Illegal parameter number in definition of \fLab.
<to be read again>
5
l.44 \figCapLab{0.9}{whatever.pdf}{Caption}{foo}
?
! LaTeX Error: \fCap undefined.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.44 \figCapLab{0.9}{whatever.pdf}{Caption}{foo}
?
! Illegal parameter number in definition of \fCap.
<to be read again>
4
l.44 \figCapLab{0.9}{whatever.pdf}{Caption}{foo}
?
LaTeX Warning: File `whatever.pdf' not found on input line 44.
! Package pdftex.def Error: File `whatever.pdf' not found: using draft setting.
See the pdftex.def package documentation for explanation.
Type H <return> for immediate help.
...
l.44 \figCapLab{0.9}{whatever.pdf}{Caption}{foo}
?
! Illegal parameter number in definition of \reserved@a.
<to be read again>
4
l.44 \figCapLab{0.9}{whatever.pdf}{Caption}{foo}
?
! Illegal parameter number in definition of \reserved@a.
<to be read again>
5
l.44 \figCapLab{0.9}{whatever.pdf}{Caption}{foo}
?
! You can't use `macro parameter character #' in restricted horizontal mode.
<argument> ...e : \ignorespaces \fLab {\small {}##
4}
l.44 \figCapLab{0.9}{whatever.pdf}{Caption}{foo}
?
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./test.aux)
LaTeX Warning: There were undefined references.
代わりに私が行う場合:
\documentclass[a4paper,twoside]{report}
\usepackage{german}
\usepackage[latin1]{inputenc}
\usepackage{a4}
\usepackage{amsmath}
\usepackage{url}
\usepackage{graphicx}
\usepackage{ifthen}
% As later \renwecommand is done on these macros,
% they should be defined: !!!!!!!!!!!!
\newcommand{\fLab}{}
\newcommand{\fCap}{}
%% Graphics figure with caption and label
% #1: optional: placement
% #2: non-optional: relative width
% #3: non-optional: file name
% #4: non-optional: in case not empty: caption
% #5: non-optional: in case not empty: label
\newcommand{\figCapLab}[5][htbp]{%
\ifthenelse{\equal{#5}{}}%
{\renewcommand{\fLab}{}}%
{\renewcommand{\fLab}{\label{#5}}}% !!!!Don't double the hash!!!!
\ifthenelse{\equal{#4}{}}%
{\renewcommand{\fCap}{\fLab}}%
{\renewcommand{\fCap}{\caption{\fLab{\small{}#4}}}}% !!!!Don't double the hash!!!!
\begin{figure}[#1]%
\centering
\begin{minipage}[t]{#2\textwidth}%
\includegraphics[width=\textwidth]{#3}% is width of surrounding minipage
\fCap
\end{minipage}%
\end{figure}%%%%%%%
}
%% Graphics figure with caption
% [1:placement,] 2:relative width, 3:file name, 4:caption
\newcommand{\figCap}[4]{%
\ifthenelse{\equal{#1}{}}%
{\figCapLab{#2}{#3}{#4}{}}%
{\figCapLab[#1]{#2}{#3}{#4}{}}%
}
%% Graphics figure with label
% [1:placement,] 2:relative width, 3:file name, 4:label
\newcommand{\figLab}[4]{%
\ifthenelse{\equal{#1}{}}%
{\figCapLab{#2}{#3}{}{#4}}%
{\figCapLab[#1]{#2}{#3}{}{#4}}%
}
\begin{document}
See \ref{foo}.
\figCapLab{0.9}{example-grid-100x100pt.pdf}{Caption}{foo}
\end{document}
すると、2 回目のコンパイルではエラーや警告は表示されなくなります。
ちなみに1:
持っていない何でも.pdf私のシステムの texmf ツリー内。
画像を処理する例を提供したい場合は、最新の LaTeX システムが提供するすぐに使用できる画像を使用できます。
例えば、マーティン・シャラーのMWE パッケージそのパッケージで利用可能なすべての画像をリストします。現在のTeXプラットフォームと現在のリリースでは、MWE パッケージ画像は texmf ツリーとファイル名データベースに統合されているため、パッケージをロードしなくても使用できます。
ちなみに2:
通常の状況では、読みやすさを向上させるために TeX ソース コードの行をインデントすることができます。 ;-) これは、(La)TeX が入力行の読み取りを開始すると、読み取り装置の状態が状態 N (改行) になり、状態 N ではカテゴリ コード 10 (スペース) の文字がスペース トークンとしてトークン化されず、トークンがまったく生成されないためです。
ちなみに3:
誤った動作を正確に再現するために、そのままコンパイルできる例を提供することをお勧めします。誤った動作を再現できることは、その誤った動作を生成するコードをデバッグするために重要です。
ニコラ・タルボット博士のLaTeX の最小限の例を作成するいくつかのガイドラインを提供します。
また、「最小限の例」の作り方texfaq.org からのもので、質問するためのアドバイスへのリンクもいくつか含まれています。
で最小限の動作例は何ですか?Christian Faulhammer は「最小限の例」という用語は使用していませんが、誤った動作を示すのに十分な意味でのみ機能する例に対しても「最小限の動作例」という用語を使用しています。
質問の答えにも興味があるかもしれません最小限の例を書くように求められましたが、それは何ですか?
答え2
OP からこの回答について少し説明を求められたので、ここにテキストを追加します。オプション引数の標準 LaTeX メカニズムでは、必須引数の前に 1 つのオプション引数を指定できます。したがって、オプション引数、必須引数 2 つ、オプション引数 2 つを指定する構文を作成するには、オプション引数が 3 つ要求されるため、3 つのマクロを連続して連結する必要があります。
最初のマクロはオプションの引数と必須の引数2つを受け取り、次に2番目のマクロを呼び出す必要があります。ここで重要な点があります。最終アクションとして! 2 番目のマクロ呼び出しが最初のマクロの最後のアクションでなければならない理由は、2 番目のマクロがオプションの引数を吸収する必要があるためです。チェーン内の 2 番目のマクロの呼び出しに続く最初のマクロにトークンがある場合、意図したとおりにではなく、最初のマクロのその他のトークンが引数として吸収されます。
同様に、2 番目のマクロは最終アクションとして 3 番目のマクロを呼び出す必要があります。
いくつかの風変わりなハイライト:
後続のマクロをブロック内で呼び出す場合は
\if
、後続のマクロがまたは\expandafter
を吸収しないように、後続のマクロの前に を置く必要があります。\else
\fi
この特定のケースでは、最後のオプション引数であるラベルは、キャプションが指定されている場合にのみ呼び出すことができます。したがって、チェーン内の 2 番目のマクロは、キャプションが指定されている場合にのみ 3 番目のマクロを呼び出します。それ以外の場合は、シーケンスが切り捨てられます。
MWE:
\documentclass{article}
\usepackage{graphicx}
\newcommand\addtofigtoks[1]{\expandafter\figtoks\expandafter
{\the\figtoks#1}}
\newtoks\figtoks
\newcommand\figCapLab[3][htbp]{%
\figtoks{\begin{figure}[#1]}
\addtofigtoks{\centering}
\addtofigtoks{\includegraphics[width=#2\textwidth]{#3}}
\optcap
}
\newcommand\optcap[1][\relax]{%
\ifx\relax#1\relax
\addtofigtoks{\end{figure}}
\the\figtoks
\else
\addtofigtoks{\caption{#1}}%
\expandafter\labelopt
\fi
}
\newcommand\labelopt[1][\relax]{%
\ifx\relax#1\relax\else\addtofigtoks{\label{#1}}\fi
\addtofigtoks{\end{figure}}
\the\figtoks
}
\begin{document}
\figCapLab{.2}{example-image-a}
\figCapLab{.2}{example-image-b}[My caption]
\figCapLab{.2}{example-image-c}[My caption][fg:label1]
\figCapLab[p]{.2}{example-image}[Other caption][fg:label2]
In figures \ref{fg:label1} and \ref{fg:label2}...
\end{document}
ああ、よく考えてみると、トークンは必要ないですね。
\documentclass{article}
\usepackage{graphicx}
\newcommand\figCapLab[3][htbp]{%
\begin{figure}[#1]
\centering
\includegraphics[width=#2\textwidth]{#3}
\optcap
}
\newcommand\optcap[1][\relax]{%
\ifx\relax#1\relax
\end{figure}
\else
\caption{#1}%
\expandafter\labelopt
\fi
}
\newcommand\labelopt[1][\relax]{%
\ifx\relax#1\relax\else\label{#1}\fi
\end{figure}
}
\begin{document}
\figCapLab{.2}{example-image-a}
\figCapLab{.2}{example-image-b}[My caption]
\figCapLab{.2}{example-image-c}[My caption][fg:label1]
\figCapLab[p]{.2}{example-image}[Other caption][fg:label2]
In figures \ref{fg:label1} and \ref{fg:label2}...
\end{document}
答え3
目標を達成する方法は次のとおりですxparse
:
\documentclass{article}
\usepackage{graphicx,xparse}
% \figCapLab
% [<float spec>] #1
% {<width factor>} #2
% {<image>} #3
% [<caption>] #4
% [<label>] #5
\NewDocumentCommand{\figCapLab}{ O{htbp} m m o o }{%
\begin{figure}[#1]
\centering
\includegraphics[width=#2\linewidth]{#3}% Set image at width
\IfValueT{#4}
{\caption{#4}\IfValueT{#5}{\label{#5}}}% Set possible \caption and \label
\end{figure}
}
\begin{document}
\figCapLab{.2}{example-image-a}
\figCapLab{.2}{example-image-b}[My caption]
\figCapLab{.2}{example-image-c}[My caption][fg:label1]
\figCapLab[p]{.2}{example-image}[Other caption][fg:label2]
In figures \ref{fg:label1} and \ref{fg:label2}\ldots
\end{document}
デフォルト付きのオプション引数は を使用して指定されO{<default>}
、デフォルトなしのオプション引数は を使用して指定o
されます。値が提供されるかどうかの条件は を使用して行われます。また、単数形の条件文と\IfValueTF{<parameter>}{<true>}{<false>}
もあり、前者は上記で使用されました。\IfValueT
\IfValueF
上記のコードでは、空のキャプション (4 番目の引数が空) には (5 番目の) 引数は不要であると想定しています。必要な場合は、 を内のブランチの外に\label
移動します。\IfValueT{#5}{\label{#5}}
<true>
\IfValueT{#4}
\NewDocumentCommand{\figCapLab}{ O{htbp} m m o o }{%
\begin{figure}[#1]
\centering
\includegraphics[width=#2\textwidth]{#3}% Set image at width
\IfValueT{#4}{\caption{#4}}% Possible \caption
\IfValueT{#5}{\label{#5}}% Possible \label
\end{figure}
}