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
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Source: Dave Richeson (divisbyzero.com), Dickinson College
% Version francaise par Vincent Pantaloni, prof.pantaloni.free.fr
% Traduction, correction et adaptation à la typographie française.
%
% Une anti-seche en deux pages pour une intro rapide ou un aide mémoire des différentes fonctions. A imprimer en recto verso par exemple.
%
% Feel free to distribute this example, but please keep the referral
% to divisbyzero.com
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[a4paper,10pt,landscape]{article}
\usepackage{fontspec}
\usepackage[T1]{fontenc}
\usepackage[pdfauthor={Luke Hsiao},
pdftitle={Middlefield Building Streaming Checklist},
hidelinks]{hyperref}
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsmath,amsthm,amsfonts}
\usepackage{multicol,multirow}
\usepackage{calc}
\usepackage{ifthen}
\usepackage{siunitx}
\usepackage[landscape]{geometry}
\setmainfont{Latin Modern Sans}
\setmonofont{Latin Modern Mono}
\ifthenelse{\lengthtest { \paperwidth = 11in}}
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
}
\pagestyle{empty}
\makeatletter
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
{-1ex plus -.5ex minus -.2ex}%
{0.5ex plus .2ex}%x
{\normalfont\large\bfseries}}
\renewcommand{\subsection}{\@startsection{subsection}{2}{0mm}%
{-1explus -.5ex minus -.2ex}%
{0.5ex plus .2ex}%
{\normalfont\normalsize\bfseries}}
\renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{0mm}%
{-1ex plus -.5ex minus -.2ex}%
{1ex plus .2ex}%
{\normalfont\small\bfseries}}
\makeatother
\setcounter{secnumdepth}{0}
\setlength{\parindent}{0pt}
\setlength{\parskip}{0pt plus 0.5ex}
% -----------------------------------------------------------------------
\begin{document}
% \raggedright
\small
\begin{center}
\Large{\textbf{Middlefield Building Streaming Checklist}} \\
\small{Updated: 2021-05-05} \\
\end{center}
\begin{multicols*}{3}
\setlength{\premulticols}{1pt}
\setlength{\postmulticols}{1pt}
\setlength{\multicolsep}{1pt}
\setlength{\columnsep}{2pt}
\section{Getting Started ($\approx$\SI{20}{\minute})}
\begin{enumerate}
\item Plug in the streaming XLR cables.
\item Power on the A/V computer? (or leave on always?)
\item Do
\end{enumerate}
\vfill\null\columnbreak
\section{Cleaning Up ($\approx$\SI{10}{\minute})}
\begin{enumerate}
\item Turn off the AV computer?
\item Unplug the streaming XLR cables.
\end{enumerate}
\vfill\null\columnbreak
\section{FAQs}
\subsection{Not getting signal from the podium microphone?}
Is the \SI{48}{\volt} phantom power button enabled on the Scarlett 2i2?
\subsection{Cannot hear the inputs on house speakers?}
Is direct monitoring enabled? Use the mono mode (one circle), not stereo.
\end{multicols*}
\end{document}
|