diff options
author | Karl Berry <karl@freefriends.org> | 2018-05-02 20:48:54 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-05-02 20:48:54 +0000 |
commit | a64b09172eb57721992bd3f70e80997a6b7ee9d4 (patch) | |
tree | 92ed0a503d9792e4550c1c139a0885d6bca72388 /Master/texmf-dist/doc/latex | |
parent | c6a8412d1611093105c992e30cf39c01cc00ad77 (diff) |
competences (2may18)
git-svn-id: svn://tug.org/texlive/trunk@47573 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex')
-rw-r--r-- | Master/texmf-dist/doc/latex/competences/README.md | 21 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/competences/example.tex | 81 |
2 files changed, 102 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/competences/README.md b/Master/texmf-dist/doc/latex/competences/README.md new file mode 100644 index 00000000000..601b204f2b2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/competences/README.md @@ -0,0 +1,21 @@ + +This package is an attempt to track skills assessed during a classroom check. + +Each question can be associated with one or more skills and be assigned a number of points to be earned. + +At the end of the text, a table set summarizes the skills assessed, and in what proportions. + + + +------------------------------------------------------------- +Copyright (C) 2016 by Christophe Bares <christopheATbares.fr> +------------------------------------------------------------- + +This file may be distributed and/or modified under the +conditions of the LaTeX Project Public License, either version 1.3 +of this license or (at your option) any later version. +The latest version of this license is in: + + http://www.latex-project.org/lppl.txt + +and version 1.3 or later is part of all distributions of LaTeX version 2005/12/01 or later. diff --git a/Master/texmf-dist/doc/latex/competences/example.tex b/Master/texmf-dist/doc/latex/competences/example.tex new file mode 100644 index 00000000000..f5df9256ba6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/competences/example.tex @@ -0,0 +1,81 @@ +\documentclass{article} + +\usepackage[ +% nomargin, % Remove margin competence tag +]{competences} + +\renewcommand \thesection{\Alph{section}} + +\begin{document} + +\declareprefix{CA} +\declareprefix{CB} +\declareprefix{CC} + +% Declare competences is not mandantory, +% but it defines order in sumup tables +% and allows to detect forgiven competences. +\declarecompetence{CA1} +\declarecompetence{CA2} +\declarecompetence{CB1} +\declarecompetence{CB2} +\declarecompetence{CC1} +\declarecompetence{CC2} +\declarecompetence{CC3} +\declarecompetence{CC4} +\declarecompetence{FOO} + +% Some competences are global, +% ie not link to a particular question. +\addGlobalCompetence[1]{CC4} +\addGlobalCompetence[2]{CC3} + + +\section{Test} +Question one. +\addcompetence{CA1} + +\section{test2} +Question two with 2 competences. +\addcompetence{CA1}\addcompetence{CA2} + +\subsection{test3} +Question three with points different from 1. +\addcompetence[3]{CB1}\addcompetence[1]{CC1} + +\subsubsection{test4} +Question four in a subsubsection. +\addcompetence[3]{CB1} + + +\section{test5} +\subsection{test6} +\begin{enumerate} + \item Question five in enumerate \addcompetence[1]{CB2} + \item Question six \addcompetence[1]{CC2} + \begin{enumerate} + \item text seven in enumerate in enumerate\addcompetence[3]{CC1} + \item text hight \addcompetence[1]{CB2} + \end{enumerate} +\end{enumerate} + +\section{Test 7} +\subsection{test10} + \begin{enumerate} + \item text nine in enumerate\addcompetence{CB1} + \end{enumerate} + + +\section{Résumé des compétences} +\tableaupartie{A} +% \tableaupartie{A} +\tableaupartie{B} +\tableaupartie{C} +%\tableaupartie{D} + +\tableaupartie{Global} + + +\tableauprefix{A,B,C,Global} + +\end{document} |