1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
\documentclass[11pt]{report} %设置正文的字体大小 以及文章类型 常用report article IEEEtran等
%ASMATH公式 graphicx支持图片IEEEtran
\usepackage{amsmath, amsthm, amssymb, graphicx}
\usepackage[bookmarks=true, colorlinks, citecolor=blue, linkcolor=black]{hyperref}
\usepackage{cite}% \cite{bibtex1,bibtex2,bibtex3} 饮用后可以变为--> [1]-[3]
\usepackage{multicol} % 用于实现在同一页中实现不同的分栏,导包
\setlength\columnsep{0.6cm} % 设置两栏之间的间距为0.6cm
\columnseprule=0.0pt % 实现插入分隔线,用于分栏
\begin{multicols}{2} % 分两栏 若花括号中为3则是分三栏
\end{multicols}
\usepackage{geometry}% 页面布局设置
\geometry{left=1.00in,right=1.00in,top=0.75in,bottom=0.75in} %页面布局设置
% 导言区
\begin{document}
%栏外标题!!!
\markboth{Random process assignment,~Vol .~1, No.~1,~12~2024}{Shell \MakeLowercase{\textit{et al.}}: Paper Title}
% 题目 无人机运动控制中随机控制与优化的发展现状综述
\title{\textbf{A review of the research status of Stochastic and interference in UAV motion control}}%作者 标题加粗
\author{}%作者
\date{2024.12.11}%时间
\maketitle
%摘要部分
\begin{abstract}
\end{abstract}
\section{INTRODUCTION}
%正文部分
\begin{thebibliography}{00}%引用
\end{thebibliography}
\end{document}
|