我浏览该网站一段时间,并没有找到关于这个特定问题的具体答案:
我正在打印一篇论文,并被要求用标题分隔不同的部分。我想使用itemize
它来做到这一点,但在格式方面遇到了麻烦。我希望文本与文档的其余部分对齐,所以我发现我应该使用该enumitem
包,以便我可以进行调整leftmargin
。这是我现在拥有的一个例子:
\documentclass[12pt]{article}
\usepackage{lipsum, enumitem}
\begin{document}
\lipsum[1]
\begin{itemize}[leftmargin=0cm]
\item[I.] First Section
\lipsum[1]
\lipsum[2]
\item[II.] Second Section
\quad \quad \lipsum[3]
\end{itemize}
\end{document}
这正是我想要的格式,但我注意到段落不再缩进。我尝试使用\indent
,但无济于事。目前,我正在使用\quad \quad
,我确信它既不是缩进也不是好的标记。
你们有人知道更好的方法来解决这个问题吗?
答案1
我对您的输入提供了另一种看法,它更符合具有分段划分的文档的语义:
\documentclass{article}
\usepackage{lipsum,sectsty,indentfirst}% http://ctan.org/pkg/{sectsty,indentfirst}
\sectionfont{\normalsize\normalfont}
\makeatletter
\renewcommand{\@seccntformat}[1]{\leavevmode\llap{\csname the#1\endcsname.\quad}}
\renewcommand{\thesection}{\Roman{section}}
\makeatother
\begin{document}
\lipsum[1]
\section{First Section}
\lipsum[1-2]
\section{Second Section}
\lipsum[3]
\end{document}
以下是对 MWE 序言中发生更改的元素的一些引用: