-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
59 lines (49 loc) · 1.26 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
% arara: xelatex: { shell: yes, interaction: nonstopmode }
% arara: xelatex: { shell: yes, interaction: nonstopmode }
\documentclass[type=master
]{fduthesis}
\fdusetup{
style = {
font-size = 5,
footnote-style = xits,
bib-backend = bibtex,
bib-resource = {thesis.bib}
},
info = {
title = {论文标题},
title* = {英文标题},
degree = professional,
author = {作者},
supervisor = {指导老师},
department = {软件学院},
major = {软件工程},
student-id = {16222010xxx},
keywords = {中文关键词},
keywords* = {keywords}
}
}
\usepackage[pdf]{graphviz}
\begin{document}
\frontmatter
\tableofcontents
\begin{abstract}
如\cite{samar1999single}中所说,如今基于 web 的应用越来越多……
\end{abstract}
\chapter{欢迎}
\section{Welcome to fduthesis!}
你好,\LaTeX{}!
\begin{figure}[htb]
\centering
\digraph[scale=0.5]{xabcd}{rankdir=TB;
x -> a [label="a.com"]
x -> b [label="b.com"]
x -> c [label="c.com"]
x -> d [label="d.com"]
}
\caption[大公司的域名分布]{%
大公司的域名分布 }
\end{figure}
\backmatter
\printbibliography
\end{document}
\end{document}