-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
97 lines (79 loc) · 2.06 KB
/
main.tex
File metadata and controls
97 lines (79 loc) · 2.06 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{fullpage}
\usepackage{hyperref}
\usepackage{subfig}
\usepackage{graphicx}
\usepackage{xcolor}
\let\MYorigsubfloat\subfloat
\renewcommand{\subfloat}[2][\relax]{\MYorigsubfloat[]{#2}}
\newcommand{\sizeBranches}{.49\textwidth}
\newcommand{\figPosition}{h!}
\newcommand{\fourFigBranch}[3]{
\begin{figure*}[#1]
\subfloat[]{\includegraphics[width=\sizeBranches]{img/#2_try.pdf}}
\hfill
\subfloat[]{\includegraphics[clip, width=\sizeBranches]{img/#2_mozilla_inbound.pdf}}
\hfill
\subfloat[]{\includegraphics[clip, width=\sizeBranches]{img/#2_mozilla_central.pdf}}
\hfill
\subfloat[]{\includegraphics[clip, width=\sizeBranches]{img/#2_mozilla_release.pdf}}\\
\caption{\label{#2} #3}
\end{figure*}
\newpage
}
\newcommand{\threeTypesBranch}[8]{
\ifx \hideAll \undefined
\ifx \hideTitle \undefined
\subsection{All pushes}
\fi
#4
\fourFigBranch{#1}{#2}{#3}
\fi
\ifx \hideMercurial \undefined
\ifx \hideTitle \undefined
\subsection{Pushes found on mercurial}
\fi
#6
\fourFigBranch{#1}{#2_MERCURIAL}{#5}
\fi
\ifx \hideCount \undefined
\ifx \hideTitle \undefined
\subsection{Pushes NOT found on mercurial}
\fi
#8
\fourFigBranch{#1}{#2_COUNT}{#7}
\fi
}
\def\hideAll{ok}
%\def\hideMercurial{ok}
\def\hideCount{ok}
\def\hideTitle{ok}
\newcounter{QCount}
\newcommand{\kyle}[1]{\textcolor{red}{{\it [Kyle Q\arabic{QCount}\stepcounter{QCount}: #1]}}}
\title{Mozilla's data analysis - intermediate results}
\author{Doriane Olewicki }
\date{May 2019}
\begin{document}
\maketitle
\tableofcontents
\newpage
\input{KYLE.tex}
%\input{intro.tex}
\input{overview.tex}
\input{build_push.tex}
\input{commit_push.tex}
\input{build_commit.tex}
\input{price_commit.tex}
\input{wait_push.tex}
\input{type_result.tex}
\input{type_platform.tex}
\input{platform_result.tex}
\input{platform_fail.tex}
\input{reason.tex}
\input{hour.tex}
\input{dayweek.tex}
\input{build_rw.tex}
% \input{cumulative_build.tex}
% \input{showpoints.tex}
\end{document}