60 lines
1.1 KiB
Plaintext
60 lines
1.1 KiB
Plaintext
---
|
|
title: "Template Quarto"
|
|
subtitle: "pour mes documents"
|
|
type-document:
|
|
cours: true
|
|
format: cours-pdf
|
|
author: Jeff LANCE
|
|
date: last-modified
|
|
---
|
|
|
|
# Introduction
|
|
|
|
Cette extension est un template pour mes documents de cours.\
|
|
Elle est basée sur ma classe $\LaTeX$ `latex-homework/jl-cours`.
|
|
|
|
Ce document est un exemple d'usage de ce template.
|
|
|
|
# Une section
|
|
|
|
\lipsum[1]
|
|
|
|
## Une sous-section
|
|
|
|
\lipsum[1]
|
|
|
|
### Une sous-sous-section
|
|
|
|
\lipsum[1]
|
|
|
|
# Tableaux avec ``tabularray``
|
|
|
|
\begin{center}
|
|
\begin{tblr}{
|
|
colspec={Q[red9,l]cccQ[green9,r]},
|
|
hlines, vlines
|
|
}
|
|
cell 1-1 & cell 1-2 & cell 1-3 & cell 1-4 & cell 1-5 \\
|
|
cell 2-1 & cell 2-2 & cell 2-3 & cell 2-4 & cell 2-5
|
|
\end{tblr}
|
|
\end{center}
|
|
|
|
# Besoin de sauter une page
|
|
|
|
\lipsum
|
|
|
|
# Test des couleurs
|
|
|
|
Test : \textcolor{crimsonglory}{Ce texte est en `crimsonglory`}. Ici en normal.
|
|
|
|
# Test des environnements
|
|
|
|
\begin{definition}
|
|
Ceci est un test
|
|
\end{definition}
|
|
|
|
# More Information
|
|
|
|
You can learn more about controlling the appearance of PDF output here: <https://quarto.org/docs/output-formats/pdf-basics.html>
|
|
|