大家好,我是一个新的 Latex 用户,我尝试从模板开始编写我的第一个演示文稿。当我尝试使用此代码制作幻灯片时
\subsection{Main Result}
\frame
{
\begin{block}{Theorem \left[ Pasquale, Nicola \right]}
Consider the multiplex network .... code from daniel
\end{block}
}
我有这个错误
Missing $ inserted.}
非常感谢你的回答
答案1
最好的方法是不使用\left
and \right
:
\documentclass{beamer}
\begin{document}
\frame
{
\begin{block}{Theorem [Pasquale, Nicola]}
Consider the multiplex network .... code from daniel
\end{block}
}
\end{document}
但是如果你想使用\left
,\right
你应该处于数学模式但这根本不是最好的解决方案:
\documentclass{beamer}
\begin{document}
\frame
{
\begin{block}{Theorem $\left[\text{Pasquale, Nicola} \right]$}
Consider the multiplex network .... code from daniel
\end{block}
}
\end{document}