我正在使用\floatfoot
来为论文中的图表创建注释。我想在该图表的注释中包含一个方程式。具体来说,我尝试使用以下代码:
\floatfoot{Notes: The figure shows coefficients from the following specification:
$$ y = \alpha + \beta X $$
where $y$ is an outcome.}
当我编译此代码时,PDF 看起来正确,尽管我在 TeXnicCenter 中遇到了几个错误。我遇到的错误如下:
! Missing $ Inserted
上面的代码中缺少$显然没有问题。
我想知道是否有人有任何建议可以避免在 TeXnicCenter 中出现这些错误。我也尝试在命令中使用align
和环境,这会产生不同的(但显然仍然有问题的)错误。equation
\floatfoot
答案1
您可以将公式隐藏在 a 中\parbox
,也可以将整个\floatfoot
内容放入 a 中minipage
,如下所示:
\documentclass{article}
\usepackage{floatrow}
\begin{document}
\begin{figure}
\floatbox{figure}{\caption{Caption}}
{\rule{2cm}{2cm}
\floatfoot{Notes: The figure shows coefficients from the following
specification:\endgraf
\parbox{\linewidth}{%
\begin{displaymath}
y = \alpha + \beta X
\end{displaymath}}\endgraf
where $y$ is an outcome.}}
\end{figure}
\begin{figure}
\floatbox{figure}{\caption{Caption}}
{\rule{2cm}{2cm}
\floatfoot{%
\begin{minipage}{1.0\linewidth}
Notes: The figure shows coefficients from the following
specification:
\begin{displaymath}
y = \alpha + \beta X
\end{displaymath}
where $y$ is an outcome.
\end{minipage}%
}}
\end{figure}
\end{document}