16 lines
780 B
TeX
16 lines
780 B
TeX
% settings.
|
|
\linespread{1.5} % height between non-breaking lines.
|
|
\sloppy % correct word placement on newline.
|
|
|
|
% colors.
|
|
\definecolor{white}{RGB}{255,255,255} % default white color.
|
|
\definecolor{link}{RGB}{46,116,181} % web link color.
|
|
|
|
% styles.
|
|
\newcommand{\spar}[0]{\par\vspace{2mm}} % default paragraph break.
|
|
\newcommand{\stext}[1]{\fontsize{14}{7}{\selectfont{#1}}} % default text.
|
|
\newcommand{\sitallic}[1]{\textit{#1}} % itallic text.
|
|
\newcommand{\sbold}[1]{\textbf{#1}} % bold text.
|
|
\newcommand{\sunderline}[1]{\underline{#1}} % underline text.
|
|
\newcommand{\slink}[2]{\href{#1}{\textcolor{link}{\sunderline{#2}}}} % link webpage.
|