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

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}