Compare commits

...

3 Commits

Author SHA1 Message Date
19d422aedd Feat: ajoute computerMode and paperMode and try qrcode
All checks were successful
continuous-integration/drone/push Build is passing
2022-10-29 11:04:25 +02:00
7a82dabd37 Fix: spelling 2022-10-27 10:30:18 +02:00
6a2b1f73a5 Core: improve title_path generation (remove non alphanum) 2022-10-27 10:29:26 +02:00
4 changed files with 27 additions and 7 deletions

View File

@ -2,13 +2,13 @@ Mathématiques en 2nd
####################
:date: 2022-07-25
:modified: 2022-09-22
:modified: 2022-10-27
:authors: Bertrand Benjamin
:category: 2nd
:tags: Progression
:summary: Organisation de l'année en mathématiques pour les 2nd
L'ensemble de ce qui est fait pour ce niveau est préparer à quatre mains avec Camille Crespeau.
L'ensemble de ce qui est fait pour ce niveau est préparé à quatre mains avec Camille Crespeau.
Progression
@ -44,9 +44,9 @@ Période 1
.. big_button::
:title: Calcul littéral
:link: ./03_Calcul_litteral/
:link: ./03_Calcul_littéral/
Réduire développer et modéliser avec des expressions littérales
Réduire, développer et modéliser avec des expressions littérales
Période 2
=========

View File

@ -45,7 +45,7 @@ esac
exec 3>&1
cd $tribe
existing_seq=$(ls -d */)
existing_seq=$(ls -d [0-9][0-9]_*)
nbr_seq=$(echo $existing_seq | wc -w)
next_seq_number=$(expr $nbr_seq)
@ -94,7 +94,7 @@ case $selection in
esac
title_path=$(echo ${title// /_} | iconv -f utf8 -t ascii//TRANSLIT)
title_path=$(echo ${title// /_} | iconv -f utf8 -t ascii//TRANSLIT | tr -cd '[:alnum:]._-')
sequence_path=$tribe/$(printf "%02d" $next_seq_number)_${title_path}/
mkdir -p $sequence_path

View File

@ -179,6 +179,8 @@
\newcommand\trainMode{\faIcon{tools}}
\newcommand\projectMode{\faIcon{sitemap}}
\newcommand\infoMode{\faIcon{desktop}}
\newcommand\computerMode{\faIcon{desktop}}
\newcommand\paperMode{\faIcon{leanpub}}
\newcommand\legendMode{%
\textbf{Légende:} \hfill

View File

@ -1,6 +1,5 @@
\NeedsTeXFormat{LaTeX2e}
% Pour gérer les todo
\RequirePackage[framemethod=tikz]{mdframed}
@ -39,6 +38,25 @@
\end{mdframed}
}}
\newcounter{enplus}
\newcommand{\enplus}[3][]{%
\refstepcounter{enplus}%
{%
\begin{mdframed}[style=highlight,
linecolor=green, backgroundcolor=green!10,
frametitle={\textbf{Pour aller plus loin}}
]
#3
\begin{minipage}{0.2\linewidth}
\qrcode{#2}
\end{minipage}
\begin{minipage}{0.8\linewidth}
\url{#2}
\end{minipage}
\end{mdframed}
}}
\newcounter{enclasse}
\newcommand{\enclasse}[2][]{%
\refstepcounter{enclasse}%