段落标题

段落标题

我想在我的文档中包含一个缩进、下划线、大写和小写段落标题,并以句号结尾,而不是使用\subsubsection。有谁知道如何在 LaTeX 中定义此命令?

答案1

您可以使用titlesec包;该ulem包用于下划线:

\documentclass{article}
\usepackage[explicit]{titlesec}
\usepackage{ulem}
\usepackage{lipsum}% just to generate text for the example

\setcounter{secnumdepth}{4}
\titleformat{\paragraph}[runin]
  {\normalfont\normalsize\bfseries}{}{15pt}{\uline{\theparagraph\hspace*{1em}#1.}}
\titleformat{name=\paragraph,numberless}[runin]
  {\normalfont\normalsize\bfseries}{}{15pt}{\uline{#1.}}

\begin{document}

\section{A Section}
\subsection{A Subsection}
\subsubsection{A Subsubection}
\paragraph{A Numbered Paragraph}
\lipsum[2]
\paragraph*{An Unnumbered Paragraph}
\lipsum[2]

\end{document}

在此处输入图片描述

相关内容