Text Formattingunbolded subsubsection

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
kapowza
Posts: 19
Joined: Fri Jan 30, 2009 3:32 pm

unbolded subsubsection

Post by kapowza »

I'd like to make my subsubsection heading unbolded. Is there a simple way to do this?

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

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

unbolded subsubsection

Post by gmedina »

Hi,

you could use either the sectsty or titlesec package.

An example, using sectsty:

Code: Select all

\documentclass{article}
\usepackage{sectsty}

\subsubsectionfont{\normalfont}

\begin{document}

\section{Test section}
\subsection{Test subsection}
\subsubsection{Test subsubsection}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply