插入子图 使编号不自动生成

2 回答2

4
<p>不想要子图标题的话就不要写标题\caption,minipage环境解决。如果想要标题不想要编号的话,用\caption*{},MWE 如下:</p><pre class="brush:plain;toolbar:false">\documentclass{article} \usepackage{graphicx} \usepackage{caption,subcaption} \begin{document} \begin{figure} \centering \begin{minipage}{0.5\linewidth}   \centering\includegraphics[width=0.9\linewidth]{example-image-a.pdf}   \caption*{figure A} \end{minipage}% \begin{minipage}{0.5\linewidth}   \centering\includegraphics[width=0.9\linewidth]{example-image-b.pdf}   \caption*{figure B} \end{minipage} \caption{Example image}\label{fig:example} \end{figure} \end{document}</pre><p><br></p>
2
<p></p><p>如果使用的是subfigure的话,重新定义计数器<br/></p><p><br/></p><p><br/></p><p>\setcounter{subfigure}{0} %设置subfigure计数器从0开始编号,参数可以自己设置</p><p><br/></p><p>在每个subfigure前面加上这个命令就可以实现你想要的编号</p><p><br/></p><p><br/></p><pre class="brush:html;toolbar:false;">&nbsp;&nbsp;&nbsp;\setcounter{subfigure}{0} &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;\subfigure[First&nbsp;Part]{% &nbsp;&nbsp;&nbsp;\label{fig:graphics:a}%&nbsp;label&nbsp;for&nbsp;subfigure &nbsp;&nbsp;&nbsp;\includegraphics[width=textwidth]{wide.eps} &nbsp;&nbsp;&nbsp;}%</pre><p></p>

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。