Text FormattingSection Costumization

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Upboiler
Posts: 3
Joined: Fri Apr 01, 2011 8:03 am

Section Costumization

Post by Upboiler »

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!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

torbjorn t.
Posts: 162
Joined: Wed Jun 17, 2009 10:18 pm

Section Costumization

Post by torbjorn t. »

Add

Code: Select all

\usepackage{sectsty}
\sectionfont{\normalfont}
to your preamble.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Section Costumization

Post by localghost »

The titlesec package is another package that allows customization of headings.

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}
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
Post Reply