[TikZ et Gnuplot] Courbes représentative de fonctions

Tout ce qui concerne le langage TeX/LaTeX et ses variantes. Ce langage est utilisable sur le forum via les balises tex.
[participation réservée aux utilisateurs inscrits]
Règles du forum
Merci de soigner la rédaction de vos messages et de consulter ce sujet avant de poster. Pensez également à utiliser la fonction recherche du forum.
anais1703

[TikZ et Gnuplot] Courbes représentative de fonctions

Message non lu par anais1703 »

Bonjour, je suis débutante sur LaTeX et je souhaite faire une courbe représentative d'une fonction. Après avoir cherché, il me semble qu'en utilisant TikZ et Gnuplot, le résultat est niquel ! J'utilise TeXMaker et MiKTeX 2.8 sous Windows XP. J'ai installé Gnuplot et en regardant un peu sur Internet, j'ai trouvé un exemple qui correspond au rendu que je désire. En voici le code :

Code : Tout sélectionner

\documentclass{minimal}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=2] % on multiplie les dimensions par 2
\draw[color=gray,thin,->,>=stealth] (-2.5,0)--(2.5,0); % l'axe des abscisses
\draw[color=gray,thin,->,>=stealth] (0,-2)--(0,2); % l'axe des ordonnées
\draw[color=gray] (1,-0.05)--(1,0.05) node[below=5pt] {$1$}; % le point (1,0)
\draw[color=gray] (-0.05,1)--(0.05,1) node[left=5pt] {$1$}; % le point (0,1)
\draw[color=blue!50,very thick,domain=-1.2:2.2] plot[id=parabole,smooth] function{x**2-x-1} node[left]{$y=x^2-x-1$};
\draw[color=red!50,line width=0.6pt,densely dashed] (0.5,-1.25)--(0.5,0) node[above] {$\frac{1}{2}$};
\draw[color=red!50,thick,<->,>=stealth] (0.1,-1.25)--(0.9,-1.25);
\fill[color=red!50] (0.5,-1.25) circle(1pt);
\end{tikzpicture}
\end{document}
Lorsque je compile avec PdfLatex j'ai bien tout sauf le graphe (i.e. les axes, l'équation de la courbe, le point, la tangente mais pas la courbe en elle même) !!! :(
Est-ce que quelqu'un serait d'où viens le problème ???
Altermundus
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 557
Inscription : lundi 28 mai 2007, 10:31
Statut actuel : Autre
Localisation : Paris
Contact :

Re: [TikZ+Gnuplot] Courbes représentative de fonctions

Message non lu par Altermundus »

Le problème est souvent dû à un problème de chemin ou bien au fait que tu n'as autorisé TeX à lancer un programme externe.

Voici un document qu'un utilisateur de mes packages a fait . Il te permet d'installer gnuplot correctement et en plus si tu veux utiliser tkz-fct ( un peu vieux mais qui fonctionne) tu auras une méthode gnuplot doit avoir une version plus récente mais attention car il y a un truc à modifier dans les fichiers tikz car gnuplot a changé de syntaxe mais là je peux d'aider.

Code : Tout sélectionner

\documentclass{article}

\usepackage[T1]{fontenc}
\usepackage{hyperref}
\usepackage{url}

\begin{document}
\section*{How to work with the tkz-\LaTeX-package under Windows?}

Download and install the following files (if not yet done):
\begin{enumerate}

  \item the \LaTeX-system MiKTeX from

      \url{http://www.miktex.org/}.

      What file you need (e.g.
      \texttt{basic-miktex-2.7.2904.exe}) and how to install
      this program is explained there in the "Download"
      section of the respective version (current version is
      2.7). In general and as usual in windows, you run the
      setup process by starting the setup file, e.g.
      \texttt{basic-miktex-2.7.2904.exe}).

  \item Till Tantau's \LaTeX-package \texttt{pgf-tikZ} from

      \url{http://sourceforge.net/projects/pgf/}.

      "For MiKTeX, use the update wizard [of MiKTeX] to
      install the (latest versions of the) packages called
      \texttt{pgf}, \texttt{xcolor}, and \texttt{xkeyval}."
      (cited from the pgf manual, contained in the files
      downloaded).

  \item the math program \texttt{gnuplot} from

      \url{http://www.gnuplot.info/}.

      You need the file \texttt{gp422win32.zip}.

      Unzip the content of this file in a directory, e.g.
      \texttt{D:/Program Files/gnuplot}.

      \textbf{Important}:

      \begin{itemize}
        \item Add the directory \texttt{gnuplot/bin} to
            the \emph{PATH enviroment variable}

      (via Start/ \ldots /System/Extended/Enviroment
      variables).
        \item For use with MiKTeX, copy the file
            \texttt{'pgnuplot.exe'} in the \texttt{/bin}
            directory to \texttt{'gnuplot.exe'} --
            otherwise MiKTeX cannot find gnuplot.
      \end{itemize}

  \item the sty-files and the doc-files of Alain's tkz-package
      from

      \url{http://www.altermundus.fr/pages/download.html}.

      To add the files to MiKTeX:

      \begin{itemize}
        \item add a directory \texttt{prof} in the
            directory \texttt{[MiKTeX-dir]/latex/tex'},
            e.g. in windows explorer,
        \item copy the sty-files in this directory
            \texttt{prof},
        \item update the MiKTeX system, ether by running
            in a DOS shell the command \texttt{"mktexlsr
            -u"} or by clicking
            "Start/Programs/Miktex/Settings/General", then
            push the button "Refresh FNDB".
      \end{itemize}
\end{enumerate}

To be able to use the \texttt{pgf-tikz} package from within your
\LaTeX-editor (e.g. winedt or TeXnicCenter) or in an DOS shell,
you must call pdflatex with the command line parameter
\texttt{"--shell-escape"}. Otherwise the system cannot use the
gnuplot program, see the documentation of the pgf-tikZ package:

\begin{quote}
16.6 Plotting a Function Using Gnuplot

Often, you will want to plot points that are given via a
function like f(x) = x sin x. Unfortunately, T E X does
not really have enough computational power to generate
the points on such a function efficiently (it is a text
processing program, after all). However, if you allow
it, T E X can try to call external programs that can
easily produce the necessary points. Currently, TikZ
knows  how to call gnuplot.

[\ldots]

For the plotting mechanism to work, two conditions must
be met:

1. You must have allowed T E X to call external
programs. This is often switched of by default since
this is a security risk (you might, without knowing, run
a T E X file that calls all sorts of ``bad'' commands).
To enable this ``calling external programs'' a command
line option must be given to the T E X program. Usually,
it is called something like shell­escape or
enable­write18. For example, for my pdflatex the option
­­shell­escape can be given.

2. You must have installed the gnuplot program and T E X
must find it when compiling your file.
\end{quote}
\end{document}
Tu compiles et tu auras un pdf

Explication globale :

Tikz va faire passer un fichier à gnuplot, ce fichier tu peux le visualiser il se termine par .gnuplot.
Là il faut que ton éditeur connaisse le chemin pour trouver gnuplot, ensuite il faut que TeX autorise le lancement
Si cela fonctionne alors gnuplot crée un fichier .table. C'est un fichier qui contient des coordonnées de points.
Tikz récupère les points et trace la courbe mais avec des fonctions simples on peut se passer de gnuplot

Voilà
Alain
anais1703

Re: [TikZ+Gnuplot] Courbes représentative de fonctions

Message non lu par anais1703 »

Merci beaucoup c'est bon ça marche !!!! :clapping: C'était un problème d'installation.
anais1703

Re: [TikZ+Gnuplot] Courbes représentative de fonctions

Message non lu par anais1703 »

anais1703 a écrit :Merci beaucoup c'est bon ça marche !!!! :clapping: C'était un problème d'installation.
Ben en fait, non ça marche pas :cursing:
Je viens de me remettre à la rédaction de mon fichier et lorsque j'ai compilé plus de courbe sur mon fichier pdf :cry: et le fichier log me dit alors :
Package pgf Warning: Plot data file `Cor_Devoir_1.parabole.table' not found.
Quelqu'un sait d'où vient ce problème ???????
Altermundus
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 557
Inscription : lundi 28 mai 2007, 10:31
Statut actuel : Autre
Localisation : Paris
Contact :

Re: [TikZ+Gnuplot] Courbes représentative de fonctions

Message non lu par Altermundus »

anais1703 a écrit :
anais1703 a écrit :Merci beaucoup c'est bon ça marche !!!! :clapping: C'était un problème d'installation.
Ben en fait, non ça marche pas :cursing:
Je viens de me remettre à la rédaction de mon fichier et lorsque j'ai compilé plus de courbe sur mon fichier pdf :cry: et le fichier log me dit alors :
Package pgf Warning: Plot data file `Cor_Devoir_1.parabole.table' not found.
Quelqu'un sait d'où vient ce problème ???????
Il faudrait voir une plus grande partie du log car là c'est trop juste.

Pour un dépannage, il y a la possibilité de lancer gnuplot à la main et de charger Cor_Devoir_1.parabole.gnuplot si celui-là est créé.
Si ce n'est pas le cas alors c'est plus grave.

Trois cas peuvent se présenter
1) gnuplot n'est pas trouvé, cela doit se lire dans le .log. C'est alors un problème de chemin. Cela peut dépendre de l'éditeur et surtout des préférences utilisées
2) Ensuite voir si l'option shell-escape ou enable write18 est activée, cela se lit au début du .log
3) Suivant la version de gnuplot utilisée, il y a un fichier de tikz à patcher

Conclusion :
mettre un plus grand bout du .log
donner le nom de l'éditeur
la version de gnuplot
la version de tikz

Si tu veux tu peux m'envoyer directement le .log ici « al dot ma at mac dot com »
Alain
anais1703

Re: [TikZ et Gnuplot] Courbes représentative de fonctions

Message non lu par anais1703 »

Alors, voici tous le fichier log :

Code : Tout sélectionner

This is pdfTeX, Version 3.1415926-1.40.10 (MiKTeX 2.8) (preloaded format=pdflatex 2010.8.10) 24 AUG 2010 15:08
entering extended mode
**Cor_Devoir_1.tex
("C:\Documents and Settings\utilisateur\Mes documents\Anaïs\Cours\Première S\Fi
chiers TeX\Cor_Devoir_1.tex"
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, dumylang, nohyphenation, ge
rman, ngerman, german-x-2009-06-19, ngerman-x-2009-06-19, french, loaded.
("C:\Program Files\MiKTeX 2.8\tex\latex\base\article.cls"
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
("C:\Program Files\MiKTeX 2.8\tex\latex\base\size10.clo"
File: size10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
("C:\Program Files\MiKTeX 2.8\tex\latex\base\inputenc.sty"
Package: inputenc 2008/03/30 v1.1d Input encoding file
\inpenc@prehook=\toks14
\inpenc@posthook=\toks15
("C:\Program Files\MiKTeX 2.8\tex\latex\unicode\utf8x.def"
File: utf8x.def 2004/10/17 UCS: Input encoding UTF-8
))
("C:\Program Files\MiKTeX 2.8\tex\latex\unicode\ucs.sty"
Package: ucs 2004/10/17 UCS: Unicode input support
("C:\Program Files\MiKTeX 2.8\tex\latex\unicode\data\uni-global.def"
File: uni-global.def 2004/10/17 UCS: Unicode global data
)
\uc@secondtry=\count87
\uc@combtoks=\toks16
\uc@combtoksb=\toks17
\uc@temptokena=\toks18
)
("C:\Program Files\MiKTeX 2.8\tex\latex\base\fontenc.sty"
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
("C:\Program Files\MiKTeX 2.8\tex\latex\base\t1enc.def"
File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
))
("C:\Program Files\MiKTeX 2.8\tex\latex\lm\lmodern.sty"
Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
)
("C:\Program Files\MiKTeX 2.8\tex\generic\babel\babel.sty"
Package: babel 2008/07/06 v3.8l The Babel package
*************************************
* Local config file bblopts.cfg used
*
("C:\Program Files\MiKTeX 2.8\tex\latex\00miktex\bblopts.cfg"
File: bblopts.cfg 2006/07/31 v1.0 MiKTeX 'babel' configuration
)
("C:\Program Files\MiKTeX 2.8\tex\generic\babel\frenchb.ldf"
Language: frenchb 2009/03/16 v2.3d French support from the babel system
("C:\Program Files\MiKTeX 2.8\tex\generic\babel\babel.def"
File: babel.def 2008/07/06 v3.8l Babel common definitions
\babel@savecnt=\count88
\U@D=\dimen103
)
Package babel Info: Making : an active character on input line 120.
Package babel Info: Making ; an active character on input line 121.
Package babel Info: Making ! an active character on input line 122.
Package babel Info: Making ? an active character on input line 123.
\FB@Mht=\dimen104
\std@mcc=\count89
\dec@mcc=\count90
\parindentFFN=\dimen105
*************************************
* Local config file frenchb.cfg used
*
("C:\Program Files\MiKTeX 2.8\tex\generic\babel\frenchb.cfg")))
("C:\Program Files\MiKTeX 2.8\tex\latex\carlisle\scalefnt.sty")
("C:\Program Files\MiKTeX 2.8\tex\latex\graphics\keyval.sty"
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks19
)
("C:\Program Files\MiKTeX 2.8\tex\latex\ams\math\amsmath.sty"
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip43
For additional information on amsmath, use the `?' option.
("C:\Program Files\MiKTeX 2.8\tex\latex\ams\math\amstext.sty"
Package: amstext 2000/06/29 v2.01
("C:\Program Files\MiKTeX 2.8\tex\latex\ams\math\amsgen.sty"
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks20
\ex@=\dimen106
))
("C:\Program Files\MiKTeX 2.8\tex\latex\ams\math\amsbsy.sty"
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen107
)
("C:\Program Files\MiKTeX 2.8\tex\latex\ams\math\amsopn.sty"
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count91
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count92
\leftroot@=\count93
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count94
\DOTSCASE@=\count95
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box26
\strutbox@=\box27
\big@size=\dimen108
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count96
\c@MaxMatrixCols=\count97
\dotsspace@=\muskip10
\c@parentequation=\count98
\dspbrk@lvl=\count99
\tag@help=\toks21
\row@=\count100
\column@=\count101
\maxfields@=\count102
\andhelp@=\toks22
\eqnshift@=\dimen109
\alignsep@=\dimen110
\tagshift@=\dimen111
\tagwidth@=\dimen112
\totwidth@=\dimen113
\lineht@=\dimen114
\@envbody=\toks23
\multlinegap=\skip44
\multlinetaggap=\skip45
\mathdisplay@stack=\toks24
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
("C:\Program Files\MiKTeX 2.8\tex\latex\amsfonts\amsfonts.sty"
Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 96.
)
("C:\Program Files\MiKTeX 2.8\tex\latex\amsfonts\amssymb.sty"
Package: amssymb 2009/06/22 v3.00
)
("C:\Program Files\MiKTeX 2.8\tex\latex\base\textcomp.sty"
Package: textcomp 2005/09/27 v1.99g Standard LaTeX package
Package textcomp Info: Sub-encoding information:
(textcomp) 5 = only ISO-Adobe without \textcurrency
(textcomp) 4 = 5 + \texteuro
(textcomp) 3 = 4 + \textohm
(textcomp) 2 = 3 + \textestimated + \textcurrency
(textcomp) 1 = TS1 - \textcircled - \t
(textcomp) 0 = TS1 (full)
(textcomp) Font families with sub-encoding setting implement
(textcomp) only a restricted character set as indicated.
(textcomp) Family '?' is the default used for unknown fonts.
(textcomp) See the documentation for details.
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71.
("C:\Program Files\MiKTeX 2.8\tex\latex\base\ts1enc.def"
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
)
LaTeX Info: Redefining \oldstylenums on input line 266.
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281.
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282.
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283.
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 284.
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285.
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286.
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287.
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288.
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289.
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290.
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291.
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292.
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293.
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294.
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295.
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 296.
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 297.
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 298.
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 299.
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 300.
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 301.
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 302.
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 303.
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 304.
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 305.
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 306.
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 307.
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 308.
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 309.
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 310.
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 311.
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 312.
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 313.
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 314.
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 315.
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 316.
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 317.
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 318.
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 319.
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 320.
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 321.
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 322.
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 323.
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 324.
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 325.
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 326.
)
("C:\Program Files\MiKTeX 2.8\tex\latex\fancyhdr\fancyhdr.sty"
\fancy@headwidth=\skip46
\f@ncyO@elh=\skip47
\f@ncyO@erh=\skip48
\f@ncyO@olh=\skip49
\f@ncyO@orh=\skip50
\f@ncyO@elf=\skip51
\f@ncyO@erf=\skip52
\f@ncyO@olf=\skip53
\f@ncyO@orf=\skip54
)
("C:\Program Files\MiKTeX 2.8\tex\latex\eurosym\eurosym.sty"
Package: eurosym 1998/08/06 v1.1 European currency symbol ``Euro''
\@eurobox=\box28
)
("C:\Program Files\MiKTeX 2.8\tex\latex\hyperref\hyperref.sty"
Package: hyperref 2010/06/18 v6.81g Hypertext links for LaTeX
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\ltxcmds.sty"
Package: ltxcmds 2010/04/26 v1.7 LaTeX kernel commands for general use (HO)
)
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\kvsetkeys.sty"
Package: kvsetkeys 2010/03/01 v1.9 Key value parser (HO)
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\infwarerr.sty"
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/message (HO)
)
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\etexcmds.sty"
Package: etexcmds 2010/01/28 v1.3 Prefix for e-TeX command names (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
))
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\pdfescape.sty"
Package: pdfescape 2010/03/01 v1.9 Provides hex, PDF name and string conversion
s (HO)
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\pdftexcmds.sty"
Package: pdftexcmds 2010/04/01 v0.9 Utility functions of pdfTeX for LuaTeX (HO)
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\ifluatex.sty"
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
))
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\ifpdf.sty"
Package: ifpdf 2010/01/28 v2.1 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in pdf mode detected.
)
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\ifvtex.sty"
Package: ifvtex 2010/03/01 v1.5 Switches for detecting VTeX and its modes (HO)
Package ifvtex Info: VTeX not detected.
)
("C:\Program Files\MiKTeX 2.8\tex\latex\ifxetex\ifxetex.sty"
Package: ifxetex 2009/01/23 v0.5 Provides ifxetex conditional
)
("C:\Program Files\MiKTeX 2.8\tex\latex\oberdiek\hycolor.sty"
Package: hycolor 2009/12/12 v1.6 Color options of hyperref/bookmark (HO)
("C:\Program Files\MiKTeX 2.8\tex\latex\oberdiek\xcolor-patch.sty"
Package: xcolor-patch 2009/12/12 xcolor patch
))
("C:\Program Files\MiKTeX 2.8\tex\latex\oberdiek\letltxmacro.sty"
Package: letltxmacro 2008/06/24 v1.3 Let assignment for LaTeX macros (HO)
)
\@linkdim=\dimen115
\Hy@linkcounter=\count103
\Hy@pagecounter=\count104
("C:\Program Files\MiKTeX 2.8\tex\latex\hyperref\pd1enc.def"
File: pd1enc.def 2010/06/18 v6.81g Hyperref: PDFDocEncoding definition (HO)
)
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\intcalc.sty"
Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO)
)
("C:\Program Files\MiKTeX 2.8\tex\latex\00miktex\hyperref.cfg"
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
("C:\Program Files\MiKTeX 2.8\tex\latex\oberdiek\kvoptions.sty"
Package: kvoptions 2010/02/22 v3.7 Keyval support for LaTeX options (HO)
)
Package hyperref Info: Hyper figures OFF on input line 3658.
Package hyperref Info: Link nesting OFF on input line 3663.
Package hyperref Info: Hyper index ON on input line 3666.
Package hyperref Info: Plain pages OFF on input line 3673.
Package hyperref Info: Backreferencing OFF on input line 3678.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 3874.
("C:\Program Files\MiKTeX 2.8\tex\latex\ltxmisc\url.sty"
\Urlmuskip=\muskip11
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4159.
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\bitset.sty"
Package: bitset 2007/09/28 v1.0 Data type bit set (HO)
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\bigintcalc.sty"
Package: bigintcalc 2007/11/11 v1.1 Expandable big integer calculations (HO)
))
\Fld@menulength=\count105
\Field@Width=\dimen116
\Fld@charsize=\dimen117
\Field@toks=\toks25
Package hyperref Info: Hyper figures OFF on input line 5137.
Package hyperref Info: Link nesting OFF on input line 5142.
Package hyperref Info: Hyper index ON on input line 5145.
Package hyperref Info: backreferencing OFF on input line 5152.
Package hyperref Info: Link coloring OFF on input line 5157.
Package hyperref Info: Link coloring with OCG OFF on input line 5162.
Package hyperref Info: PDF/A mode OFF on input line 5167.
LaTeX Info: Redefining \ref on input line 5207.
LaTeX Info: Redefining \pageref on input line 5211.
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\atbegshi.sty"
Package: atbegshi 2010/03/25 v1.12 At begin shipout hook (HO)
)
\Hy@abspage=\count106
\c@Item=\count107
\c@Hfootnote=\count108
)
* hyperref using default driver hpdftex *
("C:\Program Files\MiKTeX 2.8\tex\latex\hyperref\hpdftex.def"
File: hpdftex.def 2010/06/18 v6.81g Hyperref driver for pdfTeX
("C:\Program Files\MiKTeX 2.8\tex\latex\oberdiek\atveryend.sty"
Package: atveryend 2010/03/24 v1.5 Hooks at very end of document (HO)
Package atveryend Info: \enddocument detected (standard).
)
\Fld@listcount=\count109
\c@bookmark@seq@number=\count110
("C:\Program Files\MiKTeX 2.8\tex\latex\oberdiek\rerunfilecheck.sty"
Package: rerunfilecheck 2010/03/16 v1.6 Rerun checks for auxiliary files (HO)
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\uniquecounter.sty"
Package: uniquecounter 2009/12/18 v1.1 Provides unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
71.
)
\Hy@SectionHShift=\skip55
)
("C:\Program Files\MiKTeX 2.8\tex\latex\pgf\frontendlayer\tikz.sty"
("C:\Program Files\MiKTeX 2.8\tex\latex\pgf\basiclayer\pgf.sty"
("C:\Program Files\MiKTeX 2.8\tex\latex\pgf\utilities\pgfrcs.sty"
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\utilities\pgfutil-common.tex"
\pgfutil@everybye=\toks26
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\utilities\pgfutil-latex.def")
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\utilities\pgfrcs.code.tex"
Package: pgfrcs 2008/02/20 v2.00 (rcs-revision 1.21)
))
Package: pgf 2008/01/15 v2.00 (rcs-revision 1.12)
("C:\Program Files\MiKTeX 2.8\tex\latex\pgf\basiclayer\pgfcore.sty"
("C:\Program Files\MiKTeX 2.8\tex\latex\graphics\graphicx.sty"
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.8\tex\latex\graphics\graphics.sty"
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.8\tex\latex\graphics\trig.sty"
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
("C:\Program Files\MiKTeX 2.8\tex\latex\00miktex\graphics.cfg"
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: pdftex.def on input line 91.
("C:\Program Files\MiKTeX 2.8\tex\latex\pdftex-def\pdftex.def"
File: pdftex.def 2010/02/14 v0.04n Graphics/color for pdfTeX
\Gread@gobject=\count111
))
\Gin@req@height=\dimen118
\Gin@req@width=\dimen119
)
("C:\Program Files\MiKTeX 2.8\tex\latex\pgf\systemlayer\pgfsys.sty"
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\systemlayer\pgfsys.code.tex"
Package: pgfsys 2008/02/07 v2.00 (rcs-revision 1.31)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\utilities\pgfkeys.code.tex"
\pgfkeys@pathtoks=\toks27
\pgfkeys@temptoks=\toks28
)
\pgf@x=\dimen120
\pgf@y=\dimen121
\pgf@xa=\dimen122
\pgf@ya=\dimen123
\pgf@xb=\dimen124
\pgf@yb=\dimen125
\pgf@xc=\dimen126
\pgf@yc=\dimen127
\c@pgf@counta=\count112
\c@pgf@countb=\count113
\c@pgf@countc=\count114
\c@pgf@countd=\count115
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\systemlayer\pgf.cfg"
File: pgf.cfg 2008/01/13 (rcs-revision 1.6)
)
Package pgfsys Info: Driver file for pgf: pgfsys-pdftex.def on input line 885.
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\systemlayer\pgfsys-pdftex.def"
File: pgfsys-pdftex.def 2007/12/20 (rcs-revision 1.20)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\systemlayer\pgfsys-common-pdf.def
"
File: pgfsys-common-pdf.def 2007/12/17 (rcs-revision 1.8)
)))
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.t
ex"
File: pgfsyssoftpath.code.tex 2008/01/23 (rcs-revision 1.6)
\pgfsyssoftpath@smallbuffer@items=\count116
\pgfsyssoftpath@bigbuffer@items=\count117
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\systemlayer\pgfsysprotocol.code.t
ex"
File: pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4)
)) ("C:\Program Files\MiKTeX 2.8\tex\latex\xcolor\xcolor.sty"
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
("C:\Program Files\MiKTeX 2.8\tex\latex\00miktex\color.cfg"
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341.
Package xcolor Info: Model `RGB' extended on input line 1353.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360.
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcore.code.tex"
Package: pgfcore 2008/01/15 v2.00 (rcs-revision 1.6)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\math\pgfmath.code.tex"
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\math\pgfmathcalc.code.tex"
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\math\pgfmathutil.code.tex"
\pgfmath@box=\box29
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\math\pgfmathparser.code.tex"
\pgfmath@stack=\toks29
\c@pgfmath@parsecounta=\count118
\c@pgfmath@parsecountb=\count119
\c@pgfmath@parsecountc=\count120
\pgfmath@parsex=\dimen128
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\math\pgfmathoperations.code.tex"
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\math\pgfmathtrig.code.tex")
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\math\pgfmathrnd.code.tex"))
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\math\pgfmathbase.code.tex")))
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcorepoints.code.tex
"
File: pgfcorepoints.code.tex 2008/02/03 (rcs-revision 1.13)
\pgf@picminx=\dimen129
\pgf@picmaxx=\dimen130
\pgf@picminy=\dimen131
\pgf@picmaxy=\dimen132
\pgf@pathminx=\dimen133
\pgf@pathmaxx=\dimen134
\pgf@pathminy=\dimen135
\pgf@pathmaxy=\dimen136
\pgf@xx=\dimen137
\pgf@xy=\dimen138
\pgf@yx=\dimen139
\pgf@yy=\dimen140
\pgf@zx=\dimen141
\pgf@zy=\dimen142
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcorepathconstruct.c
ode.tex"
File: pgfcorepathconstruct.code.tex 2008/02/13 (rcs-revision 1.14)
\pgf@path@lastx=\dimen143
\pgf@path@lasty=\dimen144
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcorepathusage.code.
tex"
File: pgfcorepathusage.code.tex 2008/01/23 (rcs-revision 1.11)
\pgf@shorten@end@additional=\dimen145
\pgf@shorten@start@additional=\dimen146
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcorescopes.code.tex
"
File: pgfcorescopes.code.tex 2008/01/15 (rcs-revision 1.26)
\pgfpic=\box30
\pgf@hbox=\box31
\pgf@layerbox@main=\box32
\pgf@picture@serial@count=\count121
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcoregraphicstate.co
de.tex"
File: pgfcoregraphicstate.code.tex 2007/12/12 (rcs-revision 1.8)
\pgflinewidth=\dimen147
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcoretransformations
.code.tex"
File: pgfcoretransformations.code.tex 2008/02/04 (rcs-revision 1.10)
\pgf@pt@x=\dimen148
\pgf@pt@y=\dimen149
\pgf@pt@temp=\dimen150
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcorequick.code.tex"
File: pgfcorequick.code.tex 2006/10/11 (rcs-revision 1.2)
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcoreobjects.code.te
x"
File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2)
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcorepathprocessing.
code.tex"
File: pgfcorepathprocessing.code.tex 2008/01/23 (rcs-revision 1.7)
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcorearrows.code.tex
"
File: pgfcorearrows.code.tex 2007/06/07 (rcs-revision 1.8)
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcoreshade.code.tex"
File: pgfcoreshade.code.tex 2007/12/10 (rcs-revision 1.9)
\pgf@max=\dimen151
\pgf@sys@shading@range@num=\count122
) ("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcoreimage.code.te
x"
File: pgfcoreimage.code.tex 2008/01/15 (rcs-revision 1.1)
\pgfexternal@startupbox=\box33
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcorelayers.code.tex
"
File: pgfcorelayers.code.tex 2008/01/15 (rcs-revision 1.1)
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcoretransparency.co
de.tex"
File: pgfcoretransparency.code.tex 2008/01/17 (rcs-revision 1.2)
)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\basiclayer\pgfcorepatterns.code.t
ex"
File: pgfcorepatterns.code.tex 2008/01/15 (rcs-revision 1.1)
)))
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\modules\pgfmoduleshapes.code.tex"
File: pgfmoduleshapes.code.tex 2008/02/13 (rcs-revision 1.4)
\pgfnodeparttextbox=\box34
\toks@savedmacro=\toks30
) ("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\modules\pgfmoduleplot.code.tex"
File: pgfmoduleplot.code.tex 2008/01/15 (rcs-revision 1.1)
\pgf@plotwrite=\write3
)
("C:\Program Files\MiKTeX 2.8\tex\latex\pgf\compatibility\pgfcomp-version-0-65.
sty"
Package: pgfcomp-version-0-65 2007/07/03 v2.00 (rcs-revision 1.7)
\pgf@nodesepstart=\dimen152
\pgf@nodesepend=\dimen153
)
("C:\Program Files\MiKTeX 2.8\tex\latex\pgf\compatibility\pgfcomp-version-1-18.
sty"
Package: pgfcomp-version-1-18 2007/07/23 v2.00 (rcs-revision 1.1)
)) ("C:\Program Files\MiKTeX 2.8\tex\latex\pgf\utilities\pgffor.sty"
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\utilities\pgffor.code.tex"
Package: pgffor 2007/11/07 v2.00 (rcs-revision 1.8)
\pgffor@iter=\dimen154
\pgffor@skip=\dimen155
))
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex"
Package: tikz 2008/02/13 v2.00 (rcs-revision 1.27)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\libraries\pgflibraryplothandlers.
code.tex"
File: pgflibraryplothandlers.code.tex 2007/03/09 v2.00 (rcs-revision 1.9)
\pgf@plot@mark@count=\count123
\pgfplotmarksize=\dimen156
)
\tikz@lastx=\dimen157
\tikz@lasty=\dimen158
\tikz@lastxsaved=\dimen159
\tikz@lastysaved=\dimen160
\tikzleveldistance=\dimen161
\tikzsiblingdistance=\dimen162
\tikz@figbox=\box35
\tikz@tempbox=\box36
\tikztreelevel=\count124
\tikznumberofchildren=\count125
\tikznumberofcurrentchild=\count126
\tikz@fig@count=\count127
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\modules\pgfmodulematrix.code.tex"
File: pgfmodulematrix.code.tex 2008/01/15 (rcs-revision 1.1)
\pgfmatrixcurrentrow=\count128
\pgfmatrixcurrentcolumn=\count129
\pgf@matrix@numberofcolumns=\count130
)
\tikz@expandcount=\count131
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\frontendlayer\tikz\libraries\tikz
librarytopaths.code.tex"
File: tikzlibrarytopaths.code.tex 2008/01/09 v2.00 (rcs-revision 1.1)
)))
("C:\Program Files\MiKTeX 2.8\tex\latex\tkz-tab\tkz-tab.sty"
Package: tkz-tab 2009/02/21 v1.0c variations (ctan version)
("C:\Program Files\MiKTeX 2.8\tex\latex\misc\etex.sty"
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count132
)
("C:\Program Files\MiKTeX 2.8\tex\latex\base\ifthen.sty"
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
("C:\Program Files\MiKTeX 2.8\tex\latex\xkeyval\xkeyval.sty"
Package: xkeyval 2008/08/13 v2.6a package option processing (HA)
("C:\Program Files\MiKTeX 2.8\tex\generic\xkeyval\xkeyval.tex"
\XKV@toks=\toks31
\XKV@tempa@toks=\toks32
\XKV@depth=\count133
File: xkeyval.tex 2008/08/13 v2.6a key=value parser (HA)
))
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\frontendlayer\tikz\libraries\tikz
libraryarrows.code.tex"
File: tikzlibraryarrows.code.tex 2008/01/09 v2.00 (rcs-revision 1.1)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\libraries\pgflibraryarrows.code.t
ex"
File: pgflibraryarrows.code.tex 2007/06/07 v2.00 (rcs-revision 1.7)
))
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\frontendlayer\tikz\libraries\tikz
librarypatterns.code.tex"
File: tikzlibrarypatterns.code.tex 2008/01/15 v2.00 (rcs-revision 1.2)
("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\libraries\pgflibrarypatterns.code
.tex"
File: pgflibrarypatterns.code.tex 2008/01/15 v2.00 (rcs-revision 1.12)
))
\tkz@XF=\dimen163
\tkz@YF=\dimen164
\c@tkz@cnt@line=\count134
\c@tkz@cnt@lg=\count135
\c@tkz@cnt@cl=\count136
\c@tkz@cnt@pred=\count137
\c@tkz@cnt@temp=\count138
\c@tkz@cnt@arrow=\count139
\c@tkz@cnt@zone=\count140
\c@tkz@cnt@lgnext=\count141
\c@tkz@cnt@clnext=\count142
\c@tkz@cnt@pair=\count143
\c@tkz@cnt@impair=\count144
\c@tkz@cnt@aw=\count145
) ("C:\Program Files\MiKTeX 2.8\tex\latex\microtype\microtype.sty"
Package: microtype 2010/01/10 v2.4 Micro-typography with pdfTeX (RS)
\MT@toks=\toks33
\MT@count=\count146
LaTeX Info: Redefining \lsstyle on input line 1597.
LaTeX Info: Redefining \lslig on input line 1597.
\MT@outer@space=\skip56
LaTeX Info: Redefining \textls on input line 1605.
\MT@outer@kern=\dimen165
LaTeX Info: Redefining \textmicrotypecontext on input line 2156.
Package microtype Info: Loading configuration file microtype.cfg.
("C:\Program Files\MiKTeX 2.8\tex\latex\microtype\microtype.cfg"
File: microtype.cfg 2010/01/10 v2.4 microtype main configuration file (RS)
))
("C:\Program Files\MiKTeX 2.8\tex\latex\geometry\geometry.sty"
Package: geometry 2010/07/13 v5.5 Page Geometry
\Gm@cnth=\count147
\Gm@cntv=\count148
\c@Gm@tempcnt=\count149
\Gm@bindingoffset=\dimen166
\Gm@wd@mp=\dimen167
\Gm@odd@mp=\dimen168
\Gm@even@mp=\dimen169
\Gm@layoutwidth=\dimen170
\Gm@layoutheight=\dimen171
\Gm@layouthoffset=\dimen172
\Gm@layoutvoffset=\dimen173
\Gm@dimlist=\toks34
("C:\Program Files\MiKTeX 2.8\tex\latex\geometry\geometry.cfg"))
("C:\Program Files\MiKTeX 2.8\tex\latex\unicode\data\uni-0.def"
File: uni-0.def 2004/10/17 UCS: Unicode data U+0000..U+00FF
)
("C:\Documents and Settings\utilisateur\Mes documents\Anaïs\Cours\Première S\Fi
chiers TeX\Cor_Devoir_1.aux")
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 19.
LaTeX Font Info: ... okay on input line 19.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 19.
LaTeX Font Info: ... okay on input line 19.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 19.
LaTeX Font Info: ... okay on input line 19.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 19.
LaTeX Font Info: ... okay on input line 19.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 19.
LaTeX Font Info: ... okay on input line 19.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 19.
LaTeX Font Info: ... okay on input line 19.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 19.
LaTeX Font Info: Try loading font information for TS1+cmr on input line 19.
("C:\Program Files\MiKTeX 2.8\tex\latex\base\ts1cmr.fd"
File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 19.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 19.
LaTeX Font Info: ... okay on input line 19.
LaTeX Font Info: Try loading font information for T1+lmr on input line 19.
("C:\Program Files\MiKTeX 2.8\tex\latex\lm\t1lmr.fd"
File: t1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
("C:\Program Files\MiKTeX 2.8\tex\latex\unicode\ucsencs.def"
File: ucsencs.def 2003/11/29 Fixes to fontencodings LGR, T3
)
LaTeX Info: Redefining \degres on input line 19.
LaTeX Info: Redefining \dots on input line 19.
LaTeX Info: Redefining \up on input line 19.
\AtBeginShipoutBox=\box37
Package hyperref Info: Link coloring OFF on input line 19.
("C:\Program Files\MiKTeX 2.8\tex\latex\hyperref\nameref.sty"
Package: nameref 2010/04/30 v2.40 Cross-referencing by name of section
("C:\Program Files\MiKTeX 2.8\tex\latex\oberdiek\refcount.sty"
Package: refcount 2008/08/11 v3.1 Data extraction from references (HO)
)
("C:\Program Files\MiKTeX 2.8\tex\generic\oberdiek\gettitlestring.sty"
Package: gettitlestring 2009/12/18 v1.3 Cleanup title references (HO)
)
\c@section@level=\count150
)
LaTeX Info: Redefining \ref on input line 19.
LaTeX Info: Redefining \pageref on input line 19.
LaTeX Info: Redefining \nameref on input line 19.
("C:\Documents and Settings\utilisateur\Mes documents\Anaïs\Cours\Première S\Fi
chiers TeX\Cor_Devoir_1.out")
("C:\Documents and Settings\utilisateur\Mes documents\Anaïs\Cours\Première S\Fi
chiers TeX\Cor_Devoir_1.out")
\@outlinefile=\write4
("C:\Program Files\MiKTeX 2.8\tex\context\base\supp-pdf.tex"
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count151
\scratchdimen=\dimen174
\scratchbox=\box38
\nofMPsegments=\count152
\nofMParguments=\count153
\everyMPshowfont=\toks35
\MPscratchCnt=\count154
\MPscratchDim=\dimen175
\MPnumerator=\count155
\everyMPtoPDFconversion=\toks36
)
LaTeX Info: Redefining \microtypecontext on input line 19.
Package microtype Info: Generating PDF output.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using default protrusion set `alltext'.
Package microtype Info: Automatic font expansion enabled (level 2),
(microtype) stretch: 20, shrink: 20, step: 1, non-selected.
Package microtype Info: Using default expansion set `basictext'.
Package microtype Info: No tracking.
Package microtype Info: No adjustment of interword spacing.
Package microtype Info: Adjustment of character kerning enabled.
Package microtype Info: Using default kerning set `alltext'.
Package microtype Info: Redefining babel's language switching commands.
Package microtype Info: Switching off French babel's active characters (:;!?).
("C:\Program Files\MiKTeX 2.8\tex\latex\microtype\mt-cmr.cfg"
File: mt-cmr.cfg 2009/11/09 v2.0 microtype config. file: Computer Modern Roman
(RS)
)
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(56.9055pt, 483.69687pt, 56.9055pt)
* v-part:(T,H,B)=(56.9055pt, 731.23584pt, 56.9055pt)
* \paperwidth=597.50787pt
* \paperheight=845.04684pt
* \textwidth=483.69687pt
* \textheight=731.23584pt
* \oddsidemargin=-15.36449pt
* \evensidemargin=-15.36449pt
* \topmargin=-52.36449pt
* \headheight=12.0pt
* \headsep=25.0pt
* \topskip=10.0pt
* \footskip=30.0pt
* \marginparwidth=57.0pt
* \marginparsep=11.0pt
* \columnsep=10.0pt
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
LaTeX Font Info: Try loading font information for OT1+lmr on input line 21.
("C:\Program Files\MiKTeX 2.8\tex\latex\lm\ot1lmr.fd"
File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OML+lmm on input line 21.
("C:\Program Files\MiKTeX 2.8\tex\latex\lm\omllmm.fd"
File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OMS+lmsy on input line 21.
("C:\Program Files\MiKTeX 2.8\tex\latex\lm\omslmsy.fd"
File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OMX+lmex on input line 21.
("C:\Program Files\MiKTeX 2.8\tex\latex\lm\omxlmex.fd"
File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <12> on input line 21.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <8> on input line 21.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <6> on input line 21.
LaTeX Font Info: Try loading font information for U+msa on input line 21.
("C:\Program Files\MiKTeX 2.8\tex\latex\amsfonts\umsa.fd"
File: umsa.fd 2009/06/22 v3.00 AMS symbols A
)
("C:\Program Files\MiKTeX 2.8\tex\latex\microtype\mt-msa.cfg"
File: mt-msa.cfg 2006/02/04 v1.1 microtype config. file: AMS symbols (a) (RS)
)
LaTeX Font Info: Try loading font information for U+msb on input line 21.
("C:\Program Files\MiKTeX 2.8\tex\latex\amsfonts\umsb.fd"
File: umsb.fd 2009/06/22 v3.00 AMS symbols B
)
("C:\Program Files\MiKTeX 2.8\tex\latex\microtype\mt-msb.cfg"
File: mt-msb.cfg 2005/06/01 v1.0 microtype config. file: AMS symbols (b) (RS)
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <10> on input line 23.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <7> on input line 23.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <5> on input line 23.
runsystem(gnuplot Cor_Devoir_1.parabole.gnuplot)...executed.
Package pgf Warning: Plot data file `Cor_Devoir_1.parabole.table' not found. on
input line 57.
[1
{C:/Documents and Settings/All Users/Application Data/MiKTeX/2.8/pdftex/config/
pdftex.map}] [2] [3]
<"C:/Documents and Settings/utilisateur/Mes documents/Mes images/Maths".jpg, id
=62, 238.8925pt x 238.8925pt>
File: "C:/Documents and Settings/utilisateur/Mes documents/Mes images/Maths".jp
g Graphic file (type jpg)
<use "C:/Documents and Settings/utilisateur/Mes documents/Mes images/Maths".jpg
>
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 134.
[4 <C:/Documents and Settings/utilisateur/Mes documents/Mes images/Maths.jpg>]
Package atveryend Info: Empty hook `AfterLastShipout' on input line 134.
("C:\Documents and Settings\utilisateur\Mes documents\Anaïs\Cours\Première S\Fi
chiers TeX\Cor_Devoir_1.aux")
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 134.
Package rerunfilecheck Info: File `Cor_Devoir_1.out' has not changed.
(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0.
)
Here is how much of TeX's memory you used:
17580 strings out of 495285
290483 string characters out of 3180271
455999 words of memory out of 3000000
20303 multiletter control sequences out of 15000+200000
64391 words of font info for 73 fonts, out of 3000000 for 9000
14 hyphenation exceptions out of 8191
47i,14n,72p,657b,932s stack positions out of 5000i,500n,10000p,200000b,50000s
{C:/Program Files/MiKTeX 2.8/fonts/enc/dvips/lm/lm-ec.enc}{C:/Program Files/M
iKTeX 2.8/fonts/enc/dvips/lm/lm-mathex.enc}{C:/Program Files/MiKTeX 2.8/fonts/e
nc/dvips/lm/lm-mathit.enc}{C:/Program Files/MiKTeX 2.8/fonts/enc/dvips/lm/lm-ma
thsy.enc}{C:/Program Files/MiKTeX 2.8/fonts/enc/dvips/lm/lm-rm.enc}<C:/Program
Files/MiKTeX 2.8/fonts/type1/public/lm/lmbx10.pfb><C:/Program Files/MiKTeX 2.8/
fonts/type1/public/lm/lmbx12.pfb><C:/Program Files/MiKTeX 2.8/fonts/type1/publi
c/lm/lmex10.pfb><C:/Program Files/MiKTeX 2.8/fonts/type1/public/lm/lmmi10.pfb><
C:/Program Files/MiKTeX 2.8/fonts/type1/public/lm/lmmi7.pfb><C:/Program Files/M
iKTeX 2.8/fonts/type1/public/lm/lmr10.pfb><C:/Program Files/MiKTeX 2.8/fonts/ty
pe1/public/lm/lmr12.pfb><C:/Program Files/MiKTeX 2.8/fonts/type1/public/lm/lmr7
.pfb><C:/Program Files/MiKTeX 2.8/fonts/type1/public/lm/lmr9.pfb><C:/Program Fi
les/MiKTeX 2.8/fonts/type1/public/lm/lmri10.pfb><C:/Program Files/MiKTeX 2.8/fo
nts/type1/public/lm/lmsy10.pfb><C:/Program Files/MiKTeX 2.8/fonts/type1/public/
lm/lmsy7.pfb><C:/Program Files/MiKTeX 2.8/fonts/type1/public/amsfonts/symbols/m
sbm10.pfb>
Output written on Cor_Devoir_1.pdf (4 pages, 263244 bytes).
PDF statistics:
129 PDF objects out of 1000 (max. 8388607)
39 named destinations out of 1000 (max. 500000)
24594 words of extra memory for PDF output out of 24883 (max. 10000000)
Sinon, je suis sous Windows XP , j'utilise TeXMaker 2.0 comme éditeur et MiKTeX 2.8 comme distribution.
Pour ce qui est de la version de Gnuplot : c'est la version 4.4 apparemment et pour TikZ, je ne sais pas où l'on voit la version !!!
Voila, j'espère que tu va pouvoir m'aider ...
Altermundus
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 557
Inscription : lundi 28 mai 2007, 10:31
Statut actuel : Autre
Localisation : Paris
Contact :

Re: [TikZ et Gnuplot] Courbes représentative de fonctions

Message non lu par Altermundus »

Pour Tikz c'est bon :

("C:\Program Files\MiKTeX 2.8\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex"
Package: tikz 2008/02/13 v2.00 (rcs-revision 1.27)

Pour gnuplot, le problème se pose car c'est la 4.4 et il y a incompatibilité avec Tikz 2.00

Sinon dans le log tu as :
runsystem(gnuplot Cor_Devoir_1.parabole.gnuplot)...executed. qui semble indiquer que gnuplot est trouvé et lancé mais tu n'as répondu si tu avais autorisé le "shell-escape".
En principe le log commence par :
This is pdfTeX, Version 3.1415926-1.40.11 (TeX Live 2010) (format=pdflatex 2010.8.15) 24 AUG 2010 17:16
entering extended mode
\write18 enabled.

\write18 enabled me dit que j'ai autorisé tex à lancer gnuplot donc comme je ne connais pas MikTeX, j'ai un doute
si quelqu'un peut nous renseigner ce serait sympa!

Ce que tu peux faire tout d'abord c'est de vérifier que "Cor_Devoir_1.parabole.table" n'existe pas sur ton disque.
Logiquement il est là :
"C:\Documents and Settings\utilisateur\Mes documents\Anaïs\Cours\Première S\Fichiers TeX\Cor_Devoir_1.table".

Ce qui est étrange c'est qu'en principe gnuplot prévient que "set terminal table" est obsolète

Vérifies que tu as "C:\Documents and Settings\utilisateur\Mes documents\Anaïs\Cours\Première S\Fichiers TeX\Cor_Devoir_1.gnuplot" Si tu ne l'as pas c'est \write18 is not enabled.
Ce fichier commence par : set terminal table; set output

Ensuite tu peux lancer gnuplot et exécuter ce fichier. Il doit te dire qu'il y a un problème et qu'il faut "set table" à la place de "set terminal table". Tu peux faire le changement à la main et tu auras un fichier "Cor_Devoir_1.table" .
Une fois ce fichier obtenu tu pux reprendre la compilation normale du fichier.

Si le problème est bien celui-là le mieux est de pacher

"C:\Program Files\MiKTeX 2.8\tex\generic\pgf\modules\pgfmoduleplot.code.tex" je pense que c'est le bon chemin sinon tu cherches pgfmoduleplot.code.tex et tu modifies la ligne 288
en remplaçant

Code : Tout sélectionner

  \xdef\pgf@gnuplot@head#1{set terminal table; set output "#1.table"; set format "%.5f"}
par

Code : Tout sélectionner

  \xdef\pgf@gnuplot@head#1{set table; set output "#1.table"; set format "%.5f"}
Ce patch est appliqué dans la version cvs de tikz :


2009-11-15 Christian Feuersaenger <...>
replaced 'set terminal table; set output ""' by 'set table ""' to maintain compatibility with the new gnuplot version.


Alain
anais1703

Re: [TikZ et Gnuplot] Courbes représentative de fonctions

Message non lu par anais1703 »

Altermundus a écrit : Sinon dans le log tu as :
runsystem(gnuplot Cor_Devoir_1.parabole.gnuplot)...executed. qui semble indiquer que gnuplot est trouvé et lancé mais tu n'as répondu si tu avais autorisé le "shell-escape".
Pour la compilation, j'ai bien insérer "shell-escape". ce qui me donne comme commande : pdflatex -interaction=nonstopmode -shell-escape %.tex
Altermundus a écrit : Ce que tu peux faire tout d'abord c'est de vérifier que "Cor_Devoir_1.parabole.table" n'existe pas sur ton disque.
Logiquement il est là :
"C:\Documents and Settings\utilisateur\Mes documents\Anaïs\Cours\Première S\Fichiers TeX\Cor_Devoir_1.table".
J'ai vérifié et j'ai un fichier Cor_Devoir_1.parabole.gnuplot mais je ne sais pas par quoi commence et fini ce fichier vu que je n'arrive pas à l'ouvrir (Windows ne sait pas quoi utilisé comme application)
Altermundus a écrit : "C:\Program Files\MiKTeX 2.8\tex\generic\pgf\modules\pgfmoduleplot.code.tex" je pense que c'est le bon chemin sinon tu cherches pgfmoduleplot.code.tex et tu modifies la ligne 288
en remplaçant

Code : Tout sélectionner

  \xdef\pgf@gnuplot@head#1{set terminal table; set output "#1.table"; set format "%.5f"}
par

Code : Tout sélectionner

  \xdef\pgf@gnuplot@head#1{set table; set output "#1.table"; set format "%.5f"}
C'est bon ça je l'ai fait !!!
Altermundus
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 557
Inscription : lundi 28 mai 2007, 10:31
Statut actuel : Autre
Localisation : Paris
Contact :

Re: [TikZ et Gnuplot] Courbes représentative de fonctions

Message non lu par Altermundus »

Pour le .gnuplot, sur mac je l'ouvre avec n'importe quel éditeur de texte aussi je pense que cela doit être la même chose avec windows.

Le problème "set terminal table" étant résolu, il reste un dernier point et c'est gnuplot qui semble résister.

Ce qui m'ennuie un peu c'est l'absence de write18 enabled dans le log. Je ne connais rien à Miktex mais tu peux essayer --shell-escape ( deux - devant shell).
Sinon la doc de tablor à ce sujet dit
-enable-write18 –shell-escape carrément les deux pour moi c'est un peu la même chose! si un connaisseur de MikTex est dans le coin ainsi que de texmaker, j'aimerais bien une explication

Autres possibilités : faire un essai avec texworks qui n'est pas mal, pour voir si le mal est dû essentiellement à texmaker

ainsi qu'un essai en ligne de commande, je crois que c'est possible aussi sous windows avec pdflatex --shell-escape etc...

Alain
Alain
anais1703

Re: [TikZ et Gnuplot] Courbes représentative de fonctions

Message non lu par anais1703 »

Alors, j'ai essayé les différentes possibilité, ça marche pas. Ce que j'ai donc fais c'est que vu que le fichier .parabole.gnuplot est crée, je l'ouvre manuellement avec gnuplot et ça me crée le fichier.table. C'est pas l'idéal mais ça fonctionne.
Tu serais pas par hasard faire des histogramme et des diagrammes en boite avec Gnuplot ou SPSS PASW Statistics 18 (Logiciel qui a l'air super bien si on sait le faire fonctionné mais malheureusement j'ai télécharger la version 18.0 et je ne trouve rien en français sur google pour m'aider)
Altermundus
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 557
Inscription : lundi 28 mai 2007, 10:31
Statut actuel : Autre
Localisation : Paris
Contact :

Re: [TikZ et Gnuplot] Courbes représentative de fonctions

Message non lu par Altermundus »

anais1703 a écrit :Alors, j'ai essayé les différentes possibilité, ça marche pas. Ce que j'ai donc fais c'est que vu que le fichier .parabole.gnuplot est crée, je l'ouvre manuellement avec gnuplot et ça me crée le fichier.table. C'est pas l'idéal mais ça fonctionne.
Tu serais pas par hasard faire des histogramme et des diagrammes en boite avec Gnuplot ou SPSS PASW Statistics 18 (Logiciel qui a l'air super bien si on sait le faire fonctionné mais malheureusement j'ai télécharger la version 18.0 et je ne trouve rien en français sur google pour m'aider)
Ce n'est pas normal. Tu as bien renommé wgnuplot en gnuplot ?
et tu as bien rajouté C:\ProgramFiles\gnuplot\bin dans le path ?

Il faudrait que tu recherches gnuplot pour voir à quel endroit il est ?
Texworks pose le même problème ? j'ai eu également des problèmes de ce genre
avec texmaker sur le mac

Sinon pour les histogrammes et les diagramme en boîte non je ne connais pas
Pour les dessins, je les fais avec mes propres packages.

Alain
Répondre
  • Sujets similaires
    Réponses
    Vues
    Dernier message