summaryrefslogtreecommitdiff
path: root/macros/unicodetex/latex/simplivre/demo
diff options
context:
space:
mode:
Diffstat (limited to 'macros/unicodetex/latex/simplivre/demo')
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classical.pdfbin0 -> 57987 bytes
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classical.tex124
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classicthesis.pdfbin0 -> 67319 bytes
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classicthesis.tex126
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-default.pdfbin0 -> 60760 bytes
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-default.tex123
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-flow.pdfbin0 -> 61556 bytes
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-flow.tex124
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-plain.pdfbin0 -> 57491 bytes
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-plain.tex124
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-stream.pdfbin0 -> 62963 bytes
-rw-r--r--macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-stream.tex124
12 files changed, 745 insertions, 0 deletions
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classical.pdf b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classical.pdf
new file mode 100644
index 0000000000..497a84ac6b
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classical.pdf
Binary files differ
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classical.tex b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classical.tex
new file mode 100644
index 0000000000..cd08d686d1
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classical.tex
@@ -0,0 +1,124 @@
+\documentclass[a4paper, 11pt,
+ % use font = times, % garamond, newcm, lmodern, ...
+ use osf,
+ use style = classical,
+ % 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 = simple ]
+ {
+ % , 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{classical})
+ }
+ , 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}
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classicthesis.pdf b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classicthesis.pdf
new file mode 100644
index 0000000000..4a5675645f
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classicthesis.pdf
Binary files differ
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classicthesis.tex b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classicthesis.tex
new file mode 100644
index 0000000000..78578c60d4
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-classicthesis.tex
@@ -0,0 +1,126 @@
+\PassOptionsToPackage{
+ % drafting=true, % print version information on the bottom of the pages
+ tocaligned=false, % the left column of the toc will be aligned (no indentation)
+ dottedtoc=false, % page numbers in ToC flushed right
+ eulerchapternumbers=true, % use AMS Euler for chapter font (otherwise Palatino)
+ floatperchapter=true, % numbering per chapter for all floats (i.e., Figure 1.1)
+ style=arsclassica % classicthesis, arsclassica, linedheaders, plain
+}{classicthesis}
+\documentclass[a4paper, 11pt,
+ use style = classicthesis,
+ 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 = fancy, color = { main = Maroon, back = Goldenrod } ]
+ {
+ % , 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{ClassicThesis})
+ }
+ , 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
+
+\ctparttext{Some introductory text. \blindtext}
+\part{Basic examples}
+
+\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}
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-default.pdf b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-default.pdf
new file mode 100644
index 0000000000..cfaab378bc
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-default.pdf
Binary files differ
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-default.tex b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-default.tex
new file mode 100644
index 0000000000..89fde057fa
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-default.tex
@@ -0,0 +1,123 @@
+\documentclass[a4paper, 11pt,
+ % use font = times, % garamond, newcm, lmodern, ...
+ use osf,
+ % 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 default style)
+ }
+ , 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}
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-flow.pdf b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-flow.pdf
new file mode 100644
index 0000000000..dbba9df779
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-flow.pdf
Binary files differ
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-flow.tex b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-flow.tex
new file mode 100644
index 0000000000..0b7ed19adb
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-flow.tex
@@ -0,0 +1,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}
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-plain.pdf b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-plain.pdf
new file mode 100644
index 0000000000..67725599d5
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-plain.pdf
Binary files differ
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-plain.tex b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-plain.tex
new file mode 100644
index 0000000000..8a94bf89ec
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-plain.tex
@@ -0,0 +1,124 @@
+\documentclass[a4paper, 11pt,
+ % use font = times, % garamond, newcm, lmodern, ...
+ % use osf,
+ use style = plain,
+ % 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
+ {
+ % , 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{plain})
+ }
+ , 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}
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-stream.pdf b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-stream.pdf
new file mode 100644
index 0000000000..38b0933ac8
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-stream.pdf
Binary files differ
diff --git a/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-stream.tex b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-stream.tex
new file mode 100644
index 0000000000..dcb2204696
--- /dev/null
+++ b/macros/unicodetex/latex/simplivre/demo/simplivre-demo-style-stream.tex
@@ -0,0 +1,124 @@
+\documentclass[a4paper, 11pt,
+ % use font = times, % garamond, newcm, lmodern, ...
+ use osf,
+ use style = stream,
+ % 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{stream})
+ }
+ , 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}