Copy it, or hit Open in editor to load it into the live preview and start editing immediately.
% ── IEEE-style conference paper ──────────────────────────────────────────
% Compiles with any standard pdflatex install.
% For official IEEE submission, download IEEEtran.cls from:
% https://www.ieee.org/conferences/publishing/templates.html
% Then replace the first line with: \documentclass[conference]{IEEEtran}
\documentclass[10pt,twocolumn,a4paper]{article}
\usepackage[margin=1.8cm,columnsep=0.5cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,amssymb}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{microtype}
\usepackage[hidelinks]{hyperref}
\usepackage{url}
\usepackage{cite}
\pagestyle{empty}
\begin{document}
\title{\textbf{Title of Your IEEE-Style Paper}\\
\large Conference Name Year}
\author{
First Author$^{1}$,\quad Second Author$^{2}$\\[0.3em]
{\small $^{1}$Department of XYZ, University A, City, Country}\\
{\small $^{2}$Department of ABC, University B, City, Country}\\
{\small \texttt{first@univ-a.edu}, \texttt{second@univ-b.edu}}
}
\date{}
\maketitle
\thispagestyle{empty}
\begin{abstract}
This paper presents\ldots{} (150 words max for IEEE). Summarize the problem,
your approach, and key results clearly and concisely.
\end{abstract}
\noindent\textbf{Index Terms} --- machine learning, optimization, neural networks.
\section{Introduction}
Introduce the problem and your contributions.
Recent work \cite{author2023} has shown that\ldots{}
\section{Related Work}
Discuss related approaches and their limitations.
\section{Proposed Method}
\subsection{Problem Formulation}
Let $\mathbf{x} \in \mathbb{R}^d$ denote the input. We optimize:
\[
\min_{\theta} \mathcal{L}(\theta) = \frac{1}{n}\sum_{i=1}^{n}
\ell(f_\theta(\mathbf{x}_i), y_i)
\]
\subsection{Algorithm}
Describe your algorithm here.
\section{Experiments}
\subsection{Setup}
We evaluate on [datasets]. All experiments use [hardware/software].
\subsection{Results}
Table~\ref{tab:results} shows that our method achieves state-of-the-art results.
\begin{table}[ht]
\centering
\caption{Performance comparison on [dataset].}
\label{tab:results}
\begin{tabular}{@{}lcc@{}}
\toprule
Method & Acc.\,(\%) & FLOPs \\
\midrule
Baseline~\cite{author2023} & 88.2 & 2.3G \\
\textbf{Ours} & \textbf{93.1} & 2.5G \\
\bottomrule
\end{tabular}
\end{table}
\section{Conclusion}
We proposed a method that achieves state-of-the-art results on [task].
Future work includes [directions].
\begin{thebibliography}{1}
\bibitem{author2023}
A.~Author and B.~Author,
``Title of referenced paper,''
\textit{IEEE Trans. Pattern Anal. Mach. Intell.},
vol.~45, no.~1, pp.~1--10, Jan. 2023.
\end{thebibliography}
\end{document}