LaTeX Templates
Copy-paste starter templates for common document types.
Article
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\title{Title}
\author{Author}
\date{\today}
\begin{document}
\maketitle
\section{Introduction}
\end{document}IEEE Conference
\documentclass[conference]{IEEEtran}
\usepackage{amsmath,graphicx}
\title{Paper Title}
\author{Author Name}
\begin{document}
\maketitle
\begin{abstract}
Abstract text.
\end{abstract}
\section{Introduction}
\bibliographystyle{IEEEtran}
\bibliography{refs}
\end{document}Beamer Slides
\documentclass{beamer}
\usetheme{Madrid}
\title{Presentation Title}
\author{Author}
\date{\today}
\begin{document}
\frame{\titlepage}
\begin{frame}{Outline}
\tableofcontents
\end{frame}
\section{Introduction}
\begin{frame}{Introduction}
Content here.
\end{frame}
\end{document}Letter
\documentclass{letter}
\signature{Your Name}
\address{Your Address}
\begin{document}
\begin{letter}{Recipient}
\opening{Dear Sir/Madam,}
Letter body.
\closing{Sincerely,}
\end{letter}
\end{document}Thesis
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx,amsmath,hyperref}
\title{Thesis Title}
\author{Author Name}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\chapter{Introduction}
\chapter{Literature Review}
\chapter{Methodology}
\chapter{Results}
\chapter{Conclusion}
\bibliography{refs}
\bibliographystyle{plain}
\end{document}CV
\documentclass[11pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{enumitem}
\begin{document}
\begin{center}
{\Large\textbf{Your Name}}\\
vspace{4pt}
email@example.com | (123) 456-7890
\end{center}
\section*{Education}
\textbf{University Name} \hfill 2020--2024\\
B.S. in Computer Science
\section*{Experience}
\textbf{Company} \hfill 2024--Present\\
Software Engineer
\end{document}