-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.tex
More file actions
executable file
·81 lines (69 loc) · 1.92 KB
/
template.tex
File metadata and controls
executable file
·81 lines (69 loc) · 1.92 KB
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
\documentclass{article}
\usepackage{graphicx}
\usepackage{float}
\begin{document}
\section*{Image Collection}
\IfFileExists{results/heaps/heaps.pdf}{
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{results/heaps/heaps.pdf}
\caption{Heaps output}
\end{figure}
}{}
\IfFileExists{results/panacus/histgrowth.node.pdf}{%
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{results/panacus/histgrowth.node.pdf}
\caption{Panacus output}
\end{figure}
}{}
\IfFileExists{results/tree/tree.png}{%
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{results/tree/tree.png}
\caption{Tree}
\end{figure}
}{}
\IfFileExists{results/vg/out.vg.png}{%
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{results/vg/out.vg.png}
\caption{Vg}
\end{figure}
}{}
\IfFileExists{results/viz2/out.viz.png}{%
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{results/viz2/out.viz.png}
\caption{viz2}
\end{figure}
}{}
\IfFileExists{results/pangrowth/pangrowth.pdf}{%
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{results/pangrowth/pangrowth.pdf}
\caption{Pangrowth Growth}
\end{figure}
}{}
\IfFileExists{results/pangrowth/p_core.pdf}{%
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{results/pangrowth/p_core.pdf}
\caption{Pangrowth Core}
\end{figure}
}{}
\IfFileExists{results/newimage1.pdf}{%
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{results/newimage1.pdf}
\caption{New Image 1}
\end{figure}
}{}
\IfFileExists{results/newimage2.png}{%
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{results/newimage2.png}
\caption{New Image 2}
\end{figure}
}{}
\end{document}