抽象缩进

抽象缩进

我该如何缩进我的摘要?我试过这个:

\begin{abstract}
\indent
My abstract is this.
\end{abstract}

但它不起作用。我甚至用\usepackage{indentfirst}它来缩进我的文本的每个第一个段落,似乎也有效。

编辑:我尝试使用以下命令:

\setlength{\absparindent}{0pt}

在抽象环境中,具有不同的值,1pt,2pt......但似乎没有任何变化。

编辑 2:添加了 MWE,希望这可以帮助某人解决这个问题。

\documentclass[
    12pt,               % tamanho da fonte
    oneside,                % para impressão apenas em verso.
    a4paper,            % tamanho do papel.
    chapter=TITLE,      % títulos de capítulos convertidos em letras maiúsculas
    section=TITLE,      % títulos de seções convertidos em letras maiúsculas
    subsection=title,   % títulos de subseções convertidos em letras minúsculas
    subsubsection=title,% títulos de subsubseções convertidos em letras minúsculas
    brazil              % o último idioma é o principal do documento
    ]{abntex2}

\usepackage{indentfirst} % Para identar o primeiro paragrafo
\begin{document}

\begin{agradecimentos}

 Thanking notes! As you can see, the "identfirst" package works here.

\end{agradecimentos}


\begin{resumo}[Resumo]

This is my abstract, help please. The "identfirst" package doesn't work here.

\vspace{\onelineskip}

\textbf{Palavras-chave}: abstract, help.

\end{resumo}

\end{document}

答案1

摘要由类定义为不缩进。只需查看文件即可找到.cls。我只是复制并修改了它,使它就像普通的段落一样。

\documentclass[
    12pt,               % tamanho da fonte
    oneside,                % para impressão apenas em verso.
    a4paper,            % tamanho do papel.
    chapter=TITLE,      % títulos de capítulos convertidos em letras maiúsculas
    section=TITLE,      % títulos de seções convertidos em letras maiúsculas
    subsection=title,   % títulos de subseções convertidos em letras minúsculas
    subsubsection=title,% títulos de subsubseções convertidos em letras minúsculas
    brazil              % o último idioma é o principal do documento
    ]{abntex2}

% A norma não diz nada sobre identação e separação entre parágrafos no abstract,
% porém o uso mostra que muitos abstracts são montados sem identação.
\AtBeginDocument{%
   \setlength{\absparindent}{\parindent}
}


\begin{document}

teste

teste para mostrar que não precisa de indentfirst

teste


\begin{resumo}[Resumo]


This is my abstract, help please. The "identfirst" package doesn't work here. This is my abstract, help please. The "identfirst" package doesn't work here. 


This is my abstract, help please. The "identfirst" package doesn't work here. This is my abstract, help please. The "identfirst" package doesn't work here.

This is my abstract, help please. The "identfirst" package doesn't work here.


\vspace{\onelineskip}

\textbf{Palavras-chave}: abstract, help.

\end{resumo}

\end{document}

答案2

\indent不起作用,因为 LaTeX 插入的用于删除节标题后缩进的代码确实会删除缩进框,即使明确添加了也是如此。

尝试

\section{hhh}
\hspace*{\parindent}aa bb ccaa 

查看 MWE

\documentclass{article}

\begin{document}

\title{What are the fundamental gaps in scientific knowledge?}
\author{Robin Wilson}

\maketitle

\begin{abstract}
\hspace*{\parindent}aa bb ccaa Recent reports by the global environmental ...
\end{abstract}

\section{Introduction}
Here is the text of your introduction.

And another paragraph here.

\end{document}

在此处输入图片描述

答案3

更简单干净的方式是插入\phantom{2em}在摘要前面。而且,你可以指定你想要的空间。

相关内容