在 LaTeX 中将方程或公式添加到图形标题

发布于 2024-08-30 04:25:12 字数 841 浏览 7 评论 0原文

我有一个带有标题的 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    }

将方程添加到图形标题的正确方法是什么?

注意:请不要建议简单地使用 $ ... $ 数学环境; 显示的方程是一个玩具示例;我真正的方程要复杂得多。

另请参阅

I have a figure in LaTeX with a caption to which I need to add a formula (equation* or displaymath environments). For example:

\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}

This makes pdflatex angry, though it will produce a PDF.

! Argument of \@caption has an extra }.
<inserted text> 
                \par 
l.9    }

What's the right way to go about adding an equation to a figure caption?

NOTE: Please do not suggest simply using the $ ... $ math environment;
the equation shown is a toy example; my real equation is much more intricate.

See also:

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

万人眼中万个我 2024-09-06 04:25:12

使用包“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{...}

Using the package "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}

The square brackets following \caption aren't optional, but leaving them off won't cause an error that looks any different than the one before you added \usepackage{caption} and \captionsetup{...}.

歌入人心 2024-09-06 04:25:12

我不知道为什么你不想使用 $ ... $ 解决方案,因为分数?

如果是这样,您可以使用 \dfrac 而不是 \frac

我会尝试 $ \displaystyle \dfrac{1}{2} \cdot \sum_{i=0}^ni$,即使用 \displaystyle 命令。

I'm not sure why you do not want to use the $ ... $ solution, because of fractions?

If so, you can use \dfrac instead of \frac.

I would try $ \displaystyle \dfrac{1}{2} \cdot \sum_{i=0}^n i$, i.e. use the \displaystyle command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文