-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaicmu_common.sty
60 lines (49 loc) · 1.42 KB
/
aicmu_common.sty
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{aicmu_common}[2023/09/24 AICMU-style two-column style]
% 设置页面布局
\usepackage[top=2cm, bottom=2cm, left=1.5cm, right=1.5cm, columnsep=0.8cm]{geometry}
% 设置字体
\usepackage{times}
% 设置标题样式
\usepackage{titlesec}
\titleformat{\section}{\normalfont\fontsize{12}{15}\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}{\normalfont\fontsize{10}{12}\bfseries}{\thesubsection}{1em}{}
\titleformat{\subsubsection}{\normalfont\fontsize{10}{12}\bfseries}{\thesubsubsection}{1em}{}
% 设置段落间距
\setlength{\parskip}{0.5em}
% 设置行间距
\usepackage{setspace}
\setstretch{1.1}
% 设置页眉页脚
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\cfoot{\thepage}
% 设置参考文献样式
\usepackage[backend=biber, style=ieee]{biblatex}
\addbibresource{references.bib} % 替换为你的参考文献文件名
% 设置图表样式
\usepackage{caption}
\captionsetup[table]{labelsep=period}
\captionsetup[figure]{labelsep=period}
% 设置代码样式
\usepackage{listings}
\lstset{
basicstyle=\ttfamily\footnotesize,
breaklines=true,
frame=single,
numbers=left,
numberstyle=\tiny,
numbersep=5pt,
language=Python % 替换为你使用的编程语言
}
% 设置超链接样式
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
}
\endinput