I have an article with multiple sections. Say Section 1 and Section 2, with subsections for each. But I want one section, say Section 2 here, to be treated specially. This question has two parts.
- For section 2, I want the counter to just return the subsection number, i.e. instead of 2.3 I just want 3.
- I want the section numbering to also only use the subsection numbers.
The reason for this is that this is a Notes section, so is treated specially. See the illustration below.
\documentclass{article}
\begin{document}
\section{Section one}\label{one}
See Note~\ref{note.three}. % First part of question. How can I make this read "See Note 3." not "See Note 2.3."?
\section{Notes}\label{notes}
\subsection{First note}\label{note.one} % Second part of question. How can I make this read "1 First note" not "2.1 First note"?
Some text.
\subsection{Another note}\label{note.two} % Ditto
Some more text.
\subsection{Yet another note}\label{note.three} % Ditto
Yet more text.
\end{document}

