main tex file update

This commit is contained in:
Hongyu Yan
2026-02-03 23:38:31 +08:00
parent 72b653f35d
commit 327fc36bf7

108
arxiv-style/main.tex Normal file
View File

@@ -0,0 +1,108 @@
\documentclass{article}
\usepackage{arxiv}
\usepackage[utf8]{inputenc} % allow utf-8 input
\usepackage[T1]{fontenc} % use 8-bit T1 fonts
\usepackage{hyperref} % hyperlinks
\usepackage{url} % simple URL typesetting
\usepackage{booktabs} % professional-quality tables
\usepackage{amsfonts} % blackboard math symbols
\usepackage{nicefrac} % compact symbols for 1/2, etc.
\usepackage{microtype} % microtypography
\usepackage{cleveref} % smart cross-referencing
\usepackage{lipsum} % Can be removed after putting your text content
\usepackage{graphicx}
\usepackage{natbib}
\usepackage{doi}
% 标题
\title{Your Paper Title: A Deep Learning Approach for Something}
% 若不需要日期,取消下面一行的注释
%\date{}
\newif\ifuniqueAffiliation
\uniqueAffiliationtrue
\ifuniqueAffiliation % 标准作者块
\author{
% 这里去掉了 \includegraphics{orcid.pdf} 以防止报错
David S.~Hippocampus \\
Department of Computer Science\\
Cranberry-Lemon University\\
Pittsburgh, PA 15213 \\
\texttt{hippo@cs.cranberry-lemon.edu} \\
\And
Elias D.~Striatum \\
Department of Electrical Engineering\\
Mount-Sheikh University\\
Santa Narimana, Levand \\
\texttt{stariate@ee.mount-sheikh.edu} \\
\And
John Q.~Doe \\
Department of Mathematics\\
University of California, Berkeley\\
Berkeley, CA 94720 \\
\texttt{johndoe@math.berkeley.edu}
}
\fi
% 页眉设置
\renewcommand{\shorttitle}{\textit{arXiv} Template}
%%% PDF 元数据
\hypersetup{
pdftitle={Your Paper Title},
pdfsubject={cs.LG, cs.CR},
pdfauthor={David S.~Hippocampus, Elias D.~Striatum},
pdfkeywords={Keyword1, Keyword2, Keyword3},
}
\begin{document}
\maketitle
\begin{abstract}
Here is the abstract of your paper.
\end{abstract}
% 关键词
\keywords{Machine Learning \and Cyber Defense \and Benchmark \and Methodology}
% 1. Introduction
\section{Introduction}
\label{sec:intro}
Here introduces the background, problem statement, and contribution.
% 2. Related Work
\section{Related Work}
\label{sec:related}
In this section, we review the existing literature.
% 3. Methodology
\section{Methodology}
\label{sec:method}
Here we describe our proposed method in detail.
% 4. Benchmark
\section{Benchmark}
\label{sec:benchmark}
In this section, we present the experimental setup and results.
% 5. Future Work
\section{Future Work}
\label{sec:future}
In this section, we present the future work.
% 6. Conclusion
\section{Conclusion}
\label{sec:conclusion}
In this section, we summarize our contributions and future directions.
% 参考文献
% 确保你的目录下有 references.bib 文件,并且里面有内容
% 否则请先注释掉下面两行,以免编译报错或显示空白
\bibliographystyle{unsrtnat}
\bibliography{references}
\end{document}