Import work from year 2014-2015

This commit is contained in:
Benjamin Bertrand
2017-06-16 09:48:07 +03:00
commit 7e5feb002b
1531 changed files with 418856 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,17 @@
\begin{pspicture}(-5,-5)(5.2,5.2)
\psgrid[griddots=10,gridlabels=0pt, subgriddiv=0, gridcolor=black!40]
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=gray,
ticksize=-1.5pt 1.5pt,
xlabelsep=3pt,
arrowscale=1,
%trigLabelBase=4,
]{->}(0,0)(-5,-5)(5,5)[$x$,90][$f(x)$,0]
\psset{algebraic,linewidth=1.5pt}
\psplot{-5}{5}{x}
\end{pspicture}

Binary file not shown.

View File

@@ -0,0 +1,17 @@
\begin{pspicture}(-5,-5)(5.2,5.2)
\psgrid[griddots=10,gridlabels=0pt, subgriddiv=0, gridcolor=black!40]
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=gray,
ticksize=-1.5pt 1.5pt,
xlabelsep=3pt,
arrowscale=1,
%trigLabelBase=4,
]{->}(0,0)(-5,-5)(5,5)[$x$,90][$g(x)$,0]
\psset{algebraic,linewidth=1.5pt}
\psplot{-5}{5}{2 * x - 2}
\end{pspicture}

Binary file not shown.

View File

@@ -0,0 +1,17 @@
\begin{pspicture}(-5,-5)(5.2,5.2)
\psgrid[griddots=10,gridlabels=0pt, subgriddiv=0, gridcolor=black!40]
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=gray,
ticksize=-1.5pt 1.5pt,
xlabelsep=3pt,
arrowscale=1,
%trigLabelBase=4,
]{->}(0,0)(-5,-5)(5,5)[$x$,90][$h(x)$,0]
\psset{algebraic,linewidth=1.5pt}
\psplot{-5}{5}{(x-1)^2 - 3}
\end{pspicture}

Binary file not shown.

View File

@@ -0,0 +1,17 @@
\begin{pspicture}(-5,-5)(5.2,5.2)
\psgrid[griddots=10,gridlabels=0pt, subgriddiv=0, gridcolor=black!40]
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=gray,
ticksize=-1.5pt 1.5pt,
xlabelsep=3pt,
arrowscale=1,
%trigLabelBase=4,
]{->}(0,0)(-5,-5)(5,5)[$x$,90][$i(x)$,0]
\psset{algebraic,linewidth=1.5pt}
\psplot{-5}{5}{1/3 * x^3 - 1*x^2 - 1/3*x + 1}
\end{pspicture}

Binary file not shown.

View File

@@ -0,0 +1,17 @@
\begin{pspicture}(-5,-5)(5.2,5.2)
%\psgrid[griddots=10,gridlabels=0pt, subgriddiv=0, gridcolor=black!40]
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=gray,
ticksize=-1.5pt 1.5pt,
xlabelsep=3pt,
arrowscale=1,
%trigLabelBase=4,
]{->}(0,0)(-5,-5)(5,5)[$x$,90][$j(x)$,0]
\psset{algebraic,linewidth=1.5pt}
\psplot{-5}{5}{x - 1}
\end{pspicture}

Binary file not shown.

View File

@@ -0,0 +1,17 @@
\begin{pspicture}(-5,-5)(5.2,5.2)
%\psgrid[griddots=10,gridlabels=0pt, subgriddiv=0, gridcolor=black!40]
\psaxes
[
%ytrigLabels=true,
linewidth=\pslinewidth,
%labelFontSize=\scriptscriptstyle,
tickcolor=gray,
ticksize=-1.5pt 1.5pt,
xlabelsep=3pt,
arrowscale=1,
%trigLabelBase=4,
]{->}(0,0)(-5,-5)(5,5)[$x$,90][$k(x)$,0]
\psset{algebraic,linewidth=1.5pt}
\psplot{-5}{5}{(x+1)^2 - 2}
\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.*