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

BIN
3e/DS/DS_140320/fig/eau.pdf Normal file

Binary file not shown.

View File

@@ -0,0 +1,34 @@
\begin{pspicture}(-0,-0.5)(13,5.6)
% Cadrillage gris
%\psgrid[griddots=1,
% gridlabels=0pt, % Pas de label
% subgriddiv=1, % 5 carrés toutes les unités
% gridcolor=black!40]
% Cadrillage noir
%\psgrid[gridlabels=0pt,
% subgriddiv=1,
% gridcolor=black]
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=black,
ticksize=-1.5pt 1.5pt,
xlabelsep=3pt,
arrowscale=2, % Taille des flèches
% Grille /!\ x et y sont inversés ...
xsubticks=1, xticksize=0 4.8, xsubticksize=2, % grille pple tous les 1 de 0 à 4.8 et sousgrille tous les 2
ysubticks=2, yticksize=0 10.5, ysubticksize=1,
%trigLabelBase=4,
Dx=1, % On ajoute 1
dx=1, % tous les 1 sur l'axe des abscisses
Dy=1,
dy=0.333,
]{->}(0,0)(-0.1,-0.1)(11.1,5.1)[Volume de liquide, 295][Volume de glace, 90]
\psset{algebraic,linewidth=1.5pt}
\psplot{0}{10.5}{0.366*x}
\end{pspicture}

Binary file not shown.

View File

@@ -0,0 +1,28 @@
\begin{pspicture}(-0,-0)(11,5)
% Cadrillage gris
\psgrid[griddots=1,
gridlabels=0pt, % Pas de label
subgriddiv=4, % 5 carrés toutes les unités
gridcolor=black!40]
% Cadrillage noir
%\psgrid[gridlabels=0pt,
% subgriddiv=1,
% gridcolor=black]
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=black,
ticksize=-1.5pt 1.5pt,
xlabelsep=3pt,
arrowscale=2, % Taille des flèches
%trigLabelBase=4,
Dx=0.01, % On ajoute 5
dx=1, % tous les 1 sur l'axe des abscisses
Dy=2,
dy=0.5,
]{->}(0,0)(-0.1,-0.1)(11,5)[$I$, 90][$U$, 320]
\psset{algebraic,linewidth=1.5pt}
\end{pspicture}

Binary file not shown.

View File

@@ -0,0 +1,33 @@
\begin{pspicture}(-0,-0)(11,5)
% Cadrillage gris
\psgrid[griddots=1,
gridlabels=0pt, % Pas de label
subgriddiv=4, % 5 carrés toutes les unités
gridcolor=black!40]
% Cadrillage noir
%\psgrid[gridlabels=0pt,
% subgriddiv=1,
% gridcolor=black]
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=black,
ticksize=-1.5pt 1.5pt,
xlabelsep=3pt,
arrowscale=2, % Taille des flèches
%trigLabelBase=4,
Dx=0.01, % On ajoute 5
dx=1, % tous les 1 sur l'axe des abscisses
Dy=2,
dy=0.5,
]{->}(0,0)(-0.1,-0.1)(11,5)[$I$, 90][$U$, 320]
\psset{algebraic,linewidth=1.5pt}
\psplot{0}{11}{x/2.7}
\psline[linecolor=red](0,2.5)(6.75,2.5)
\psline[linecolor=red](6.75,2.5)(6.75, 0)
\end{pspicture}

28
3e/DS/DS_140320/fig/pstricks.sh Executable file
View File

@@ -0,0 +1,28 @@
#!/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}
\usepackage{pst-plot}
\usepackage{pst-math}
\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.*