-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
188 lines (132 loc) · 5.4 KB
/
main.tex
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
%
% ayaka-notes © Github 保留源代码所有权利
% ayaka-notes © Github All Right Reserved
%
% openany可以节约纸张,
% 如果没有openany chapter每次都是从奇数页开始,会很浪费
\documentclass[UTF8,openany,AutoFakeBold]{ctexbook}
% 语言设置哦
% Replace `english' with e.g. `spanish' to change the document language
\usepackage[UTF8, scheme = plain]{ctex}
\usepackage{lipsum}
% tabularx 用于创建自动调整列宽的表格。它提供了一个新的表格环境 tabularx,其中的某些列可以根据需要自动调整宽度,以确保整个表格适应给定的总宽度。
% \begin{tabularx}{\textwidth}{|X|X|X|}
% \end{tabularx}
\usepackage{tabularx}
% 特殊符号字体,比如 π 就是的
\usepackage{pifont}
\usepackage{caption}
\usepackage[dvipsnames]{xcolor} % 更全的色系
\usepackage{listings} % 排代码用的宏包
% 这个是代码块的配置,我自己比较喜欢的模版,淡黄背景
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% listings设置
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\lstset{
% language = R,
backgroundcolor = \color{yellow!10}, % 背景色:淡黄
basicstyle = \small\ttfamily, % 基本样式 + 小号字体
rulesepcolor= \color{gray}, % 代码块边框颜色
breaklines = true, % 代码过长则换行
numbers = left, % 行号在左侧显示
numberstyle = \small, % 行号字体
keywordstyle = \color{blue}, % 关键字颜色
commentstyle =\color{teal}, % 注释颜色
stringstyle = \color{red!100}, % 字符串颜色
frame = shadowbox, % 用(带影子效果)方框框住代码块
showspaces = false, % 不显示空格
columns = fixed, % 字间距固定
%escapeinside={<@}{@>} % 特殊自定分隔符:<@可以自己加颜色@>
morekeywords = {as}, % 自加新的关键字(必须前后都是空格)
deletendkeywords = {compile} % 删除内定关键字;删除错误标记的关键字用deletekeywords删!
}
% 设置的纸张大小、边距信息
% Set page size and margins
% Replace `letterpaper' with `a4paper' for UK/EU standard size
\usepackage[a4paper,top=2cm,bottom=2cm,left=3cm,right=3cm,marginparwidth=1.75cm]{geometry}
% 可以自动分页的长表格
\usepackage{longtable}
% graphicx 主要用于插入和处理图形 使用方法是
% \includegraphics[width=0.8\textwidth]{filename}
\usepackage{graphicx}
\usepackage[colorlinks=true]{hyperref}
% linkcolor=pink
% 文字下划线
\usepackage{xeCJKfntef}
% 随机文本生成
\usepackage{zhlipsum}
% 公式多列展示
\usepackage{multicol}
% 矩阵画虚线
\usepackage{amsmath}
% 同时需要导入arydshln宏包
\usepackage{arydshln}
% 画函数图像
\usepackage{pgfplots}
\usepackage{tikz}
% 积分的时候带圆圈的积分符号
\usepackage{esint}
% 用于在页面上添加内容,封面的方框就是用的这个
\usepackage{atbegshi}
% 空集符号
\usepackage{amssymb}
% 并排显示图片,列表,是一个分栏的功能
\usepackage{subcaption}
% 限制图片或者表格在文字下方
\usepackage{float}
% 圆圈的数字
\usepackage{circledsteps}
% quote环境设置
\usepackage{etoolbox}
% 表格里面合并单元格用到的
\usepackage{multirow}
% 修改 quote 环境的定义以包括楷体字体和下划线
\AtBeginEnvironment{quote}{\kaishu}
\pgfplotsset{compat=1.18}
% 确保part一定要是在奇数页面
\let\originalpart=\part
\def\part{\cleardoublepage\originalpart}
% 元数据,作者和标题
\title{\heiti 文章的标题\\ 副标题}
\author{\itshape \href{https://github.com/ayaka-notes}{ayaka-notes}}
% 支持原生的汉字公式
\xeCJKsetup{CJKmath=true}
\begin{document}
% 封面
\AtBeginShipoutNext{
\AtBeginShipoutAddToBox{
\fbox{%
\parbox{4.9cm}{%
\raggedright % 左对齐文本
Github \copyright Ayaka-notes \the\year \\
请勿用于商业印刷或出版用途
}%
}%
}
}
\maketitle
% % 文档的前言部分
% \frontmatter
% 如需序言在这里加 \chapter{序言}
% 切换到正文部分
% \mainmatter
% 目录
\tableofcontents
% 实际编写中,请使用分文件编写哦!
% 我这里只是一个Demo!
\part{第一部分的标题}
\chapter{第一章的标题}
\section{第一节的标题}
\subsection{第一小节的标题}
小车正穿行在落基山脉的蜿蜒曲折的盘山公路上,克利斯朵夫·李维静静地望着窗外,发现每当车子即将行驶到无路的关头,路边都会出现一块交通指示牌∶“前方转弯!”或“注意!急转弯”。而拐过每一道弯之后,前方照例又是一片柳暗花明、豁然开朗。山路弯弯,峰回路转,“前方转弯”几个大字一次次地冲击着他的眼球,也渐渐叩开了他的心扉:原来,不是路已到了尽头,而是该转弯了。 路在脚下,更在心中,心随路转,心路常宽。学会转弯也是人生的智慧,因为挫折往往是转折,危机同时是转机。
M: Excuse me. Can you tell me how much the shirt is ?
W: Yes, it’s nine fifteen.
\subsection{第二小节的标题}
这是一个行间的公式
$$
1+1 = 2
$$
这是一个行内公式$1+1=2$
\subsection{第三小节的标题}
「雪霁银妆素,桔高映琼枝」
\end{document}