blob: 6ed658a4f45c2cdafa9dbbc7997c176aad888e8c (
plain)
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
|
% \iffalse meta-comment
%
% Copyright (C) 2018 - 2021 by ChairX
%
% This file may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either
% version 1.3 of this license or (at your option) any later
% version. The latest version of this license is in:
%
% http://www.latex-project.org/lppl.txt
%
% and version 1.3 or later is part of all distributions of
% LaTeX version 2005/12/01 or later.
%
% This file contains the documentation of the environment handling.
%
% Macros have to be described by (delete the first %)
% \DescribeMacro{\macro}
% Description and usage of the macro.
%
% The description will appear in the usage
% part of the documentation. Use \subsubsection{} etc. for structuring.
%
% The implementation of the macros defined here has to be written in
% chairxDefaults.dtx
%\fi
%
% Being a rather high level package, several over-all styling options
% are set to new defaults. This includes several spacings, numbering
% schemes etc. Currently, the most important changes are the
% following:
% \begin{itemize}
% \item We redefine \verb|\mathbb| to use the fonts from the |bbm|
% package, looks so much nicer: $\mathbb{R}$ and $\mathbb{C}$ but
% also $\mathbb{k}$.
% \item We redefine |\mathcal| to use the font |EulerScript| from the
% |euler| package yielding $\mathcal{CLO}$ and we define
% |\mathsrc| to use the script font |rsfso| from the |rfsfo|
% package giving $\mathscr{ABCD}$. Please make sure that these
% fonts are installed properly: with a recent \LaTeX-installation
% this should be automatic.
% \item Equation numbers are always with sections in front. In the
% |book| class this leads to equation numbers having the chapter
% number and the section number in front.
% \item Displayed formulas are allowed to break over pages. As in
% mathematical texts one has many (many!) long formulas this is
% really necessary. Without allowing this by default a case by
% case decision typically leads to sub-optimal results in page
% breaks.
% \item We set |\arraystretch| to the value |1.2| to have a bit more
% space in arrays.
% \item The |\left| and the |\right| commands in math mode have a
% notoriously bad spacing. This is fixed by a hack from
% TexExchange.
% \item The command |\cleardoublepage| will produce empty headers on
% an empty left page. This will only affect the behaviour in
% classes with left/right pages like the book class. It generally
% looks weird to have an empty left page containing just the page
% number or some default header but nothing else.
% \end{itemize}
|