summaryrefslogtreecommitdiff
path: root/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-flow.tex
blob: 0b7ed19adbd9bacd3c739583c3230721089b92d7 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
\documentclass[a4paper, 11pt,
  % use font = times, % garamond, newcm, lmodern, ...
  use osf,
  use style = flow,
  % use indent = false,
  title in boldface,
  % title in scshape,
  % title in sffamily,
  theorem in new line,
  emphasize theorems,
  theorem numbering = section,
  % number theorems separately,
  simple name,  % for clever referencing
  name in link, % for clever referencing
]{simplivre}
\usepackage{ProjLib}
\usepackage[
    % lang     = {french},
    type     = {CC},
    modifier = {by},
    version  = {4.0},
    hyperxmp = false,
]{doclicense}

\usepackage{blindtext}

%% \UseLanguage{French}

\numberwithin{equation}{section}
\SwitchTheoremNumbering{example,examples,claim}

\begin{document}

\frontmatter

\TitlePage [ style = academic ]
  {
    % , logo      = { }  % the logo image
    , title     = { \fontspec{SourceSansPro}[WordSpace={1.25,1,1}]
                    \addfontfeature{LetterSpace=2.0}
                    Title of the book\\(demo of the style \textquote{flow})
                  }
    , author    = { Author Name }
    , date      = { \today[only-year-month] }
    % , date      = { \TheDate{2024-01} }
    , info      = {
                    This text is... \blindtext
                  }
    , license   = { \addfontfeature{Numbers=Lining} \medskip\doclicenseThis }
    , license page name = { Info }
  }

\tableofcontents

\mainmatter

\mainmatter

\part{Basic examples}
\parttext{Some introductory text.}

\chapter{Chapter title}

\section{Section title}

\subsection{Subsection title}

Some introductory text.

\begin{definition}[something]
  Define something.
\end{definition}

\begin{theorem}[some result]\label{thm:result}\index{Theorem on some result}
  The statement.
\end{theorem}

\begin{emphasis}
  Clever reference: \cref{thm:result} (only name: \namecref{thm:result}, only number: \labelcref{thm:result}).
\end{emphasis}

An equation:\index{Euler's equation}
\begin{equation}\label{eq:Euler}
  \mathrm{e}^{\mathrm{i}\pi} + 1 = 0.
\end{equation}

\begin{emphasis}
  Reference of equation: \eqref{eq:Euler} or \cref{eq:Euler}.
\end{emphasis}

\SetTheorem{corollary}{shared counter = subsubsection}
\begin{corollary}[of \cref{thm:result}]\label{cor:result}
  Some corollary.
\end{corollary}
\SetTheorem{corollary}{shared counter = subsection}
\begin{proof}
  Some lines of proof.
\end{proof}

\begin{examples}
  \begin{enumerate}
      \item First example.
      \item Second example.
      \item Third example.
  \end{enumerate}
\end{examples}

\begin{example*}[Important example]
  The numbering is switched in the preamble, thus \verb|example*| is the numbered version while \verb|example| is the unnumbered version.
\end{example*}

\begin{proof}[Proof of \cref{thm:result}]
    Some lines of proof.
\end{proof}

\part{Demonstration}

\blinddocument

\backmatter

\printindex

\end{document}