我收到 2^14 x 2^14 的标题错误(在 sharelatex 中没有问题,但在 overleaf 和 journal editor 中有问题):
\usepackage{lineno,hyperref, graphicx, caption, color, float, makeidx, amsmath}
.
.
.
\begin{figure}[h]
\centering
\includegraphics[width=\linewidth]{fig6.PNG}
\captionsetup{justification=centering}
\caption{... A\footnotemark \\ with dimensions 2^{25} \times 2^{25}.}
\label{figure6}
\end{figure}
\footnotetext{\url{}}
答案1
正如@TeXnician 所说,您错过了$
数学表达式。
\caption
在乳胶中是脆弱的命令,在这种情况下,您可以将\protect
其放在前面\footnotemark
。您的 MWE 将如下所示。
\documentclass[demo]{article}
\usepackage{graphicx, caption, url}
\begin{document}
\begin{figure}[h]
\centering
\includegraphics[width=\linewidth]{fig6.PNG}
\captionsetup{justification=centering}
\caption{Figure shows comparison of performance for square matrix A\protect\footnotemark \\ with dimensions $2^{14} \times 2^{14}$.}
\label{figure6}
\end{figure}
\footnotetext{\url{}}
\end{document}