语境
我的文档结构如下:
1. First section
a. Lorem
b. Ipsum
2. Second section
注意\thesubsection
定义不包括\thesection
换句话说,小节编号不包括其父节编号(即“b.Ipsum”并不是“1.b. 假名”)。
太棒了,因为我也想要这样的。
问题
假设我在 Ipsum 子部分中创建了一个标签。当我引用它时,我明白了“b.”。 然而,我想得到“1.b。”,即该小节的引用加上其父级的引用。
问题
\thesubsection
当不包括章节编号时,如何获取小节的“完整参考” ?
平均能量损失
\documentclass{scrartcl}
\renewcommand{\thesubsection}{\alph{subsection}}
\begin{document}
\section{First section}
\subsection{Lorem}
\subsection{Ipsum}
\label{sec:ipsum}
\section{Second section}
The subsection titled "Ipsum" is Subsection \ref{sec:ipsum}.
However, I would like it to be referred to as "Subsection 1.b".
\end{document}