diff options
-rw-r--r-- | README.md | 44 | ||||
-rw-r--r-- | README.tex | 40 | ||||
-rw-r--r-- | _preamble.tex | 1 |
3 files changed, 79 insertions, 6 deletions
@@ -1,8 +1,46 @@ | |||
1 | --- | 1 | --- |
2 | author: | 2 | author: |
3 | - Robert Alessi | 3 | - Robert Alessi |
4 | title: Cours sur LaTeX et Python | 4 | title: 'Mode d’emploi' |
5 | --- | 5 | --- |
6 | 6 | ||
7 | Présentation | 7 | Comment utiliser ce dépôt git |
8 | ============ | 8 | ============================= |
9 | |||
10 | Veuillez vous référer à [cette page de notre | ||
11 | wiki](https://notabug.org/ralessi/courses/wiki). | ||
12 | |||
13 | Compilation | ||
14 | =========== | ||
15 | |||
16 | Voici la liste des éléments logiciels qu’il faut installer: | ||
17 | |||
18 | 1. [GNU Make](https://www.gnu.org/software/make/) | ||
19 | |||
20 | 2. Une distribution dérivée de [TeXLive](http://tug.org/texlive/), à | ||
21 | savoir: | ||
22 | |||
23 | 1. Linux: [TeXLive](http://tug.org/texlive/) | ||
24 | |||
25 | 2. MacOs: [MacTeX](http://tug.org/mactex/) | ||
26 | |||
27 | 3. Windows: [proTeXt](http://tug.org/protext/) | ||
28 | |||
29 | <span style="font-variant:small-caps;">Rem.</span> L’installation | ||
30 | doit être *complète*: il faut donc choisir l’option *Set | ||
31 | installation scheme: **scheme-full*** | ||
32 | |||
33 | Utilisation de la ligne de commande | ||
34 | ----------------------------------- | ||
35 | |||
36 | #### Compiler les fichiers | ||
37 | |||
38 | make pdf | ||
39 | |||
40 | #### Revenir à la version initiale | ||
41 | |||
42 | make clean | ||
43 | |||
44 | #### Mise à jour | ||
45 | |||
46 | git pull | ||
@@ -1,15 +1,49 @@ | |||
1 | \documentclass{article} | 1 | \documentclass{article} |
2 | \usepackage[french]{babel} | 2 | \usepackage[french]{babel} |
3 | 3 | ||
4 | \title{Cours sur \LaTeX\ et Python} | 4 | \usepackage{hyperref} |
5 | \hypersetup{unicode,colorlinks} | ||
6 | \title{Mode d'emploi} | ||
5 | \author{Robert Alessi} | 7 | \author{Robert Alessi} |
6 | \date{} | ||
7 | 8 | ||
8 | \begin{document} | 9 | \begin{document} |
9 | \maketitle | 10 | \maketitle |
10 | 11 | ||
11 | \section{Présentation} | 12 | \section{Comment utiliser ce dépôt git} |
13 | Veuillez vous référer à | ||
14 | \href{https://notabug.org/ralessi/courses/wiki}{cette page de notre | ||
15 | wiki}. | ||
12 | 16 | ||
17 | \section{Compilation} | ||
18 | Voici la liste des éléments logiciels qu'il faut installer: | ||
19 | \begin{enumerate} | ||
20 | \item \href{https://www.gnu.org/software/make/}{GNU Make} | ||
21 | \item Une distribution dérivée de | ||
22 | \href{http://tug.org/texlive/}{\TeX{}Live}, à savoir: | ||
23 | \begin{enumerate} | ||
24 | \item Linux: \href{http://tug.org/texlive/}{\TeX{}Live} | ||
25 | \item MacOs: \href{http://tug.org/mactex/}{Mac\TeX} | ||
26 | \item Windows: \href{http://tug.org/protext/}{pro\TeX{}t} | ||
27 | \end{enumerate} | ||
28 | \textsc{Rem.} L'installation doit être \emph{complète}: il faut donc | ||
29 | choisir l'option \emph{Set installation scheme: \textbf{scheme-full}} | ||
30 | \end{enumerate} | ||
13 | 31 | ||
32 | \subsection{Utilisation de la ligne de commande} | ||
33 | |||
34 | \paragraph{Compiler les fichiers} | ||
35 | \begin{verbatim} | ||
36 | make pdf | ||
37 | \end{verbatim} | ||
38 | |||
39 | \paragraph{Revenir à la version initiale} | ||
40 | \begin{verbatim} | ||
41 | make clean | ||
42 | \end{verbatim} | ||
43 | |||
44 | \paragraph{Mise à jour} | ||
45 | \begin{verbatim} | ||
46 | git pull | ||
47 | \end{verbatim} | ||
14 | 48 | ||
15 | \end{document} | 49 | \end{document} |
diff --git a/_preamble.tex b/_preamble.tex index ff62021..a0b261e 100644 --- a/_preamble.tex +++ b/_preamble.tex | |||
@@ -11,6 +11,7 @@ | |||
11 | \usepackage[breakable, skins, listings, xparse]{tcolorbox} | 11 | \usepackage[breakable, skins, listings, xparse]{tcolorbox} |
12 | 12 | ||
13 | \usepackage{hyperref} | 13 | \usepackage{hyperref} |
14 | \hypersetup{unicode,colorlinks} | ||
14 | \usepackage{hyperxmp} | 15 | \usepackage{hyperxmp} |
15 | \usepackage{uri} | 16 | \usepackage{uri} |
16 | \usepackage[type={CC}, modifier={by-sa}, version ={3.0}]{doclicense} | 17 | \usepackage[type={CC}, modifier={by-sa}, version ={3.0}]{doclicense} |