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}

\itemin anenumerateenvironment can be assigned a\labeland hence can be cross-referenced using the usual\refmechanism. – Mico May 03 '12 at 20:42\subsectionmethod and need to use arabic numerals to "number" the subsections without the section number prefix, do consider using a redefinition such as\renewcommand{\thesubsection}{(\arabic{subsection})}-- note the parentheses around the subsection numeral -- rather than just\renewcommand{\thesubsection}{\arabic{subsection}}. Your readers will appreciate it. :-) – Mico May 03 '12 at 20:54