答案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}