枚举包中的段落缩进

枚举包中的段落缩进

我对使用 enumerate 制作下面的这段文字感到困惑。实际上我不知道是否可以使用该包。我只想将其用于某个段落,但我不知道该怎么做。

在此处输入图片描述


我使用此脚本手动完成了此操作,有人可以帮我解决这个问题吗?

\noindent \textbf{A. INTRODUCTION}\\
\noindent \lipsum[1]
\noindent \textbf{\\B. METHODOLOGY}\\
\noindent \lipsum[1]

答案1

避免你正在做的事情,转向更好的事情。使用\section而不是手动枚举或使用列表。你的输出类似于分段单元,所以使用它们。为什么?这会导致自动目录、一致的间距、标题和后续段落内容之间没有中断、与输出相匹配的语义编码样式以及与文档元素的挂钩,这些元素可用于将来调整演示文稿。

在此处输入图片描述

\documentclass{article}

\usepackage{lipsum}
\usepackage{sectsty}
\sectionfont{\normalfont\bfseries\normalsize\MakeUppercase}% Change font for \section
\renewcommand{\thesection}{\Alph{section}}% Change counter for \section
\makeatletter
\renewcommand{\@seccntformat}[1]{\csname the#1\endcsname.~}% Add period after \thesection (and others)
\makeatother

\begin{document}

\section{Introduction}
\lipsum[1]

\section{Methodology}
\lipsum[1]

\end{document}

相关内容