\documentclass[twocolumn,10pt]{article}
\usepackage{multicol}
\usepackage{abstract}
\usepackage{lipsum}
% Journal formatting
\setlength{\columnsep}{15pt}
\setlength{\columnseprule}{0.3pt}
% Custom abstract
\renewcommand{\abstractnamefont}{\normalfont\bfseries}
\renewcommand{\abstracttextfont}{\normalfont\small\itshape}
\begin{document}
% Single column for title and abstract
\twocolumn[
\begin{@twocolumnfalse}
\title{Research Paper Title: A Comprehensive Study}
\author{Author Name$^1$, Co-Author Name$^2$}
\date{}
\maketitle
\begin{abstract}
This is the abstract of the research paper that spans the full width before the two-column layout begins. It provides a concise summary of the research methodology, findings, and conclusions.
\end{abstract}
\vspace{10pt}
\textbf{Keywords:} LaTeX, typography, academic writing, columns
\vspace{20pt}
\end{@twocolumnfalse}
]
\section{Introduction}
\lipsum[1-2]
\section{Literature Review}
\lipsum[3-4]
\section{Methodology}
\lipsum[5-6]
\section{Results}
\lipsum[7-8]
\begin{table}[h]
\centering
\begin{tabular}{lcc}
\hline
Method & Accuracy & Time \\
\hline
A & 95\% & 10s \\
B & 92\% & 5s \\
\hline
\end{tabular}
\caption{Results comparison}
\end{table}
\section{Discussion}
\lipsum[9-10]
\section{Conclusion}
\lipsum[11]
\end{document}