-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.tex
302 lines (254 loc) · 9.13 KB
/
example.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
\documentclass{cumcmthesis}
%\documentclass[withoutpreface,bwprint]{cumcmthesis} %去掉封面与编号页。
%声明:本模板基于CUMCMThesis项目修改而来,适用于全国大学生信息安全竞赛作品赛
%仅供学习交流使用,侵删
%author:ShenaoW from XDU SCE
%cooperator:PoliScope项目组
%email:[email protected]
%date:2022.05.24
\usepackage[framemethod=TikZ]{mdframed}
\usepackage{url} % 网页链接
\usepackage{subcaption} % 子标题
\usepackage{colortbl}
\usepackage{color}
\definecolor{tabcolor}{RGB}{42, 110, 63} % 这里就是我们怎么定义我们的表格的线宽颜色
% 伪代码
\usepackage[noend]{algpseudocode}
\usepackage{algorithmicx,algorithm}
% 页眉页脚
\usepackage{lastpage}
\usepackage{fancyhdr} % 导入fancyhdr包
\pagestyle{fancy}
% 图表、公式按章节编号
\usepackage{amsmath}
\numberwithin{equation}{section} % 公式按章节编号
\numberwithin{figure}{section} % 图按章节编号
\numberwithin{table}{section} % 表按章节编号
% 设置封面页内容
\titlename{PoliScope:安卓应用隐私政策与权限调用一致性的合规检测}
\email{[email protected]}
\yearinput{2022}
\monthinput{05}
\dayinput{24}
% 页眉设置
\fancyhead[L]{}
\fancyhead[R]{}
\fancyhead[C]{\zihao{-5} PoliScope:安卓应用隐私政策与权限调用一致性的合规检测}
% 页脚设置
%\fancyfoot[L]{左页脚}
\fancyfoot[C]{\zihao{-5} 第\thepage 页 \enspace 共 \pageref{LastPage} 页} % 页码
%\fancyfoot[R]{右页脚}
\renewcommand{\headrulewidth}{0.5pt} % 页眉分隔线宽度0.5磅
%\renewcommand{\footrulewidth}{0.5pt} % 页脚分隔线宽度0.5磅
\begin{document}
% 将\usepackage{ulem}宏包中的\emph{}还原为斜体
\normalem
% 生成封面页和填写说明页
\maketitle
% 生成目录
\newpage
\thispagestyle{empty}
\tableofcontents
\newpage
% 生成图目录
\thispagestyle{empty}
\listoffigures
\newpage
% 生成表目录
\thispagestyle{empty}
\listoftables
\newpage
% 从此处开始编页
\setcounter{page}{1}
%中文摘要
\begin{cnabstract}
(请简要说明创作本作品之动机、功能、特性、创新处、实用性)
\cnkeywords{隐私合规 \quad 命名实体识别 \quad 静态分析 \quad 动态分析}
\end{cnabstract}
%英文摘要
\begin{enabstract}
\enkeywords{Privacy Compliance \quad NER \quad Static Analysis \quad Dynamic Analysis}
\end{enabstract}
\section{作品概述}
(建议包括:背景分析、相关工作、特色描述及应用前景分析等)
\subsection{背景分析}
\subsection{相关工作}
\subsection{研究目标}
\subsection{特色描述}
\subsection{应用前景分析}
\newpage
\section{作品设计与实现}
(建议包括系统方案、实现原理、硬件框图、软件流程、功能、指标等)
\begin{table}[htbp]\zihao{5}
%\begin{table}[htbp]\small
\centering
\caption{一个简单的表格示例}
% \arrayrulecolor{tabcolor}
\begin{tabular}{cccc}
\toprule[1pt]
\toprule[1pt]
\textbf{实体标签} & \textbf{实体名称} & \textbf{实体举例} & \textbf{实体描述}\\
\midrule
\midrule
CALENDAR & 日历权限组 & 设备日历信息、读取日历 & 读/写/访问日历等权限 \\
\hline
CAMERA & 相机权限组 & 拍摄照片、访问摄像头 & 调用相机相关权限 \\
\hline
CONTACTS & 联系人权限组 & 查看通讯录、账户列表 & 读/写通讯录、账户列表等 \\
\hline
LOCATION & 位置权限组 & 定位服务、基站定位 & 获取粗略/精确位置等权限 \\
\hline
MICROPHONE & 麦克风权限组 & 录音,设备麦克风 & 访问麦克风及音频录制等权限 \\
\hline
PHONE & 手机状态权限组 & IDFA、SIM卡序列号 & 获取设备状态、通话记录等 \\
\hline
SENSORS & 传感器权限组 & 步数统计、运动与健康 & 访问设备传感器相关权限 \\
\hline
SMS & 短信权限组 & 短信授权、发送短信 & 读/写短信相关权限 \\
\hline
STORAGE & 存储权限组 & 访问相册、外部存储 & 读/写存储空间相关权限 \\
\bottomrule[1pt]
\bottomrule[1pt]
\end{tabular}
\label{tab:实体标签}%
\end{table}%
\begin{figure}[h]
\centering
\includegraphics[width=0.85\linewidth]{ BiLSTM-CRF }
\caption{ 图片示例 }
\label{fig:BiLSTM-CRF}
\end{figure}
\newpage
\section{作品测试与分析}
(建议包括测试方案、测试环境搭建、测试设备、测试数据、结果分析等)
\newpage
\section{创新性说明}
(本部分内容主要说明作品的创新性)
\newpage
\section{总结}
\newpage
%参考文献
\begin{thebibliography}{9}%宽度9
\setlength{\itemsep}{-1mm} %% 表示参考文献间距为行间距
\bibitem{工信部}工业和信息化部. 互联网和相关服务业运行情况 [EB/OL]. [2022-04-29]. https://www.miit.gov.cn/gxsj/tjfx/hlw/index.html.
\bibitem{中消协}中国消费者协会. 100款App个人信息收集与隐私政策测评报告 [EB/OL]. [2018-11-28]. https://cca.cn/jmxf/detail/28310.html.
\bibitem{FlowDroid}Arzt S, Rasthofer S, Fritz C, et al. Flowdroid: Precise context, flow, field, object-sensitive and lifecycle-aware taint analysis for android apps[J]. Acm Sigplan Notices, 2014, 49(6): 259-269.
\end{thebibliography}
\newpage
%附录
%\begin{appendices}
%
%\section{模板所用的宏包}
%\begin{table}[htbp]
% \centering
% \caption{宏包罗列}
% \begin{tabular}{ccccc}
% \toprule
% \multicolumn{5}{c}{模板中已经加载的宏包} \\
% \midrule
% amsbsy & amsfonts & {amsgen} & {amsmath} & {amsopn} \\
% amssymb & amstext & {appendix} & {array} & {atbegshi} \\
% atveryend & auxhook & {bigdelim} & {bigintcalc} & {bigstrut} \\
% bitset & bm & {booktabs} & {calc} & {caption} \\
% caption3 & CJKfntef & {cprotect} & {ctex} & {ctexhook} \\
% ctexpatch & enumitem & {etexcmds} & {etoolbox} & {everysel} \\
% expl3 & fix-cm & {fontenc} & {fontspec} & {fontspec-xetex} \\
% geometry & gettitlestring & {graphics} & {graphicx} & {hobsub} \\
% hobsub-generic & hobsub-hyperref & {hopatch} & {hxetex} & {hycolor} \\
% hyperref & ifluatex & {ifpdf} & {ifthen} & {ifvtex} \\
% ifxetex & indentfirst & {infwarerr} & {intcalc} & {keyval} \\
% kvdefinekeys & kvoptions & {kvsetkeys} & {l3keys2e} & {letltxmacro} \\
% listings & longtable & {lstmisc} & {ltcaption} & {ltxcmds} \\
% multirow & nameref & {pdfescape} & {pdftexcmds} & {refcount} \\
% rerunfilecheck & stringenc & {suffix} & {titletoc} & {tocloft} \\
% trig & ulem & {uniquecounter} & {url} & {xcolor} \\
% xcolor-patch & xeCJK & {xeCJKfntef} & {xeCJK-listings} & {xparse} \\
% xtemplate & zhnumber & & & \\
% \bottomrule
% \end{tabular}%
% \label{tab:addlabel}%
%\end{table}%
%
%以上宏包都已经加载过了,不要重复加载它们。
%
%\section{排队算法--matlab 源程序}
%
%\begin{lstlisting}[language=matlab]
%kk=2;[mdd,ndd]=size(dd);
%while ~isempty(V)
%[tmpd,j]=min(W(i,V));tmpj=V(j);
%for k=2:ndd
%[tmp1,jj]=min(dd(1,k)+W(dd(2,k),V));
%tmp2=V(jj);tt(k-1,:)=[tmp1,tmp2,jj];
%end
%tmp=[tmpd,tmpj,j;tt];[tmp3,tmp4]=min(tmp(:,1));
%if tmp3==tmpd, ss(1:2,kk)=[i;tmp(tmp4,2)];
%else,tmp5=find(ss(:,tmp4)~=0);tmp6=length(tmp5);
%if dd(2,tmp4)==ss(tmp6,tmp4)
%ss(1:tmp6+1,kk)=[ss(tmp5,tmp4);tmp(tmp4,2)];
%else, ss(1:3,kk)=[i;dd(2,tmp4);tmp(tmp4,2)];
%end;end
%dd=[dd,[tmp3;tmp(tmp4,2)]];V(tmp(tmp4,3))=[];
%[mdd,ndd]=size(dd);kk=kk+1;
%end; S=ss; D=dd(1,:);
% \end{lstlisting}
%
% \section{规划解决程序--lingo源代码}
%
%\begin{lstlisting}[language=c]
%kk=2;
%[mdd,ndd]=size(dd);
%while ~isempty(V)
% [tmpd,j]=min(W(i,V));tmpj=V(j);
%for k=2:ndd
% [tmp1,jj]=min(dd(1,k)+W(dd(2,k),V));
% tmp2=V(jj);tt(k-1,:)=[tmp1,tmp2,jj];
%end
% tmp=[tmpd,tmpj,j;tt];[tmp3,tmp4]=min(tmp(:,1));
%if tmp3==tmpd, ss(1:2,kk)=[i;tmp(tmp4,2)];
%else,tmp5=find(ss(:,tmp4)~=0);tmp6=length(tmp5);
%if dd(2,tmp4)==ss(tmp6,tmp4)
% ss(1:tmp6+1,kk)=[ss(tmp5,tmp4);tmp(tmp4,2)];
%else, ss(1:3,kk)=[i;dd(2,tmp4);tmp(tmp4,2)];
%end;
%end
% dd=[dd,[tmp3;tmp(tmp4,2)]];V(tmp(tmp4,3))=[];
% [mdd,ndd]=size(dd);
% kk=kk+1;
%end;
%S=ss;
%D=dd(1,:);
% \end{lstlisting}
%\end{appendices}
%算法模板
%\begin{algorithm}[t]
% \caption{algorithm caption} %算法的名字
% \hspace*{0.02in} {\bf Input:} %算法的输入, \hspace*{0.02in}用来控制位置,同时利用 \\ 进行换行
% input parameters A, B, C\\
% \hspace*{0.02in} {\bf Output:} %算法的结果输出
% output result
% \begin{algorithmic}[1]
% \State some description % \State 后写一般语句
% \For{condition} % For 语句,需要和EndFor对应
% \If{condition} % If 语句,需要和EndIf对应
% \Else
% \EndIf
% \EndFor
% \While{condition} % While语句,需要和EndWhile对应
% a += 1
% \EndWhile
% \State\Return result
% \end{algorithmic}
%\end{algorithm}
%代码块模板
%\begin{lstlisting}[language=python]
%app_tuple_list = []
%try:
%browser.get(url)
%soup = BeautifulSoup(browser.page_source, features='lxml')
%except requests.HTTPError:
%return "There are some errors when get the download page!"
%all_app_tag = soup.find('ul', {"class": "applist", "id": "all-applist"})
%app_tag = all_app_tag.next
%\end{lstlisting}
\end{document}