如何在 LaTeX 中更改所有章节标题的格式?

如何在 LaTeX 中更改所有章节标题的格式?

我希望将所有标题更改为如下所示(在 Word 中创建),有人知道如何做到这一点吗?

在此处输入图片描述

答案1

像这样吗?

\documentclass[a4paper, 12pt, fleqn]{article}
\usepackage{titlesec}
\usepackage{xcolor}
\renewcommand{\familydefault}{\sfdefault}
\titleformat{\section}[display]{\centering\Large\bfseries}{}{0pt}{\underline}
\titleformat{\subsection}{\large\bfseries\color{darkgray}}{}{0pt}{\underline}
\titleformat{\subsubsection}{\bfseries\color{gray}}{}{0pt}{}
\setcounter{secnumdepth}{0}
\begin{document}
\section{Section Title}
\subsection{Subsection Title}
\subsubsection{Subsubsection Title}
Text
\end{document}

相关内容