I have the following latex file:
\documentclass{article}
\begin{document}
\section{First}
% Content for the first section
\section{Second}
% Content for the second section
\section{Third}
% Content for the third section, which will be numbered as 1 in the PDF
\section{Fourth}
% Content for the fourth section, which will be numbered as 2 in the PDF
\end{document}
By default, I get the following output:
- First
- Second
- Third
But what I want is:
- First
- Second
-
- Third
How can I achieve this?