Page Layout ⇒ Sections and the maketitle
-
- Posts: 22
- Joined: Sun Dec 01, 2013 11:24 pm
Sections and the maketitle
I found how to add a subsubsubsection while keeping the (sub)paragraphs.
But, my tocdepth is set to "4", and when I wanna change it to see my (sub)paragraphs in the maketitle, it makes several errors....
So, I wanted to know if there was a way to add subsubsubsections while setting the tocdepth to "6" to see (sub)paragraphs in the maketitle.
Thanks!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Sections and the maketitle
I think you are confusing a few things here.
- Maketitle is used for the title page only. You probably meant
\tableofcontents
. - Subheadings are only defined up to
\subsubsection
(see here), from there it's\paragraph
. You could use the titlesec package to redefine paragraph and make it look like a section heading. I'd not recommend that. Besides not being aesthetic, a deeply nested document structure is also hard to read. - Please include a minimal example next time which makes it much easier to help you.