字幕问题

字幕问题

我正在写一些笔记,当我添加图形标题时出现以下错误:

Illegal parameter number in definition of reservad@a
<to be read again>
\crcr

这是代码:

\documentclass[12pt]{article}
\usepackage{amsmath, amssymb, graphicx, tikz}

\begin{document}
\begin{figure}
\centering
\includegraphics[width=.7\textwidth]{pic.png}
\caption{\overrightarrow{\mathbf{AB}}}\label{some-label}
\end{figure}
\end{document}

答案1

\documentclass[12pt]{article}
\usepackage{amsmath, amssymb, graphicx, tikz}

\begin{document}
\begin{figure}
\centering
%\includegraphics[width=.7\textwidth]{pic.png}
\caption{$\protect\overrightarrow{\mathbf{AB}}$}\label{some-label}
\end{figure}
\end{document}

在此处输入图片描述

相关内容