我刚开始使用 LaTeX 撰写科学论文。我不想有段落缩进,所以我使用了 parskip 包来处理这个问题。然而,这似乎不能处理摘要第一行的缩进。我试过手动设置 parident,但似乎也不起作用。
是否有一种特殊的方法可以在摘要部分中设置段落缩进?
\documentclass{article}
\usepackage{parskip}
\begin{document}
\title{What are the fundamental gaps in scientific knowledge?}
\author{Robin Wilson}
\maketitle
\begin{abstract}
Recent reports by the global environmental ...
\end{abstract}
\section{Introduction}
Here is the text of your introduction.
And another paragraph here.
\end{document}
答案1
最简单的方法是插入\noindent
:
\begin{abstract}
\noindent Recent reports ...
\end{abstract}
原因是,该文章使用了一个quotation
环境摘要,并quotation
使用段落缩进,与quote
。因此,您可以重新定义abstract
环境以使用quote
,但插入会更容易\noindent
。如果需要,您还可以\parindent
在摘要中将其设置为 0pt。
答案2
如果您想要删除每个 LaTeX 文档中每个摘要第一行的缩进(或者更准确地说,基于引用环境删除每个摘要第一行的缩进),请将以下内容添加到您的个人配置文件中:
\usepackage{etoolbox}
\ifundef{\abstract}{}{\patchcmd{\abstract}%
{\quotation}{\quotation\noindent\ignorespaces}{}{}}
答案3
我看到了两位著名数学家写的一篇论文,
\def\ni{\noindent}
在序言中,并在每个段落的开头使用 \ni。这似乎对格式或数学(最高级别的)没有造成任何损害。
所以我的建议是:尽一切努力追求印刷上的卓越和 TeX 的良好使用。但一流的数学既难又重要。如果你有重要的事情要说,不要担心你的 TeX 不是最好的。
顺便说一句,他们的论文中不需要“取消元素”,因为它的名字是 \ni!