-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocument.tex
119 lines (77 loc) · 4.63 KB
/
document.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
% LaTeX for PDU Signage, 37c3 specific design as per Styleguide
% --------------------------------------------
% General Settings and Preamble
% --------------------------------------------
\documentclass[a5paper, landscape, twocolumn]{article}
% Set general properties of the document like size, orientation and font size (default is 10pt)
% Options like general columns and two-sidedness would also belong here.
% The preamble starts here and ends at the document begin command, right ahead of "\begin{document}"
\usepackage{fontspec}
%\setsansfont{Mona Sans}[Scale=MatchLowercase]
\setsansfont{Red Hat Text}[Scale=MatchLowercase]
\setmonofont{IBM 3270}
%\newfontfamily\mainheading{VCR OSD Mono}[Scale=10]
% Not setting the main font but sans and mono will make it really obvious if a part of the document is not specifically set in either
\newcommand{\pdunumber}{999}
\newcommand{\scalefaq}{1.2}
\usepackage[margin=10mm]{geometry}
%\setlength{\textwidth}{200mm}
%\setlength{\textheight}{130mm}
% Specify the width of the entire text block
% When not using geometry, this floats attached to the standard margins on the top left corner. Not very useful.
\setlength{\columnsep}{1mm}
% For two column mode, set separation between columns
\pdfpageheight=\paperheight
\pdfpagewidth=\paperwidth
% For some engines: Set the print area to be equal to the paper size.
% Not all engines do this automatically.
% --------------------------------------------
% Style and Graphics
% --------------------------------------------
%\usepackage{color}
%\pagecolor{black}
%\color{white}
% Make use of the color package, for example setting the whole page to white on black
\usepackage{graphicx}
%\graphicspath{ {pix/} {../pix/} }
% Use graphics. Optionally: Set the path for graphics here and just use "\includegraphics{filename}" later.
% Alternatively, do not use "\graphicspath{}" and always address graphics by relative or absolute path.
% Usable extensions are, in order: .pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPEG,.JBIG2,.JB2
%\AtBeginDocument{code}
% This code will run at \begin{document}, as last part of the preamble
\begin{document}
% The preamble ends here, as the document begins.
% Some commands need to be inside the document, so after preamble.
%\setmainfont{./fonts/VCR_OSD_MONO.ttf}
% TrueType Fonts. Note: This *must* be rendered using XeLaTeX, as this is engine-specific stuff.
% Standard LaTeX is very limited in font selection and does not support True Type Import
%\newfontface\vcrmono{./fonts/VCR_OSD_MONO.otf}
% --------------------------------------------
% Document content
% --------------------------------------------
%%^^A%% fontspec-example.tex -- part of FONTSPEC <wspr.io/fontspec>
\pagestyle{empty}
\begin{center}
\scalebox{2}{\texttt{PDU \scalebox{5.5}{999}}}
\end{center}
%\vspace{1mm}
\begin{itemize}
\item\scalebox{\scalefaq}{{\textsf{What is a PDU?}}}
\textsf{PDU = Power Distribution Unit\\We, the power team, are responsible for delivering safe and plentiful power to all participants of this event so everyone can power their gadgets, charge their computers and phones, etc.}
\item\scalebox{\scalefaq}{{\textsf{Can I plug in my device or should i ask first?}}}
\textsf{For any common device, feel free to plug right in. Keep in mind that the number of outlets we can provide is limited. If all outlets are already in use, think about sharing with your neighbours, using plug strips for example. If you are not sure about the safety of your device or have any other questions, don't hesitate to ask via our ticket system. You can find the ticket system via the QR Code or URL on this sign.}
\item\scalebox{\scalefaq}{{\textsf{I am not receiving power, what can I do?}}}
\textsf{Most commonly, this means that the RCD was tripped by a faulty device connected to this PDU. You may reset the RCD once or twice to rectify this fault or identify the faulty device. However, if the fault is not immediately obvious, please refrain from further analysis without consulting the power team. That is what we are here for, after all :)}
\newpage
\item\scalebox{\scalefaq}{{\textsf{Any quicker way to get in touch?}}}
\textsf{In case of urgent problems or need for power advice; please don't be afraid to call. We set up a call group, so you can call \underline{the whole team at once}. Whoever is on call right now will see to your problem asap. The DECT extension is:}
\begin{center}
\scalebox{3.5}{\texttt{POWR (7697)}} \\
\vspace{7mm}
\includegraphics[scale=0.3]{./qr/999.png} \\
\textsf{Find our ticket system by using the QR code. \\
\vspace{1mm}
\scalebox{1.2}{\texttt{https://pdu.c3power.de}}}
\end{center}
\end{itemize}
\end{document}