我正试着连着几个子数字对齐。两个数字运行良好。当试图包含第三个子图时,会出现以下错误消息:文件结束,同时扫描@子浮点数的使用。包括{doc}
这个tex文档包含在包含包的主文件中:
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{subcaption}
%%%%%%new doc
\begin{figure}[h!]
\centering
\subfigure[a]{\includegraphics[width=0.1\textwidth]{Logos/Symbol_One_flow_path}}
\subfigure[b]{\includegraphics[width=0.1\textwidth]{Logos/1920px-Symbol_Two_flow_paths}}
\subfigure[c]{\includegraphics[width=0.1\textwidth]{Logos/Symbol_Two_flow_paths_(diagonally)} \subfigure[d]{\includegraphics[width=0.3\textwidth{Logos/Symbol_Two_flow_paths_with_connection}
\subfigure[e]{\includegraphics[width=0.3\textwidth]{Logos/graph}
\end{figure}发布于 2021-02-10 16:41:20
这个问题可能是由于图c、d和e末尾缺少的}造成的,这可以解释为什么只有数字a和b。
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{subcaption}
\begin{figure}[h!]
\centering
\subfigure[a]{\includegraphics[width=0.1\textwidth]{Logos/Symbol_One_flow_path}}
\subfigure[b]{\includegraphics[width=0.1\textwidth]{Logos/1920px-Symbol_Two_flow_paths}}
\subfigure[c]{\includegraphics[width=0.1\textwidth]{Logos/Symbol_Two_flow_paths_(diagonally)}} %one } was missing here !
\subfigure[d]{\includegraphics[width=0.3\textwidth{Logos/Symbol_Two_flow_paths_with_connection}} % here also
\subfigure[e]{\includegraphics[width=0.3\textwidth]{Logos/graph}} %and here
\end{figure}https://stackoverflow.com/questions/66116883
复制相似问题