summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
Diffstat (limited to 'manual')
-rw-r--r--manual/preamble.tex17
1 files changed, 17 insertions, 0 deletions
diff --git a/manual/preamble.tex b/manual/preamble.tex
index c07178fcd7..1a10de713b 100644
--- a/manual/preamble.tex
+++ b/manual/preamble.tex
@@ -42,6 +42,7 @@
42\usepackage{longtable} 42\usepackage{longtable}
43\usepackage{url} 43\usepackage{url}
44\urlstyle{sf} 44\urlstyle{sf}
45\usepackage{marvosym}
45 46
46% fancy header style adjustments 47% fancy header style adjustments
47%\renewcommand{\chaptermark}[1]{\markboth{#1}{}} 48%\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
@@ -98,3 +99,19 @@
98 \end{figure} 99 \end{figure}
99} 100}
100 101
102% command to display a note.
103% Usage: \note{text of your note}
104% Note: do NOT use \textbf or similar to emphasize text, use \emph!
105\newcommand{\note}[1]{
106 \noindent\\%
107 \textbf{Note:}\marginpar{\raisebox{-6pt}{\Huge\Writinghand}}\ #1%
108 \newline
109}
110
111% command to display a warning.
112% Usage: \warn{text of your warning}
113% Note: do NOT use \textbf or similar to emphasize text!
114\newcommand{\warn}[1]{
115 \noindent\textbf{Warning:}\marginpar{\raisebox{-6pt}{\Huge\Stopsign}}\ #1%
116 \newline
117} \ No newline at end of file