\documentclass[11pt,a4paper]{article} % Biomedical Engineering Conference 2026 (BEC2026)

% Packages
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{amsmath, amssymb}
\usepackage{setspace}
\usepackage{cite}

% Page layout
\geometry{margin=1in}
\onehalfspacing

% Title
\title{\textbf{Your Paper Title Goes Here}\\
	\vspace{0.5em}
	\large Biomedical Engineering Conference 2026 (BEC2026)}

% Authors and affiliations
\author{
	First Author$^{1}$, Second Author$^{2}$, Third Author$^{1,2}$\\[0.5em]
	\small $^{1}$Department of Biomedical Engineering, University Name, City, Country\\
	\small $^{2}$Research Institute or Lab, Organization, City, Country\\
	\small Corresponding author: email@domain.com
}

\date{} % Remove date

\begin{document}
	
	\maketitle
	
	% Abstract
	\begin{abstract}
		This is a sample abstract for the Biomedical Engineering Conference 2026 (BEC2026).
		Briefly describe the purpose of the study, methods used, key results, and major conclusions.
		Keep it concise (typically 150--250 words).
	\end{abstract}
	
	% Keywords
	\noindent \textbf{Keywords:} biomedical engineering, signal processing, medical imaging, artificial intelligence
	
	\vspace{1em}
	
	% Sections
	\section{Introduction}
	Introduce the background, motivation, and objectives of your work.
	Explain the problem and its relevance in biomedical engineering.
	
	\section{Materials and Methods}
	Describe the methodology, experimental setup, data acquisition, and analysis techniques.
	Include equations if necessary:
	\begin{equation}
		y(t) = x(t) * h(t)
	\end{equation}
	
	\section{Results}
	Present your findings clearly using text, tables, and figures.
	
	\begin{figure}[h!]
		\centering
		\includegraphics[width=0.6\textwidth]{example-image}
		\caption{Example figure.}
		\label{fig:example}
	\end{figure}
	
	\section{Discussion}
	Interpret the results, compare with previous studies, and highlight contributions.
	
	\section{Conclusion}
	Summarize the key findings and suggest future work.
	
	% References
	\begin{thebibliography}{9}
		
		\bibitem{ref1}
		A. Author, \textit{Title of the paper}, Journal Name, vol. 10, no. 2, pp. 100--110, 2023.
		
		\bibitem{ref2}
		B. Author and C. Author, \textit{Book Title}, Publisher, 2020.
		
	\end{thebibliography}
	
\end{document}