I am trying to create an abstract like below:
How can an abstract be moved to the right and have lines placed above it? Also is it possible to align the 'keywords'.
For the first there is an answer here and the second there are answers here and here. How can I combine these to get both please?
This is the text so far
\documentclass[a4paper, twocolumn]{article}
\usepackage{lipsum}
\usepackage[paperwidth=8.5in, paperheight=11in]{geometry}
% move abstract in a bit
% https://tex.stackexchange.com/questions/151583/how-to-adjust-the-width-of-abstract
\renewenvironment{abstract}
{\small
\list{}{%
\setlength{\leftmargin}{0.25\linewidth}% <---------- CHANGE HERE
\setlength{\rightmargin}{0pt}%
}%
\item\relax }
{\endlist}
\title{ The title}
\author{} \date{}
\begin{document}
% https://tex.stackexchange.com/questions/28109/how-can-i-place-a-one-column-abstract-in-a-two-column-document
\twocolumn[
\begin{@twocolumnfalse}
\maketitle
\begin{abstract}
{\lipsum[1] \lipsum[2]}
\end{abstract}
\hspace{0.245\linewidth} \small keywords : {\lipsum[2]} \vspace{1cm}
\end{@twocolumnfalse}
]
\section{Intro}
\lipsum
\end{document}
Which produces a correctly moved abstract but unaligned 'keywords'. I have been unable to also add the lines. Thanks for any help.



@{} p{12cm} @{}– Werner Sep 27 '21 at 22:38