Import Work from 2012/2013
This commit is contained in:
BIN
1S/DS/DS_130219/fig/Ch.pdf
Normal file
BIN
1S/DS/DS_130219/fig/Ch.pdf
Normal file
Binary file not shown.
7
1S/DS/DS_130219/fig/Ch.tex
Normal file
7
1S/DS/DS_130219/fig/Ch.tex
Normal file
@@ -0,0 +1,7 @@
|
||||
\begin{pspicture}*(-3.5,-3.5)(3.5,3.5)
|
||||
\psset{algebraic=true}
|
||||
\psgrid[subgriddiv=2, gridcolor = lightgray](-3.5,-3.5)(3.5,3.5)
|
||||
\psaxes{->}(0,0)(-3.5,-3.5)(3.5,3.5)
|
||||
|
||||
\psplot[linecolor=red,linewidth=1pt]{-3}{3}{1/EXP((x+1)) *(x+2)*(x+2) - 1}
|
||||
\end{pspicture}
|
||||
BIN
1S/DS/DS_130219/fig/Chderv.pdf
Normal file
BIN
1S/DS/DS_130219/fig/Chderv.pdf
Normal file
Binary file not shown.
7
1S/DS/DS_130219/fig/Chderv.tex
Normal file
7
1S/DS/DS_130219/fig/Chderv.tex
Normal file
@@ -0,0 +1,7 @@
|
||||
\begin{pspicture}*(-3.5,-3.5)(3.5,3.5)
|
||||
\psset{algebraic=true}
|
||||
\psgrid[subgriddiv=2, gridcolor = lightgray](-3.5,-3.5)(3.5,3.5)
|
||||
\psaxes{->}(0,0)(-3.5,-3.5)(3.5,3.5)
|
||||
|
||||
\psplot[linecolor=red,linewidth=1pt]{-3}{3}{-x*(x+2) / EXP(x+1)}
|
||||
\end{pspicture}
|
||||
BIN
1S/DS/DS_130219/fig/Chderv_bad1.pdf
Normal file
BIN
1S/DS/DS_130219/fig/Chderv_bad1.pdf
Normal file
Binary file not shown.
7
1S/DS/DS_130219/fig/Chderv_bad1.tex
Normal file
7
1S/DS/DS_130219/fig/Chderv_bad1.tex
Normal file
@@ -0,0 +1,7 @@
|
||||
\begin{pspicture}*(-3.5,-3.5)(3.5,3.5)
|
||||
\psset{algebraic=true}
|
||||
\psgrid[subgriddiv=2, gridcolor = lightgray](-3.5,-3.5)(3.5,3.5)
|
||||
\psaxes{->}(0,0)(-3.5,-3.5)(3.5,3.5)
|
||||
|
||||
\psplot[linecolor=red,linewidth=1pt]{-3}{3}{-(x-1)*(x+1) / EXP(x)}
|
||||
\end{pspicture}
|
||||
BIN
1S/DS/DS_130219/fig/Chderv_bad2.pdf
Normal file
BIN
1S/DS/DS_130219/fig/Chderv_bad2.pdf
Normal file
Binary file not shown.
7
1S/DS/DS_130219/fig/Chderv_bad2.tex
Normal file
7
1S/DS/DS_130219/fig/Chderv_bad2.tex
Normal file
@@ -0,0 +1,7 @@
|
||||
\begin{pspicture}*(-3.5,-3.5)(3.5,3.5)
|
||||
\psset{algebraic=true}
|
||||
\psgrid[subgriddiv=2, gridcolor = lightgray](-3.5,-3.5)(3.5,3.5)
|
||||
\psaxes{->}(0,0)(-3.5,-3.5)(3.5,3.5)
|
||||
|
||||
\psplot[linecolor=red,linewidth=1pt]{-3}{3}{-(1/EXP((x+1)) *(x+2)*(x+2) - 1)}
|
||||
\end{pspicture}
|
||||
BIN
1S/DS/DS_130219/fig/fonctions.ggb
Normal file
BIN
1S/DS/DS_130219/fig/fonctions.ggb
Normal file
Binary file not shown.
26
1S/DS/DS_130219/fig/pstricks.sh
Normal file
26
1S/DS/DS_130219/fig/pstricks.sh
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
# on enlève l’extension du 1er argument
|
||||
FILE=${1%.*}
|
||||
TMPFILE=pstemp
|
||||
# création d’un fichier temporaire psttemp.tex
|
||||
cat > $TMPFILE.tex <<EOF
|
||||
\documentclass{article}
|
||||
\usepackage{pstricks}
|
||||
\usepackage{pstricks-add}
|
||||
\usepackage{pst-eps}
|
||||
\usepackage{pst-plot}
|
||||
\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.*
|
||||
Reference in New Issue
Block a user