我正在尝试subfigure
在 Frontiers 论文中使用 subcaption 包的环境。您可能会发现模板这里。
问题Frontiers 文档类中的子标题问题已经指出边界模板使事情变得困难......最终我想使用phantomsubcaption
能够在一个大图中引用子图,但编译器不知道该命令。
这是我的 MWE:
\documentclass[utf8]{frontiersSCNS}
\usepackage{url,hyperref,lineno,microtype,subcaption}
\usepackage[onehalfspacing]{setspace}
\def\firstAuthorLast{Sample {et~al.}} %use et al only if is more than 1 author
\begin{document}
Test
\begin{figure}
\begin{subfigure}{15cm}
\centering
\phantomsubcaption
\label{fig:subtest}
\includegraphics{logo1}
\end{subfigure}
\caption{Hello}
\label{fig:test}
\end{figure}
\end{document}