我在LaTeX中有一个带有标题的图形,我需要添加一个公式(equation*
或displaymath
环境)。例如:
\documentclass[12pt]{article}
\begin{document}
\begin{figure}[tbph]
\begin{center}
%...
\end{center}
\caption{As you can see
\begin{displaymath}4 \ne 5\end{displaymath}
}
\label{fig:somefig}
\end{figure}
\end{document}
这会使pdflatex生气,但它会生成PDF。
! Argument of \@caption has an extra }.
<inserted text>
\par
l.9 }
将方程式添加到数字标题的正确方法是什么?
注意:请不要建议只使用$ ... $
数学环境;
显示的等式是玩具示例;我真正的等式更为复杂。
另见:
答案 0 :(得分:7)
使用“caption”包:
\begin{figure}
\begin{center}
...
\captionsetup{singlelinecheck=off}
\caption[.]{
\begin{displaymath}
assoc\_meaning(\lambda x_{SBJ}. followed(x,y) \&actor(x) \nonumber \&actor(y),\lambda x_{SBJ}. maintained(x,\nonumber <(dist\_from(y),1))
\end{displaymath}}
\end{center}
\end{figure}
\caption
后面的方括号不是可选,但将其关闭不会导致与您添加\usepackage{caption}
之前的错误相同的错误\captionsetup{...}
。
答案 1 :(得分:2)
我不确定为什么你不想使用$ ... $
解决方案,因为分数?
如果是这样,您可以使用\dfrac
代替\frac
。
我会尝试$ \displaystyle \dfrac{1}{2} \cdot \sum_{i=0}^n i$
,即使用\displaystyle
命令。