包含章节/附录标题 ID 的参考文献?

包含章节/附录标题 ID 的参考文献?

可能重复:
如何创建多级图形/表格编号?
连续编号,即按章节/节对图表、表格和其他文档元素进行编号

\documentclass{article}
\begin{document}

dude see Fig. \ref{myfig} ! 

\appendix{}

\section{my section heading}\label{sec:seclabel}


\begin{figure}[H]
\caption{mycaption}
\label{myfig}
\end{figure}

\end{document}

产量dude see Fig. 1——我如何制作可以产量的东西dude see Fig. A.1(无需手动操作)Fig. \ref{sec:seclabel}.\ref{myfig})

答案1

您必须使用\numberwithin{figure}{section}宏。它需要amsmath包,请参阅下面的完整示例:

\documentclass{article}
\usepackage{amsmath} %% HERE!!!
\begin{document}

dude see Fig. \ref{myfig} ! 

\appendix{}

\numberwithin{figure}{section} %% AND HERE!!!

\section{my section heading}\label{sec:seclabel}


\begin{figure}[H]
\caption{mycaption}
\label{myfig}
\end{figure}

\end{document}

相关内容