Research paper template in LaTeX
The standard structure of a research paper: abstract, introduction, methodology, results, discussion and bibliography. A good base for a term paper, a seminar report or a preprint, with no package setup.
- Abstract, sections and subsections in a classic layout
- Bibliography with sample entries
- Citations and cross-references (\cite, \ref) out of the box
- Clean typography with babel
Template code
% --- CamteX: Research article ---
\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{xcolor}
\usepackage{geometry}
\geometry{a4paper, margin=2.5cm}
\title{Paper title}
\author{Full Name}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
A short summary of the paper.
\end{abstract}
\section{Introduction}
Introduction to the topic and literature review.
\section{Methodology}
Description of the methods used.
\section{Results}
Presentation of the results.
\section{Discussion and conclusions}
Discussion of the results and summary.
\begin{thebibliography}{9}
\bibitem{ref1} Author, \textit{Title}, Publisher, year.
\end{thebibliography}
\end{document}How to use this template?
- Copy the code with the button above.
- Paste it into the CamteX editor or a new Overleaf project.
- Fill in your details and content - the structure and preamble are ready.
- Compile to PDF in one click.
Drawing formulas is faster than typing them.
Draw a formula, table or chart - CamteX AI turns it into ready LaTeX and inserts it into your document.