93e9d67bff859a0376ad0920b2f38cf55f1f8c51
[matthijs/master-project/report.git] / Utils / Formats.tex
1 %
2 % Defines some useful formatting environments.
3 %
4
5 % A simple description format
6 \definedescription 
7   [desc]
8   [location=hanging,hang=20,width=broad]
9
10 % An (invisible) frame to hold some expression. Used to treat multiple lines
11 % as a single line and put it next to each other.
12 \define[1]\hiddenframe{
13         % The align=right option really does left-alignment, but without it,
14         % all lines will end up on a single line. The strut=no option prevents
15         % a bunch of empty space at the start of the frame.
16         \framed[offset=0mm,location=middle,strut=no,align=right,frame=off]{#1}
17 }
18
19 % Define a \strikethrough command. For some reason, this does blue
20 % strikethrough, sometime that still needs fixing.
21 \definetextbackground
22   [strikethrough]
23   [location=text,
24    alternative=4,
25    background=,
26    frame=off]
27
28 \def\setwidthof#1\to#2%
29 {\bgroup
30 \setbox\scratchbox\hbox{#1}%
31 \expanded{\egroup\def\noexpand#2{\the\wd\scratchbox}}}
32
33 % Allow \emph{foo} (and {\emph foo}, but that's not really needed).
34 \definealternativestyle[emph][\em][]                                                                                                                         
35
36 % Put a bit of space betwen paragraphs, to make them easier to distinguish.
37 \setupwhitespace[small]
38
39 % vim: set sw=2 sts=2 expandtab: