0

I would like to automatically remove the indentation at the beginning of an abstract in memoir. I have seen such solutions for other classes. If I insert \noindent manually like this:

\documentclass{memoir}

\usepackage{lipsum}

\begin{document}

    \begin{abstract}
        \noindent
        \lipsum[1]    
    \end{abstract}

\end{document}

Then the indentation is removed completely: enter image description here I tried to modify \abstracttextfont, but a small indentation remains:

\documentclass{memoir}

\usepackage{lipsum}

\renewcommand{\abstracttextfont}{\normalfont\small\noindent}

\begin{document}

    \begin{abstract}
        \lipsum[1]    
    \end{abstract}

\end{document}

enter image description here

user44413
  • 601

1 Answers1

3

It is probably simplest to just use

\renewcommand{\abstracttextfont}{\normalfont\small\noindent\ignorespaces}
daleif
  • 54,450