I am trying to insert a list into a document in which the highest level has the title 'Year [x]'.
This is my code but it isn't doing quite what I want. I don't want the highest level to be a subsection.
\begin{document}
\subsection{Year 1}
\label{subsubsec:subsubsec02}
\begin{itemize}
\item some text
\end{itemize}
\subsection{Year 2}
\label{subsubsec:subsubsec03}
\begin{itemize}
\item some more text
\end{itemize}
\subsection{Year 3}
\label{subsubsec:subsubsec04}
\begin{itemize}
\item even more text
\end{itemize}
\subsection{Year 4}
\label{subsubsec:subsubsec05}
\begin{itemize}
\item the last bit of text
\end{itemize}
\end{document}
Hope you can help
Mensch, the current list looks like this.
0.1 Year 1
• some text
0.2 Year 2
• some more text
0.3 Year 3
• even more text
0.4 Year 4
• the last bit of text
I would like the highest level of the list to have the heading of Year [number] but without it being a subsection that will appear in a contents page

\subsection, what do you actually want? You can simply nestitemizeenvironments e.g. https://tex.stackexchange.com/q/36443/106162 – Dai Bowen Feb 16 '24 at 11:43