General ⇒ Frontmatter in article
Frontmatter in article
I am currently writing my thesis using Latex and I wish to have a part in the beginning that resembles the frontmatter package. However, I would like to use the article class. I was just wondering if anybody has heard of or used any packages like this.
If not, I am happy to format the section to make it look like I want. Is there a way to make a certain section of a document (using the article class) use roman numbering, and the rest of the document using arabic?
Thanks in advance.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: Frontmatter in article
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Frontmatter in article
you could usemppxtylr wrote:Is there a way to make a certain section of a document (using the article class) use roman numbering, and the rest of the document using arabic?
Code: Select all
\renewcommand*{\thesection}{\roman{section}.}
Code: Select all
\renewcommand*{\thesection}{\arabic{section}.}
If required, reset the section counter by
Code: Select all
\setcounter{section}{0}
Stefan