-
Notifications
You must be signed in to change notification settings - Fork 115
/
taxonomy_tree.tex
101 lines (91 loc) · 2.53 KB
/
taxonomy_tree.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
% This file is from Weihao Xia, Jing-Hao Xue. A Survey on 3D-aware Image Synthesis. https://arxiv.org/abs/2210.14267
\documentclass[letterpaper]{article}
%% tikz作图
\usepackage{tikz}
\usepackage{longtable}
\usepackage{tikz-qtree}
\usepackage[edges]{forest}
\usetikzlibrary{trees}
\usepackage{charter} % Use the Charter font
\begin{document}
\begin{figure}[t!]
\centering
\tikzset{
my node/.style={
font=\small,
rectangle,
draw=#1!75,
align=justify,
}
}
\forestset{
% 设置tree格式
my tree style/.style={
for tree={grow=east, % 从左至右
parent anchor=east, %
child anchor=west,
%设置parent node和child node的颜色、宽度等
where level=0{my node=black,text width=1.5em}{},
where level=1{my node=black,text width=8.5em}{},
where level=2{my node=black,text width=8.0em}{},
where level=3{my node=black,text width=15em}{},
l sep=1.5em,
forked edge, %
fork sep=1em, %
edge={draw=black!50, thick},
if n children=3{for children={
if n=2{calign with current}{}}
}{},
tier/.option=level,
}
}
}
% \scalebox{0.65}{
% 逆序
\begin{forest}
my tree style
[All
[3D Generative Models from Single Views
[Conditional 3D GANs
[Semantic Label]
[Image]
]
[Unconditional 3D GANs
[Interactive Editing]
[Efficient and Consistent Rendering
]
[Efficient and Effective Representations]
]
]
[3D Novel View Synthesis from Multiple Views
[Constrained $\rightarrow$ In-the-wild
[Static $\rightarrow$ Dynamic]
[Single $\rightarrow$ Large-scale]
[Calibrated $\rightarrow$ Uncalibrated]
[Dense $\rightarrow$ Sparse]
]
[Speed up]
[Neural Scene Representation]
]
[3D Control of 2D Generative Models
[3D Priors as Constraints
[3D Components into 2D GANs]
[3D Prior Knowledge]
]
[3D Parameters as Controls
[Explicit Control over 3D Parameters]
[Control Factors from Pretrained Models]
]
[3D Control Latent Directions
[Unsupervised]
[Supervised]
]
]
]
\end{forest}
% }
\centering
\caption{A systematic taxonomy.}
\label{fig:phylogenetic_tree}
\end{figure}
\end{document}