'Change section text size in latex
Is it possible to set text size of sections to a particular value, say 11pt?
\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{document}
\section{Introduction}
Bla Bla
\section{Thank}
Bla Bla
\end{document}
Here I want to set 'Introduction' & 'Thank' at 11 text-size.
Solution 1:[1]
You can use the titlesec
package:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{titlesec}
\titleformat{\section}{\normalfont\fontsize{11pt}{12pt}\selectfont\bfseries}{\thesection}{1em}{}
\begin{document}
\section{Introduction}
Bla Bla
\section{Thank}
Bla Bla
\end{document}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | samcarter_is_at_topanswers.xyz |