I am using \documentclass[11pt,a4paper,twoside]{article} for my document. I want to remove the small space just before the "Abstract." title. How to remove that small space? I want to strat the "Abstract." title just like "Keywords" without any white spaces at begining.
I am using the following in my preamble:
\usepackage[runin]{abstract} % Allows abstract customization
\renewcommand{\abstractnamefont}{\normalfont\bfseries} % Set the "Abstract" text to bold
\renewcommand{\abstracttextfont}{\normalfont\small} % Set the abstract itself to small italic text
\abslabeldelim{.}
In the main.tex I am using:
\begin{abstract}
\input{sections/abstract}
\noindent\textbf{Keywords.} \pdfKeywords\par
\end{abstract}
\vspace{0.5cm}


\abstractnamefont. Is there any solution using \usepackage{abstract}? – sigma Nov 08 '23 at 09:50