Import work from year 2013-2014

This commit is contained in:
Benjamin Bertrand
2017-06-16 09:46:40 +03:00
commit 32262a4ecf
1788 changed files with 113187 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,64 @@
\documentclass{/media/documents/Cours/Prof/Enseignements/Archive/2013-2014/tools/style/classConn}
% Title Page
\title{}
\author{}
\date{}
\begin{document}
\begin{multicols}{2}
Nom - Prénom:
\section{Connaissance}
Completer les phrases suivantes
\begin{itemize}
\renewcommand{\labelitemi}{$\star$}
\item $[AB]$ se prononce \dotfill \\
\item $[AC)$ se prononce \dotfill \\
\vspace{2cm}
\item Énoncer le théorème des milieux pour la figure suivante
\begin{center}
\includegraphics[scale=1.4]{fig/thmMilieux}
\end{center}
Si \dotfill \\ \vfill . \dotfill \\ \vfill . \dotfill \\ \vfill Alors \dotfill
\end{itemize}
\columnbreak
Nom - Prénom:
\section{Connaissance}
Completer les phrases suivantes
\begin{itemize}
\renewcommand{\labelitemi}{$\star$}
\item $AB$ se prononce \dotfill \\
\item $(AC)$ se prononce \dotfill \\
\vspace{2cm}
\item Énoncer le théorème du \textbf{segment} du milieu pour la figure suivante
\begin{center}
\includegraphics[scale=1.4]{fig/thmMilieux2}
\end{center}
Si \dotfill \\ \vfill . \dotfill \\ \vfill . \dotfill \\ \vfill Alors \dotfill
\end{itemize}
\end{multicols}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "master"
%%% End:

View File

@@ -0,0 +1,26 @@
#!/bin/sh
# on enlève lextension du 1er argument
FILE=${1%.*}
TMPFILE=pstemp
# création dun fichier temporaire psttemp.tex
cat > $TMPFILE.tex <<EOF
\documentclass{article}
\usepackage{pstricks}
\usepackage{pstricks-add}
\usepackage{pst-eps}
\usepackage{pst-eucl}
\thispagestyle{empty}
\begin{document}
\begin{TeXtoEPS}
\input{$FILE}
\end{TeXtoEPS}
\end{document}
EOF
# Création du fichier dvi
latex $TMPFILE
# Création du fichier eps
dvips -E $TMPFILE.dvi -o $TMPFILE.eps
# Création du fichier pdf
epstopdf $TMPFILE.eps --debug --outfile=$FILE.pdf
# effacement des fichiers temporaires
rm -f $TMPFILE.*

Binary file not shown.

View File

@@ -0,0 +1,21 @@
\begin{pspicture}*(-2.5,-1.5)(3.5,2.5)
\pstGeonode[PosAngle=180](-2,-1){A}
\pstGeonode(2,2){B}
\pstGeonode(3,-1){E}
\pspolygon(A)(B)(E)
\pstMiddleAB{A}{B}{M}
\pstSegmentMark{A}{M}
\pstSegmentMark{M}{B}
\pstMiddleAB[PosAngle=0]{E}{B}{J}
\pstSegmentMark[SegmentSymbol=pstslash]{E}{J}
\pstSegmentMark[SegmentSymbol=pstslash]{J}{B}
\pstLineAB{M}{J}
\end{pspicture}

Binary file not shown.

View File

@@ -0,0 +1,21 @@
\begin{pspicture}*(-2.5,-2.5)(3.5,2.5)
\pstGeonode[PosAngle=180](-2,-1){D}
\pstGeonode(0,2){B}
\pstGeonode(3,-2){C}
\pspolygon(D)(B)(C)
\pstMiddleAB{D}{B}{I}
\pstSegmentMark{D}{I}
\pstSegmentMark{I}{B}
\pstMiddleAB[PosAngle=0]{C}{B}{N}
\pstSegmentMark[SegmentSymbol=pstslash]{C}{N}
\pstSegmentMark[SegmentSymbol=pstslash]{N}{B}
\pstLineAB{I}{N}
\end{pspicture}