セクション番号なしで、サブセクションのサブセクション番号だけを含めたいと思います。
この MWE は私が求めているものを要約していると思います。 に代わるものはありますか\ref
?
\documentclass{article}
\begin{document}
\section{Section A}
\section{Section B}
\section{Section C}
\subsection{Subsection 1}
\subsection{Subsection 2}
\label{subsec:Subsection}
I would like "\ref{subsec:Subsection}" to just return "2".
\end{document}
答え1
これは、「The LaTeX Companion」(第 2 版) という本で学んだ手法に基づいたソリューションです。 を実行してカウンター\renewcommand\thesubsection{\arabic{subsection}}
の表示をリセットし、サブセクション レベルのエントリでカウンターを表示する方法を制御するsubsection
低レベルの LaTeX コマンド を使用します。\subsection@cntformat
subsection
このソリューションは、設計上、hyperref
およびcleveref
パッケージとそれらの相互参照マクロ (例: \autoref
、、\cref
および )と互換性があります\labelcref
。
追記 2019/08/08subsubsection
: ソリューションを一般化して、レベル ヘッダーも処理できるようにするために、コードに 2 行追加しました。
\documentclass{article}
\usepackage{geometry} % optional
\renewcommand\thesubsection{\arabic{subsection}}
\renewcommand\thesubsubsection{\arabic{subsubsection}}
% Method proposed in "The LaTeX Companion", 2nd ed.:
\makeatletter
\def\@seccntformat#1{\@ifundefined{#1@cntformat}%
{\csname the#1\endcsname\space}% default
{\csname #1@cntformat\endcsname}}% enable individual control
\def\subsection@cntformat{\thesection.\thesubsection\space}
\def\subsubsection@cntformat{\thesection.\thesubsection.\thesubsubsection\space}
\makeatother
%Optional:
\usepackage[colorlinks,allcolors=blue]{hyperref}
\usepackage[noabbrev,nameinlink]{cleveref}
\crefname{subsection}{subsection}{subsections}
\crefname{subsubsection}{subsubsection}{subsubsections}
\begin{document}
\setlength\parindent{0pt} % just for this example
The instructions \verb+\ref{sec:C2}+ and \verb+\labelcref{sec:C2}+ return ``\ref{sec:C2}'' and ``\labelcref{sec:C2}''.
The instructions \verb+\ref{sec:C11}+ and \verb+\labelcref{sec:C11}+ return ``\ref{sec:C11}'' and ``\labelcref{sec:C11}''.
\verb+\autoref+: \autoref{sec:C2} and \autoref{sec:C11}
And \verb+\cref+: \cref{sec:C2,sec:C11}
\addtocounter{section}{2} % just for this example
\section{Section C}
\subsection{Subsection 1}
\subsubsection{Subsubsection 1} \label{sec:C11}
\subsection{Subsection 2} \label{sec:C2}
\end{document}