diff options
author | Karl Berry <karl@freefriends.org> | 2024-09-01 20:46:52 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2024-09-01 20:46:52 +0000 |
commit | 83f8deb3eb64916e4b10bbd022d7e4b47725a338 (patch) | |
tree | fb8e5f10486c07dcf0920ff7cea4682034fcdb0a /Master/texmf-dist | |
parent | ab4e6af9e98f60a997482bd7378dd74161b77f6e (diff) |
proflycee (1sep24)
git-svn-id: svn://tug.org/texlive/trunk@72161 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/latex/proflycee/ProfLycee-doc.pdf | bin | 1793092 -> 1794952 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/proflycee/ProfLycee-docctan.zip | bin | 277006 -> 277210 bytes | |||
-rw-r--r-- | Master/texmf-dist/tex/latex/proflycee/ProfLycee.sty | 3 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/proflycee/proflycee-tools-ecritures.tex | 33 |
4 files changed, 35 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/latex/proflycee/ProfLycee-doc.pdf b/Master/texmf-dist/doc/latex/proflycee/ProfLycee-doc.pdf Binary files differindex b4802be53e6..3486f2ae0af 100644 --- a/Master/texmf-dist/doc/latex/proflycee/ProfLycee-doc.pdf +++ b/Master/texmf-dist/doc/latex/proflycee/ProfLycee-doc.pdf diff --git a/Master/texmf-dist/doc/latex/proflycee/ProfLycee-docctan.zip b/Master/texmf-dist/doc/latex/proflycee/ProfLycee-docctan.zip Binary files differindex 2fef183bb19..cd4d0471010 100644 --- a/Master/texmf-dist/doc/latex/proflycee/ProfLycee-docctan.zip +++ b/Master/texmf-dist/doc/latex/proflycee/ProfLycee-docctan.zip diff --git a/Master/texmf-dist/tex/latex/proflycee/ProfLycee.sty b/Master/texmf-dist/tex/latex/proflycee/ProfLycee.sty index e37ce44eeb0..fffb3c5da9d 100644 --- a/Master/texmf-dist/tex/latex/proflycee/ProfLycee.sty +++ b/Master/texmf-dist/tex/latex/proflycee/ProfLycee.sty @@ -3,7 +3,8 @@ % or later, see http://www.latex-project.org/lppl.txtf \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{ProfLycee}[2024/07/13 3.04d Aide pour l'utilisation de LaTeX en lycee] +\ProvidesPackage{ProfLycee}[2024/09/01 3.04e Aide pour l'utilisation de LaTeX en lycee] +% 3.04e Commandes prix/angle/pourcent en lien avec siunitx % 3.04d PitonInputFile et styles % 3.04c Max et min pour des fonctions % 3.04b Travail sur la loi binomiale + Ajout de clés pour les environnements graphiques diff --git a/Master/texmf-dist/tex/latex/proflycee/proflycee-tools-ecritures.tex b/Master/texmf-dist/tex/latex/proflycee/proflycee-tools-ecritures.tex index 0a1555c4e96..f524c41cf31 100644 --- a/Master/texmf-dist/tex/latex/proflycee/proflycee-tools-ecritures.tex +++ b/Master/texmf-dist/tex/latex/proflycee/proflycee-tools-ecritures.tex @@ -10,6 +10,39 @@ \RequirePackage{mleftright} %pour une meilleure gestion des espacements avec \left \right :-) %\RequirePackage{mathrsfs}%pour \mathscr (à voir...) +%===UNITÉS + +\NewDocumentCommand\pflprix{ o m }{% + \IfValueTF{#1}% + {% + \num[round-mode=places,round-precision=#1]{#2}\,\text{€}% + }% + {% + \num{#2}\,\text{€}% + }% +} + +\NewDocumentCommand\pflangle{ o m }{% + \IfValueTF{#1}% + {% + \num[round-mode=places,round-precision=#1]{#2}\text{\textdegree}% + }% + {% + \num{#2}\text{\textdegree}% + }% +} + +\NewDocumentCommand\pflpcent{ o m }{% + \IfValueTF{#1}% + {% + \num[round-mode=places,round-precision=#1]{#2}\,\%% + }% + {% + \num{#2}\,\%% + }% +} + + %===ENSEMBLES CLASSIQUES \ifthenelse{\isundefined{\N}}% {% |