Hi all,
I am working on my thesis and need my section titles to be left justified, non-bold text. The document style I am using is specific to my department's, but I believe article style also bolds the sections automatically.
Basically I need them to look like this:
1.1 Title Here
But instead they look like this:
1.1 Title Here
The best I seem to be able to do is by typing \section{\normaltext{Title Here}} but then I get this:
1.1 Title Here
And I need everything to be non bold.
I have tried playing with the sectsty and titlesec options but to no avail. I'd really appreciate some help. Thanks!
Text Formatting ⇒ Section Costumization
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Section Costumization
Add
to your preamble.
Code: Select all
\usepackage{sectsty}
\sectionfont{\normalfont}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Section Costumization
The titlesec package is another package that allows customization of headings.
But the package is capable of much more than only to format headings (e. g. page styles). The manual has the details.
The blindtext package is not part of the solution. It has only been use to create dummy text.
Thorsten
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[md,raggedright]{titlesec}
\usepackage{blindtext}
\begin{document}
\blinddocument
\end{document}
The blindtext package is not part of the solution. It has only been use to create dummy text.
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10