-
Notifications
You must be signed in to change notification settings - Fork 1
/
logo.tex
64 lines (55 loc) · 1.94 KB
/
logo.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
% arara: lualatex
\RequirePackage{luatex85} % Needed to work around a bug with lualatex and standalone
\documentclass[tikz]{standalone}
\usetikzlibrary{positioning,calc}
\usepackage{fontspec}
\setmainfont{FELIXTI.TTF}
\usepackage{graphicx}
\begin{document}
\begin{tikzpicture}
\definecolor{b1}{RGB}{15,88,145}
\definecolor{b2}{RGB}{82,155,200}
\definecolor{uconnblue}{RGB}{0,14,47}
\node[
font=\Huge,
align=center,
text=uconnblue,
]
at (0,0) (text) {COMBUSTION\\DIAGNOSTICS\\LABORATORY};
\node[anchor=west] at (text.east) (flame) {\begin{tikzpicture}
\coordinate (a) at (0,0) ;
\coordinate (b) at ($(a)+(35:3)$) ;
\coordinate (c) at ($(a)+(120:1.5)$);
\coordinate (d) at (0.5,3) ;
\coordinate (e) at ($(a)+(145:2.5)$);
\coordinate (f) at ($(a)+(60:2.25)$);
\coordinate (g) at ($(a)-(0.1,0)$) ;
\coordinate (h) at ($(g)+(75:1.25)$);
\coordinate (i) at ($(g)+(145:1)$) ;
\coordinate (j) at (-0.75,1.5) ;
\coordinate (k) at ($(g)+(165:2)$) ;
\coordinate (l) at ($(g)+(95:0.5)$) ;
\clip (-1.5,0) rectangle (1,3);
\path[fill=b1] (a) .. controls (b) and (c) .. (d) .. controls (e) and (f) .. (a);
\path[fill=b2] (g) .. controls (h) and (i) .. (j) .. controls (k) and (l) .. (g);
\end{tikzpicture}
};
\draw ($(text.north west)+(-0.1cm,0.1cm)$) -- ($(text.south west)-(0.1cm,0.1cm)$);
\node[
anchor = south east,
]
at ($(text.south west)-(0.25cm,0.25cm)$) (uconn) {\includegraphics[width=70px]{uconn-wordmark-single-blue}};
% Uncomment the following lines to use the Oak Leaf logo
\node[
anchor=south,
]
at (uconn.north) {\includegraphics[width=70px]{oak-leaf-blue}};
% Uncomment the following lines to use the Husky Dog logo. Note that the University
% branding guidelines state that the Husky should only be used in connection with the
% Athletic department, so this may not be appropriate for outside use.
% \node[
% anchor=south,
% ]
% at (uconn.north) {\includegraphics[width=60px]{uconn-husky}};
\end{tikzpicture}
\end{document}