使用 subsubsection 和章节列表

使用 subsubsection 和章节列表

我想使用 的“样式” \subsubsection,但对我的家庭作业使用 的编号,\section因为我不喜欢 的文档外观enumerate,我能得到的最好/最美观的解决方案是:

\subsubsection*{1. Question}

Answer

\subsubsection*{2. Question}

Answer

我想以某种方式自动化这个过程,不需要手动输入问题的编号,如果有另一种更有效的形式来获得相同或类似的效果,我也可以使用。

答案1

一个非常简单的方法可能是:

\documentclass{article}
\renewcommand{\thesubsection}{\textbf{\arabic{subsection}}.}
\begin{document}
\subsection{Question}
one
\subsection{Question}
two
\end{document}

在此处输入图片描述

但也许包裹titlesec可以提供更多的灵活性。

答案2

我会使用类似的东西:

\begin{enumerate}
\item \textbf{A question}

  The blank line is to force a new paragraph in this item.
\item \textbf{Another question}

  It is a \emph{bad} idea to fight \LaTeX.
  The source code of the document should describe the structure of the document,
  not use random constructs to get some appearance.
\end{itemize}

相关内容