2017-05-23 09:01:04 +00:00
|
|
|
% Usage: \pic[<pct-of-columnwidth>]{<path-to-file>}
|
|
|
|
\newcommand{\pic}[2][50]{
|
|
|
|
\begin{center}
|
|
|
|
\transparent{0.4}
|
|
|
|
\includegraphics[width=0.#1\columnwidth]{#2}
|
|
|
|
\end{center}
|
|
|
|
}
|
|
|
|
|
|
|
|
% Usage: \fig{<path-to-file>}{<label>}{<caption>}
|
|
|
|
\newcommand{\fig}[4]{
|
2017-05-24 17:10:55 +00:00
|
|
|
\begin{figure}[h!]
|
2017-05-23 09:01:04 +00:00
|
|
|
\centering
|
|
|
|
\includegraphics[width=0.95\columnwidth]{#1}
|
|
|
|
\caption{#3}
|
|
|
|
\label{fig:#2}
|
|
|
|
\end{figure}
|
|
|
|
}
|
|
|
|
|
|
|
|
% Usage: \svg{<path-to-file>}{<label>}{<caption>}
|
|
|
|
\newcommand{\svg}[3]{
|
|
|
|
\begin{figure}[h]
|
|
|
|
\centering
|
|
|
|
\includesvg{#1}
|
|
|
|
\caption{#3}
|
|
|
|
\label{fig:#2}
|
|
|
|
\end{figure}
|
|
|
|
}
|
|
|
|
|
|
|
|
\newcommand{\notice}[2]{%
|
|
|
|
\shadowbox{%
|
|
|
|
\begin{varwidth}{0.85\linewidth}
|
|
|
|
\texttt{\textbf{#1}}\\
|
|
|
|
#2
|
|
|
|
\end{varwidth}
|
|
|
|
}
|
|
|
|
}
|
2017-05-24 22:37:49 +00:00
|
|
|
|
|
|
|
\newcommand{\cliline}[2][]{\lstinline[columns=fixed,#1]{#2}}
|
|
|
|
|
|
|
|
\newcommand{\utccurrenttime}[0]{%
|
|
|
|
\today%
|
|
|
|
T%
|
|
|
|
\DTMcurrenttime%
|
|
|
|
\DTMfetchTZhour{now}%
|
|
|
|
:%
|
|
|
|
\DTMfetchTZminute{now}
|
|
|
|
}
|