LaTeX How Do You Notate Subsections in LaTeX?

  • Thread starter Thread starter Juggler123
  • Start date Start date
  • Tags Tags
    Latex Notation
AI Thread Summary
To notate subsections in LaTeX, use a single \S symbol for both sections and subsections, such as 'in \S 4.2'. The double \S\S is reserved for referencing multiple sections, like 'in \S\S 4.2-4.6'. This approach simplifies tracking numbering by utilizing labels and references within the document. For example, using \label and \ref commands allows for clear citations without manual updates. Proper notation enhances clarity in academic writing.
Juggler123
Messages
80
Reaction score
0
So to write 'in section 2' I would say 'in \S 2'

for 'in subsection 4.2' would I then say 'in \S\S 4.2'?

or just 'in \S 4.2'?

Thanks
 
Physics news on Phys.org
You're much better off doing something like this so that you don't have to keep track of the numbering yourself:
Code:
\section Stuff

\subsection additional stuff
\label{sec:stuff}

A whole bunch of text and possibly additional sections follow here. 

Now, referring back to \S \ref{sec:stuff}, we see that there is a great deal of stuff in it.
 
Ah, but your question seems to be more about the *notation* used to indicate sections. To answer your question, I think you would use only ONE \S symbol, even for a subsection. Two symbols : \S\S is use to refer to *multiple* sections. E.g. You might say something like: \S\S 4.2-4.6. It's the equivalent of writing p. 46 to indicate a particular page and pp.46-63 to indicate a range of pages.
 
Makes perfect sense, thank you.
 

Similar threads

Replies
4
Views
2K
Replies
3
Views
8K
Replies
2
Views
3K
Replies
5
Views
3K
Replies
3
Views
2K
Back
Top