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,10 @@
\pspicture(4,3) \psset{xunit=.2cm,yunit=1.5cm}
\savedata{\mydata}[
{{0, 0}, {1., 0.946083}, {3., 1.84865},
{5., 1.54993}, {7., 1.4546},
{9., 1.66504}, {11., 1.57831},
{13., 1.49936}, {15., 1.61819},
{17., 1.59014}, {19., 1.51863}}]
\dataplot[plotstyle=curve,showpoints,dotstyle=x, linecolor=black]{\mydata}
\psline{<->}(0,2)(0,0)(20,0)
\endpspicture

Binary file not shown.

View File

@@ -0,0 +1,24 @@
\begin{pspicture}(-0,-5)(8,2)
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=gray,
ticksize=-1.5pt 1.5pt,
xlabelsep=0pt,
arrowscale=2, % Taille des flèches
%trigLabelBase=4,
%Dx=5, % On ajoute 5
%dx=1, % tous les 1 sur l'axe des abscisses
%Dy=25,
%dy=1,
]{->}(0,0)(-0.1,-5.1)(8,2)
\psset{algebraic,linewidth=1.5pt}
\savedata{\mydata}[{
{2, -1}, {3, -1.5}, {4, -2}, {7, -3.5}
}]
\dataplot[linestyle=dashed,plotstyle=curve,showpoints,linecolor=black]{\mydata}
\end{pspicture}

Binary file not shown.

View File

@@ -0,0 +1,24 @@
\begin{pspicture}(-0,-1)(8,5)
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=gray,
ticksize=-1.5pt 1.5pt,
xlabelsep=0pt,
arrowscale=2, % Taille des flèches
%trigLabelBase=4,
%Dx=5, % On ajoute 5
%dx=1, % tous les 1 sur l'axe des abscisses
%Dy=25,
%dy=1,
]{->}(0,0)(-0.1,-1.1)(8,5)
\psset{algebraic,linewidth=1.5pt}
\savedata{\mydata}[{
{2, 1}, {3, 2}, {4, 3}, {7, 6}
}]
\dataplot[linestyle=dashed,plotstyle=curve,showpoints,linecolor=black]{\mydata}
\end{pspicture}

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.*

Binary file not shown.

View File

@@ -0,0 +1,28 @@
\begin{pspicture}(-0,-0)(8,11)
% Cadrillage gris
\psgrid[griddots=1,
gridlabels=0pt, % Pas de label
subgriddiv=5, % 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=gray,
ticksize=-1.5pt 1.5pt,
xlabelsep=3pt,
arrowscale=2, % Taille des flèches
%trigLabelBase=4,
Dx=5, % On ajoute 5
dx=1, % tous les 1 sur l'axe des abscisses
Dy=25,
dy=1,
]{->}(0,0)(-0.1,-0.1)(8,11)
\psset{algebraic,linewidth=1.5pt}
\end{pspicture}