\subsection{...}-结果与以下文本一致

\subsection{...}-结果与以下文本一致

您好,这是我的第一个问题。

通常情况下,如果我写类似

\subsection*{a)}
 blabla

它显示为

A)
啦啦

现在我想实现这两个元素是内联的

A)啦啦

这可能吗?

答案1

使用\paragraph\subparagraph

\documentclass{article}
\begin{document}
\section*{This is a section}
\subsection*{This is a subsection}
\subsubsection*{This is a subsubsection}
\paragraph{This} is a paragraph.
\subparagraph{This} is a subparagraph.
\end{document}

其结果是:

章节和段落级别

您还可以通过设置secnumdepth为 4 或 5 来对它们进行编号。

\setcounter{secnumdepth}{5}

或者您可以使用“编号”列表:

\documentclass{article}
\usepackage{lipsum}
\begin{document}
\begin{enumerate}
    \renewcommand{\labelenumi}{\bfseries\alph{enumi})}
    \item \lipsum[2]
    \item \lipsum[3]
\end{enumerate}
\end{document}

其结果是:

按字母顺序排列的列表

相关内容