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

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

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