ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* pgfplots error
@ 2012-11-20 22:54 Thomas Weißschuh
  2012-11-20 23:16 ` Aditya Mahajan
  2012-11-20 23:20 ` Thomas Weißschuh
  0 siblings, 2 replies; 8+ messages in thread
From: Thomas Weißschuh @ 2012-11-20 22:54 UTC (permalink / raw)
  To: ntg-context

Hi,

while trying to use the module pgfplots from latest ConTeXt minimals I
encountered the following error:

  [..]
  )) (/home/t-8ch/Projekte/context/minimals/tex/texmf-modules/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) (/home/t-8ch/Projekte/context/minimals/tex/texmf-modules/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex (/home/t-8ch/Projekte/context/minimals/tex/texmf-modules/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)) (/home/t-8ch/Projekte/context/minimals/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.codetex
  ! LuaTeX error <\directlua >:1: module 'pgfplots.lua' not found:
  	no field package.preload['pgfplots.lua']
  	no file './pgfplots/lua.so'
  	no file '/usr/local/lib/lua/5.1/pgfplots/lua.so'
  	no file '/usr/local/lib/lua/5.1/loadall.so'
  	no file './pgfplots.so'
  	no file '/usr/local/lib/lua/5.1/pgfplots.so'
  	no file '/usr/local/lib/lua/5.1/loadall.so'
  stack traceback:
  	[C]: in function 'require'
  	<\directlua >:1: in main chunk.

ConTeXt version: 2012.11.16 23:51

This could be fixed by removing the suffix '.lua' from the argument
to `require(pgfplots.lua)` in line 1979 of the file
tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex

  diff --git a/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex.old b/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex
  index 0ef2cb0..6d504a7 100644
  --- a/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex.old
  +++ b/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex
  @@ -1976,7 +1976,7 @@
   \catcode`\%=12 \gdef\pgfplotsPERCENT{%}}

   \pgfutil@IfUndefined{directlua}{}{%
  -	\directlua{require(\pgfplotsDQ pgfplots.lua\pgfplotsDQ)}%
  +	\directlua{require(\pgfplotsDQ pgfplots\pgfplotsDQ)}%
   }%

   % swaps the content of two macros

Is this report sufficient or should I also contact pgfplots upstream?

Regards,
Thomas

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: pgfplots error
  2012-11-20 22:54 pgfplots error Thomas Weißschuh
@ 2012-11-20 23:16 ` Aditya Mahajan
  2012-11-21 12:10   ` Mojca Miklavec
  2012-11-20 23:20 ` Thomas Weißschuh
  1 sibling, 1 reply; 8+ messages in thread
From: Aditya Mahajan @ 2012-11-20 23:16 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: TEXT/PLAIN, Size: 2190 bytes --]

On Tue, 20 Nov 2012, Thomas Weißschuh wrote:

> Hi,
>
> while trying to use the module pgfplots from latest ConTeXt minimals I
> encountered the following error:
>
>  [..]
>  )) (/home/t-8ch/Projekte/context/minimals/tex/texmf-modules/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) (/home/t-8ch/Projekte/context/minimals/tex/texmf-modules/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex (/home/t-8ch/Projekte/context/minimals/tex/texmf-modules/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)) (/home/t-8ch/Projekte/context/minimals/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.codetex
>  ! LuaTeX error <\directlua >:1: module 'pgfplots.lua' not found:
>  	no field package.preload['pgfplots.lua']
>  	no file './pgfplots/lua.so'
>  	no file '/usr/local/lib/lua/5.1/pgfplots/lua.so'
>  	no file '/usr/local/lib/lua/5.1/loadall.so'
>  	no file './pgfplots.so'
>  	no file '/usr/local/lib/lua/5.1/pgfplots.so'
>  	no file '/usr/local/lib/lua/5.1/loadall.so'
>  stack traceback:
>  	[C]: in function 'require'
>  	<\directlua >:1: in main chunk.
>
> ConTeXt version: 2012.11.16 23:51

See: http://sourceforge.net/mailarchive/message.php?msg_id=29944181

> This could be fixed by removing the suffix '.lua' from the argument
> to `require(pgfplots.lua)` in line 1979 of the file
> tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex
>
>  diff --git a/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex.old b/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex
>  index 0ef2cb0..6d504a7 100644
>  --- a/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex.old
>  +++ b/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex
>  @@ -1976,7 +1976,7 @@
>   \catcode`\%=12 \gdef\pgfplotsPERCENT{%}}
>
>   \pgfutil@IfUndefined{directlua}{}{%
>  -	\directlua{require(\pgfplotsDQ pgfplots.lua\pgfplotsDQ)}%
>  +	\directlua{require(\pgfplotsDQ pgfplots\pgfplotsDQ)}%
>   }%
>
>   % swaps the content of two macros
>
> Is this report sufficient or should I also contact pgfplots upstream?

This will be fixed in the next release of pgfplots.

Aditya

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: pgfplots error
  2012-11-20 22:54 pgfplots error Thomas Weißschuh
  2012-11-20 23:16 ` Aditya Mahajan
@ 2012-11-20 23:20 ` Thomas Weißschuh
  1 sibling, 0 replies; 8+ messages in thread
From: Thomas Weißschuh @ 2012-11-20 23:20 UTC (permalink / raw)
  To: ntg-context

Hm,

it seems like my general purpose search engine missed an existing report
about the same issue, for which Aditya provided a fix.
(http://www.mail-archive.com/ntg-context@ntg.nl/msg66002.html)

So there are now two fixes.
Sorry for the noise if mine is nonsense :-)

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: pgfplots error
  2012-11-20 23:16 ` Aditya Mahajan
@ 2012-11-21 12:10   ` Mojca Miklavec
  2012-11-21 19:38     ` Thomas Weißschuh
  0 siblings, 1 reply; 8+ messages in thread
From: Mojca Miklavec @ 2012-11-21 12:10 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Wed, Nov 21, 2012 at 12:16 AM, Aditya Mahajan wrote:
> On Tue, 20 Nov 2012, Thomas Weißschuh wrote:
>
>> while trying to use the module pgfplots from latest ConTeXt minimals I
>> encountered the following error:
>> Is this report sufficient or should I also contact pgfplots upstream?

In principle you need to contact the upstream developer (unless it's
Aditya reading the mailing list and pointing you to the patch :)

> This will be fixed in the next release of pgfplots.

t-tikz in distribution uses the master from git repository on
sourceforge (even though I'm not exactly sure how frequently it
updates). In any case, looking at the current state, I see the lua
file is already inside "tex", not inside "scripts", so Aditya's
comment to wait for the released patch should no longer hold. If the
problem persists, it might be a different bug (I didn't test
anything).

Mojca
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: pgfplots error
  2012-11-21 12:10   ` Mojca Miklavec
@ 2012-11-21 19:38     ` Thomas Weißschuh
  2012-11-21 20:59       ` Mojca Miklavec
  0 siblings, 1 reply; 8+ messages in thread
From: Thomas Weißschuh @ 2012-11-21 19:38 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Quoting Mojca Miklavec (2012-11-21 12:10:37)
[..]
> t-tikz in distribution uses the master from git repository on
> sourceforge (even though I'm not exactly sure how frequently it
> updates). In any case, looking at the current state, I see the lua
> file is already inside "tex", not inside "scripts", so Aditya's
> comment to wait for the released patch should no longer hold. If the
> problem persists, it might be a different bug (I didn't test
> anything).

I reproduced it with a brand new clone of minimals.
The fix for the last bug is indeed already there.

You can test it with the following MWE:

  \usemodule [pgfplots]

  \starttext
    \starttikzpicture
      \startaxis
        \addplot coordinates {
          (0, 0)
        };
      \stopaxis
    \stoptikzpicture
  \stoptext

If this is indeed a bug in pgfplots and not my setup I'll report it
upstream.

(My system is an up-to-date Archlinux 64bit)

Regards,
Thomas

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: pgfplots error
  2012-11-21 19:38     ` Thomas Weißschuh
@ 2012-11-21 20:59       ` Mojca Miklavec
  2012-11-21 21:05         ` Aditya Mahajan
  0 siblings, 1 reply; 8+ messages in thread
From: Mojca Miklavec @ 2012-11-21 20:59 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Wed, Nov 21, 2012 at 8:38 PM, Thomas Weißschuh wrote:
> Quoting Mojca Miklavec (2012-11-21 12:10:37)
> [..]
>> t-tikz in distribution uses the master from git repository on
>> sourceforge (even though I'm not exactly sure how frequently it
>> updates). In any case, looking at the current state, I see the lua
>> file is already inside "tex", not inside "scripts", so Aditya's
>> comment to wait for the released patch should no longer hold. If the
>> problem persists, it might be a different bug (I didn't test
>> anything).
>
> I reproduced it with a brand new clone of minimals.
> The fix for the last bug is indeed already there.
>
> You can test it with the following MWE:
>
>   \usemodule [pgfplots]
>
>   \starttext
>     \starttikzpicture
>       \startaxis
>         \addplot coordinates {
>           (0, 0)
>         };
>       \stopaxis
>     \stoptikzpicture
>   \stoptext
>
> If this is indeed a bug in pgfplots and not my setup I'll report it
> upstream.

I can reproduce the problem on my machine and the patch solves the
problem, but something seems really weird. Why on earth does it want
to load files from /usr/local/lib/lua/5.1 and why does it want to load
a binary module instead of a lua file? (I don't have that folder, but
even if I had it, pgfplots wouldn't be there)

! LuaTeX error <\directlua >:1: module 'pgfplots.lua' not found:
	no field package.preload['pgfplots.lua']
	no file './pgfplots/lua.so'
	no file '/usr/local/lib/lua/5.1/pgfplots/lua.so'
	no file '/usr/local/lib/lua/5.1/loadall.so'
	no file './pgfplots.so'
	no file '/usr/local/lib/lua/5.1/pgfplots.so'
	no file '/usr/local/lib/lua/5.1/loadall.so'

Mojca
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: pgfplots error
  2012-11-21 20:59       ` Mojca Miklavec
@ 2012-11-21 21:05         ` Aditya Mahajan
  0 siblings, 0 replies; 8+ messages in thread
From: Aditya Mahajan @ 2012-11-21 21:05 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: TEXT/PLAIN, Size: 2202 bytes --]

On Wed, 21 Nov 2012, Mojca Miklavec wrote:

> On Wed, Nov 21, 2012 at 8:38 PM, Thomas Weißschuh wrote:
>> Quoting Mojca Miklavec (2012-11-21 12:10:37)
>> [..]
>>> t-tikz in distribution uses the master from git repository on
>>> sourceforge (even though I'm not exactly sure how frequently it
>>> updates). In any case, looking at the current state, I see the lua
>>> file is already inside "tex", not inside "scripts", so Aditya's
>>> comment to wait for the released patch should no longer hold. If the
>>> problem persists, it might be a different bug (I didn't test
>>> anything).
>>
>> I reproduced it with a brand new clone of minimals.
>> The fix for the last bug is indeed already there.
>>
>> You can test it with the following MWE:
>>
>>   \usemodule [pgfplots]
>>
>>   \starttext
>>     \starttikzpicture
>>       \startaxis
>>         \addplot coordinates {
>>           (0, 0)
>>         };
>>       \stopaxis
>>     \stoptikzpicture
>>   \stoptext
>>
>> If this is indeed a bug in pgfplots and not my setup I'll report it
>> upstream.
>
> I can reproduce the problem on my machine and the patch solves the
> problem,

So can I.

> but something seems really weird. Why on earth does it want
> to load files from /usr/local/lib/lua/5.1

> and why does it want to load
> a binary module instead of a lua file?

http://www.luafaq.org/#T1.19


> (I don't have that folder, but
> even if I had it, pgfplots wouldn't be there)

   \startluacode
     print(package.cpath)
   \stopluacode

gives

./?.so;/usr/local/lib/lua/5.1/?.so;/usr/local/lib/lua/5.1/loadall.so

so

require('pdfplots.lua')

searches for the library file in those folders.

> ! LuaTeX error <\directlua >:1: module 'pgfplots.lua' not found:
> 	no field package.preload['pgfplots.lua']
> 	no file './pgfplots/lua.so' <<< NOTICE pgfplots/lua
> 	no file '/usr/local/lib/lua/5.1/pgfplots/lua.so' <<<< NOTICE
> 	no file '/usr/local/lib/lua/5.1/loadall.so'
> 	no file './pgfplots.so'
> 	no file '/usr/local/lib/lua/5.1/pgfplots.so'
> 	no file '/usr/local/lib/lua/5.1/loadall.so'


I think that pdfplots should be using dofile rather than require.

Aditya

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* pgfplots error
@ 2014-03-12 13:49 Procházka Lukáš Ing. - Pontex s. r. o.
  0 siblings, 0 replies; 8+ messages in thread
From: Procházka Lukáš Ing. - Pontex s. r. o. @ 2014-03-12 13:49 UTC (permalink / raw)
  To: ConTeXt

[-- Attachment #1: Type: text/plain, Size: 2205 bytes --]

Hello,

this minimal example (copied from http://wiki.contextgarden.net/Pgfplot and simplified)

---- t-Plot4.mkiv
\usemodule[pgfplots]

\starttext
    \starttikzpicture
      \startaxis
        \addplot[mark=none,color=red] plot file {sapphire.dat};
      \stopaxis
    \stoptikzpicture
\stoptext
----

worked with

"
This is LuaTeX, Version beta-0.70.2-2012111114 (TeX Live 2012/W32TeX)
   \write18 enabled.
(c:/ConTeXt/tex/texmf-context/tex/context/base/cont-yes.mkiv

ConTeXt  ver: 2012.11.26 13:31 MKIV  fmt: 2012.11.27  int: english/english
"

- but doesn't work with

"
This is LuaTeX, Version beta-0.78.3 (TeX Live 2013/W32TeX) (rev 4809)
   \write18 enabled.
(d:/Ctx-Beta/tex/texmf-context/tex/context/base/cont-yes.mkiv

ConTeXt  ver: 2014.02.14 17:07 MKIV beta  fmt: 2014.3.6  int: english/english
"

- error:

"
...
l.6 ...ark=none,color=red] plot file {sapphire.dat};

! Package PGF Math Error: Could not parse input 'b' as a floating point number, sorry. The unreadable part was near 'b'...

system          > tex > error on line 6 in file sapphire.dat:  ...

1     a b
2     1 2
3     10 20
4     30 -30
5


\pgfmath@PackageError ...e {Package #1 Error: #2.}

\pgfkeysifdefined ...ifcsname pgfk@#1\endcsname #2
                                                    \else #3\fi
\pgfkeys@unpack ...pgfeov \else \pgfkeys@case@one
                                                    \fi \fi
\pgfkeys@@normal ...pgfkeysnovalue =\pgfkeys@stop
                                                    \pgfkeys@parse
\pgfkeys@@set ... \pgfkeys@root \pgfkeys@parse #2,
                                                    \pgfkeys@mainstop \def \pg...
\pgfmathfloatparsenumber@handleerror ...={#2}{#3}}
                                                    \ifx \pgfmathresult \pgfut...
...
"

Header-like (first) row is no more recognized/ignored? A (new?) pgfplot option must be specified?

Thanks in advance.

Best regards,

Lukas


-- 
Ing. Lukáš Procházka [mailto:LPr@pontex.cz]
Pontex s. r. o.      [mailto:pontex@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 241 096 751
Fax: +420 244 461 038

[-- Attachment #2: sapphire.dat --]
[-- Type: application/octet-stream, Size: 25 bytes --]

a b
1 2
10 20
30 -30

[-- Attachment #3: t-Plot4.log --]
[-- Type: application/octet-stream, Size: 35941 bytes --]

(d:/Ctx-Beta/tex/texmf-context/tex/context/base/cont-yes.mkiv
job             > passes > version mismatch: 1.20 <> 1.24

ConTeXt  ver: 2014.02.14 17:07 MKIV beta  fmt: 2014.3.6  int: english/english

system          > 'cont-new.mkiv' loaded
(d:/Ctx-Beta/tex/texmf-context/tex/context/base/cont-new.mkiv)
system          > files > jobname 't-Plot4', input './t-Plot4.mkiv', result 't-Plot4'
fonts           > latin modern fonts are not preloaded
languages       > language 'en' is active
(C:/Lukas/Jobs/D3-Sk/SO_237-20.RDS/Statics.Tx/Test/t-Plot4.mkiv
resolvers       > modules > 'pgfplots' is loaded
(d:/Ctx-Beta/tex/texmf-modules/tex/context/third/pgfplots/t-pgfplots.tex
loading         > ConTeXt User Module / Pgfplots
resolvers       > modules > 'tikz' is loaded
(d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/frontendlayer/t-tikz.tex
loading         > ConTeXt User Module / tikz
(d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/basiclayer/t-pgf.tex
loading         > ConTeXt User Module / pgf
(d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/basiclayer/t-pgfcor.tex
loading         > ConTeXt User Module / pgfcor
(d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/systemlayer/t-pgfsys.tex
loading         > ConTeXt User Module / pgfsys
(d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/utilities/t-pgfrcs.tex
loading         > ConTeXt User Module / pgfrcs
(d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/utilities/t-pgfmod.tex
loading         > ConTeXt User Module / pgfmodules
) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfutil-common.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfutil-common-lists.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfutil-context.def) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfrcs.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgfsys.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfkeys.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgf.cfg)
Driver file for pgf: pgfsys-pdftex.def
 (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgfsys-pdftex.def (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def)) (t-Plot4.pgf)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcore.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmath.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathcalc.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathutil.code.tex
fonts           > beware: no fonts are loaded yet, using 'lm mono' in box
) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathparser.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex))) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfloat.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorequick.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex))) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/modules/pgfmoduleshapes.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/modules/pgfmoduleplot.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/utilities/t-pgffor.tex
loading         > ConTeXt User Module / pgffor
(d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/utilities/t-pgfrcs.tex
loading         > ConTeXt User Module / pgfrcs
) (d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/utilities/t-pgfkey.tex
loading         > ConTeXt User Module / pgfkey
(d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfkeys.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgffor.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmath.code.tex))) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/modules/pgfmodulematrix.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex))) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplots.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotscore.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex
Package pgfplots notification 'compat/show suggested version=true': document has been generated with the most recent feature set (\pgfplotsset{compat=\mostrecent }).

)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsbinary.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def))) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotscolormap.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotsplothandlers.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplots.scaling.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplots.errorbars.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplots.markers.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotsticks.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplots.paths.code.tex) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/modules/pgfmoduledecorations.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex)) (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex (d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex)))){d:/Ctx-Beta/tex/texmf-context/fonts/map/pdftex/context/mkiv-base.map}
fonts           > preloading latin modern fonts (second stage)
{d:/Ctx-Beta/tex/texmf/fonts/map/dvips/lm/lm-math.map}{d:/Ctx-Beta/tex/texmf/fonts/map/dvips/lm/lm-rm.map}
fonts           > 'fallback modern rm 12pt' is loaded
PGFPlots: reading {sapphire.dat}
! Package PGF Math Error: Could not parse input 'a' as a floating point number, sorry. The unreadable part was near 'a'...

system          > tex > error on line 6 in file sapphire.dat:  ...

1     a b
2     1 2
3     10 20
4     30 -30
5     


\pgfmath@PackageError ...e {Package #1 Error: #2.}
                                                  
\pgfkeysifdefined ...ifcsname pgfk@#1\endcsname #2
                                                  \else #3\fi 
\pgfkeys@unpack ...pgfeov \else \pgfkeys@case@one 
                                                  \fi \fi 
\pgfkeys@@normal ...pgfkeysnovalue =\pgfkeys@stop 
                                                  \pgfkeys@parse 
\pgfkeys@@set ... \pgfkeys@root \pgfkeys@parse #2,
                                                  \pgfkeys@mainstop \def \pg...
\pgfmathfloatparsenumber@handleerror ...={#2}{#3}}
                                                  \ifx \pgfmathresult \pgfut...
...
l.6 ...ark=none,color=red] plot file {sapphire.dat};
                                                  
This error message was generated by an \errmessage
command, so I can't give any explicit help.
Pretend that you're Hercule Poirot: Examine all clues,
and deduce the truth by order and method.

! Package PGF Math Error: Could not parse input 'b' as a floating point number, sorry. The unreadable part was near 'b'...

system          > tex > error on line 6 in file sapphire.dat:  ...

1     a b
2     1 2
3     10 20
4     30 -30
5     


\pgfmath@PackageError ...e {Package #1 Error: #2.}
                                                  
\pgfkeysifdefined ...ifcsname pgfk@#1\endcsname #2
                                                  \else #3\fi 
\pgfkeys@unpack ...pgfeov \else \pgfkeys@case@one 
                                                  \fi \fi 
\pgfkeys@@normal ...pgfkeysnovalue =\pgfkeys@stop 
                                                  \pgfkeys@parse 
\pgfkeys@@set ... \pgfkeys@root \pgfkeys@parse #2,
                                                  \pgfkeys@mainstop \def \pg...
\pgfmathfloatparsenumber@handleerror ...={#2}{#3}}
                                                  \ifx \pgfmathresult \pgfut...
...
l.6 ...ark=none,color=red] plot file {sapphire.dat};
                                                  
(That was another \errmessage.)

NOTE: coordinate (a,b) has been dropped because it is unbounded (in y). (see also unbounded coords=jump). 
backend         > xmp > using file 'd:/Ctx-Beta/tex/texmf-context/tex/context/base/lpdf-pdx.xml'
pages           > flushing realpage 1, userpage 1
 ) )<d:/Ctx-Beta/tex/texmf/fonts/opentype/public/lm-math/latinmodern-math.otf><d:/Ctx-Beta/tex/texmf/fonts/opentype/public/lm/lmroman12-regular.otf>

system          > structure > start used structure

used structure  > text: t-Plot4

system          > structure > stop used structure


system          > files > start used files

used file       >    1: filename=cont-yes.mkiv filetype=tex foundname=d:/Ctx-Beta/tex/texmf-context/tex/context/base/cont-yes.mkiv usedmethod=database
used file       >    2: filename=cont-new.mkiv filetype=tex foundname=d:/Ctx-Beta/tex/texmf-context/tex/context/base/cont-new.mkiv usedmethod=database
used file       >    3: filename=lang-us.lua filetype=lua foundname=d:/Ctx-Beta/tex/texmf-context/tex/context/patterns/lang-us.lua usedmethod=otherwise
used file       >    4: filename=C:\Lukas\Jobs\D3-Sk\SO_237-20.RDS\Statics.Tx\Test/t-Plot4.mkiv foundname=C:/Lukas/Jobs/D3-Sk/SO_237-20.RDS/Statics.Tx/Test/t-Plot4.mkiv usedmethod=direct
used file       >    5: filename=t-pgfplots.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/context/third/pgfplots/t-pgfplots.tex usedmethod=database
used file       >    6: filename=t-tikz.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/frontendlayer/t-tikz.tex usedmethod=database
used file       >    7: filename=t-pgf.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/basiclayer/t-pgf.tex usedmethod=database
used file       >    8: filename=t-pgfcor.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/basiclayer/t-pgfcor.tex usedmethod=database
used file       >    9: filename=t-pgfsys.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/systemlayer/t-pgfsys.tex usedmethod=database
used file       >   10: filename=t-pgfrcs.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/utilities/t-pgfrcs.tex usedmethod=database
used file       >   11: filename=t-pgfmod.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/utilities/t-pgfmod.tex usedmethod=database
used file       >   12: filename=pgfutil-common.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfutil-common.tex usedmethod=database
used file       >   13: filename=pgfutil-common-lists.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfutil-common-lists.tex usedmethod=database
used file       >   14: filename=pgfutil-context.def filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfutil-context.def usedmethod=database
used file       >   15: filename=pgfrcs.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfrcs.code.tex usedmethod=database
used file       >   16: filename=pgfsys.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgfsys.code.tex usedmethod=database
used file       >   17: filename=pgfkeys.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfkeys.code.tex usedmethod=database
used file       >   18: filename=pgfkeysfiltered.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex usedmethod=database
used file       >   19: filename=pgf.cfg filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgf.cfg usedmethod=database
used file       >   20: filename=pgfsys-pdftex.def filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgfsys-pdftex.def usedmethod=database
used file       >   21: filename=pgfsys-common-pdf.def filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def usedmethod=database
used file       >   22: filename=t-Plot4.pgf foundname=t-Plot4.pgf usedmethod=direct
used file       >   23: filename=pgfsyssoftpath.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex usedmethod=database
used file       >   24: filename=pgfsysprotocol.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex usedmethod=database
used file       >   25: filename=pgfcore.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcore.code.tex usedmethod=database
used file       >   26: filename=pgfmath.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmath.code.tex usedmethod=database
used file       >   27: filename=pgfmathcalc.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathcalc.code.tex usedmethod=database
used file       >   28: filename=pgfmathutil.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathutil.code.tex usedmethod=database
used file       >   29: filename=lmmono10-regular filetype=otf format=otf foundname=d:/Ctx-Beta/tex/texmf/fonts/opentype/public/lm/lmmono10-regular.otf usedmethod=database
used file       >   30: filename=pgfmathparser.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathparser.code.tex usedmethod=database
used file       >   31: filename=pgfmathfunctions.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.code.tex usedmethod=database
used file       >   32: filename=pgfmathfunctions.basic.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex usedmethod=database
used file       >   33: filename=pgfmathfunctions.trigonometric.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex usedmethod=database
used file       >   34: filename=pgfmathfunctions.random.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.random.code.tex usedmethod=database
used file       >   35: filename=pgfmathfunctions.comparison.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex usedmethod=database
used file       >   36: filename=pgfmathfunctions.base.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.base.code.tex usedmethod=database
used file       >   37: filename=pgfmathfunctions.round.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.round.code.tex usedmethod=database
used file       >   38: filename=pgfmathfunctions.misc.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex usedmethod=database
used file       >   39: filename=pgfmathfunctions.integerarithmetics.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex usedmethod=database
used file       >   40: filename=pgfmathfloat.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/math/pgfmathfloat.code.tex usedmethod=database
used file       >   41: filename=pgfcorepoints.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex usedmethod=database
used file       >   42: filename=pgfcorepathconstruct.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex usedmethod=database
used file       >   43: filename=pgfcorepathusage.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex usedmethod=database
used file       >   44: filename=pgfcorescopes.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex usedmethod=database
used file       >   45: filename=pgfcoregraphicstate.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex usedmethod=database
used file       >   46: filename=pgfcoretransformations.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex usedmethod=database
used file       >   47: filename=pgfcorequick.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorequick.code.tex usedmethod=database
used file       >   48: filename=pgfcoreobjects.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex usedmethod=database
used file       >   49: filename=pgfcorepathprocessing.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex usedmethod=database
used file       >   50: filename=pgfcorearrows.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex usedmethod=database
used file       >   51: filename=pgfcoreshade.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex usedmethod=database
used file       >   52: filename=pgfcoreimage.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex usedmethod=database
used file       >   53: filename=pgfcoreexternal.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex usedmethod=database
used file       >   54: filename=pgfcorelayers.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex usedmethod=database
used file       >   55: filename=pgfcoretransparency.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex usedmethod=database
used file       >   56: filename=pgfcorepatterns.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex usedmethod=database
used file       >   57: filename=pgfmoduleshapes.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/modules/pgfmoduleshapes.code.tex usedmethod=database
used file       >   58: filename=pgfmoduleplot.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/modules/pgfmoduleplot.code.tex usedmethod=database
used file       >   59: filename=t-pgffor.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/utilities/t-pgffor.tex usedmethod=database
used file       >   60: filename=t-pgfkey.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/context/pgf/utilities/t-pgfkey.tex usedmethod=database
used file       >   61: filename=pgffor.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/utilities/pgffor.code.tex usedmethod=database
used file       >   62: filename=tikz.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex usedmethod=database
used file       >   63: filename=pgflibraryplothandlers.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex usedmethod=database
used file       >   64: filename=pgfmodulematrix.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/modules/pgfmodulematrix.code.tex usedmethod=database
used file       >   65: filename=tikzlibrarytopaths.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex usedmethod=database
used file       >   66: filename=tikzlibraryplotmarks.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex usedmethod=database
used file       >   67: filename=pgflibraryplotmarks.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex usedmethod=database
used file       >   68: filename=pgfplots.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplots.code.tex usedmethod=database
used file       >   69: filename=pgfplotscore.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotscore.code.tex usedmethod=database
used file       >   70: filename=pgfplotssysgeneric.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex usedmethod=database
used file       >   71: filename=pgfplotslibrary.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex usedmethod=database
used file       >   72: filename=pgfplotsoldpgfsupp_loader.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex usedmethod=database
used file       >   73: filename=pgflibraryfpu.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/libraries/pgflibraryfpu.code.tex usedmethod=database
used file       >   74: filename=pgfplotsutil.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.code.tex usedmethod=database
used file       >   75: filename=pgfplots.lua filetype=tex format=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/lua/pgfplots.lua usedmethod=database
used file       >   76: filename=pgfplotsliststructure.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex usedmethod=database
used file       >   77: filename=pgfplotsliststructureext.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex usedmethod=database
used file       >   78: filename=pgfplotsarray.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex usedmethod=database
used file       >   79: filename=pgfplotsmatrix.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex usedmethod=database
used file       >   80: filename=pgfplotstableshared.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex usedmethod=database
used file       >   81: filename=pgfplotsdeque.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex usedmethod=database
used file       >   82: filename=pgfplotsbinary.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsbinary.code.tex usedmethod=database
used file       >   83: filename=pgfplotsbinary.data.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex usedmethod=database
used file       >   84: filename=pgfplotsutil.verb.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex usedmethod=database
used file       >   85: filename=pgflibrarypgfplots.surfshading.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex usedmethod=database
used file       >   86: filename=pgflibrarypgfplots.surfshading.pgfsys-pdftex.def filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def usedmethod=database
used file       >   87: filename=pgfplotscolormap.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotscolormap.code.tex usedmethod=database
used file       >   88: filename=pgfplotscolor.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/util/pgfplotscolor.code.tex usedmethod=database
used file       >   89: filename=pgfplotsstackedplots.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotsstackedplots.code.tex usedmethod=database
used file       >   90: filename=pgfplotsplothandlers.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotsplothandlers.code.tex usedmethod=database
used file       >   91: filename=pgfplotsmeshplothandler.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex usedmethod=database
used file       >   92: filename=pgfplots.scaling.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplots.scaling.code.tex usedmethod=database
used file       >   93: filename=pgfplotscoordprocessing.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex usedmethod=database
used file       >   94: filename=pgfplots.errorbars.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplots.errorbars.code.tex usedmethod=database
used file       >   95: filename=pgfplots.markers.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplots.markers.code.tex usedmethod=database
used file       >   96: filename=pgfplotsticks.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplotsticks.code.tex usedmethod=database
used file       >   97: filename=pgfplots.paths.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgfplots/pgfplots.paths.code.tex usedmethod=database
used file       >   98: filename=tikzlibrarydecorations.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex usedmethod=database
used file       >   99: filename=pgfmoduledecorations.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/modules/pgfmoduledecorations.code.tex usedmethod=database
used file       >  100: filename=tikzlibrarydecorations.pathmorphing.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex usedmethod=database
used file       >  101: filename=pgflibrarydecorations.pathmorphing.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex usedmethod=database
used file       >  102: filename=tikzlibrarydecorations.pathreplacing.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex usedmethod=database
used file       >  103: filename=pgflibrarydecorations.pathreplacing.code.tex filetype=tex foundname=d:/Ctx-Beta/tex/texmf-modules/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex usedmethod=database
used file       >  104: filename=mkiv-base.map filetype=map format=map foundname=d:/Ctx-Beta/tex/texmf-context/fonts/map/pdftex/context/mkiv-base.map usedmethod=database
used file       >  105: filename=lm.lfg filetype=tex foundname=d:/Ctx-Beta/tex/texmf-context/tex/context/fonts/lm.lfg usedmethod=database
used file       >  106: filename=lm-math.lfg filetype=tex foundname=d:/Ctx-Beta/tex/texmf-context/tex/context/fonts/lm-math.lfg usedmethod=database
used file       >  107: filename=lm-math.map filetype=map format=map foundname=d:/Ctx-Beta/tex/texmf/fonts/map/dvips/lm/lm-math.map usedmethod=database
used file       >  108: filename=lm-rm.map filetype=map format=map foundname=d:/Ctx-Beta/tex/texmf/fonts/map/dvips/lm/lm-rm.map usedmethod=database
used file       >  109: filename=lmroman12-regular filetype=otf format=otf foundname=d:/Ctx-Beta/tex/texmf/fonts/opentype/public/lm/lmroman12-regular.otf usedmethod=database
used file       >  110: filename=latinmodern-math.otf filetype=opentypefonts foundname=d:/Ctx-Beta/tex/texmf/fonts/opentype/public/lm-math/latinmodern-math.otf usedmethod=database
used file       >  111: filename=latinmodern-math.otf filetype=otf format=otf foundname=d:/Ctx-Beta/tex/texmf/fonts/opentype/public/lm-math/latinmodern-math.otf usedmethod=database
used file       >  112: filename=sapphire.dat foundname=sapphire.dat usedmethod=direct
used file       >  113: filename=lpdf-pdx.xml filetype=tex foundname=d:/Ctx-Beta/tex/texmf-context/tex/context/base/lpdf-pdx.xml usedmethod=database

system          > files > stop used files


system          > options > start commandline options

used option     > FILE="t-Plot4.mkiv"
used option     > currentrun="1"
used option     > fulljobname="./t-Plot4.mkiv"
used option     > halt-on-error="true"
used option     > input="./t-Plot4.mkiv"
used option     > kindofrun="1"
used option     > maxnofruns="8"
used option     > mode="t-Plot4"
used option     > no-parse-first-line="true"
used option     > nonstopmode="true"

system          > options > stop commandline options

system          > options > start commandline files

used file       >    1: ./t-Plot4.mkiv

system          > options > stop commandline files


publications    > start used btx commands


publications    > stop used btxcommands



mkiv lua stats  > used config file: selfautoparent:/texmf/web2c/texmfcnf.lua
mkiv lua stats  > used cache path: d:/Ctx-Beta/tex/texmf-cache/luatex-cache/context/5fe67e0bfe781ce0dde776fb1556f32e
mkiv lua stats  > resource resolver: loadtime 0.000 seconds, 1 scans with scantime 0.031 seconds, 0 shared scans, 113 found files, scanned paths: c:/windows/fonts
mkiv lua stats  > stored bytecode data: 347 modules (0.172 sec), 69 tables (0.016 sec), 416 chunks (0.188 sec)
mkiv lua stats  > running in nuts mode: yes
mkiv lua stats  > cleaned up reserved nodes: 42 nodes, 456 lists of 455
mkiv lua stats  > node memory usage: 2 glue, 2 penalty, 9 attribute, 29 glue_spec, 3 attribute_list, 2 temp
mkiv lua stats  > node list callback tasks: 6 unique task lists, 6 instances (re)created, 59 calls
mkiv lua stats  > used backend: pdf (backend for directly generating pdf output)
mkiv lua stats  > loaded tex modules: 2 requested, all found (*-pgfplots *-tikz)
mkiv lua stats  > loaded patterns: en::2, load time: 0.000
mkiv lua stats  > jobdata time: 0.000 seconds saving, 0.000 seconds loading
mkiv lua stats  > callbacks: 5565 direct, 81484 indirect, 87049 total
mkiv lua stats  > result saved in file: t-Plot4.pdf, compresslevel 3, objectcompreslevel 3
mkiv lua stats  > loaded fonts: 3 files: latinmodern-math.otf, lmmono10-regular.otf, lmroman12-regular.otf
mkiv lua stats  > fonts load time: 0.453 seconds for 5 fonts, 2 shared in backend, 2 common vectors, 0 common hashes
mkiv lua stats  > used platform: mswin, type: windows, binary subtree: texmf-mswin, symbol mask: utf (τεχ)
mkiv lua stats  > luatex banner: this is luatex, version beta-0.78.3 (tex live 2013/w32tex) (rev 4809)
mkiv lua stats  > control sequences: 56229 of 65536 + 100000
mkiv lua stats  > current memory usage: 47 MB (ctx: 47 MB)
mkiv lua stats  > runtime: 2.484 seconds, 1 processed pages, 1 shipped pages, 0.403 pages/second


[-- Attachment #4: t-Plot4.pdf --]
[-- Type: application/pdf, Size: 7217 bytes --]

[-- Attachment #5: t-Plot4.mkiv --]
[-- Type: application/octet-stream, Size: 182 bytes --]

\usemodule[pgfplots]

\starttext
  \starttikzpicture
    \startaxis
      \addplot[mark=none,color=red] plot file {sapphire.dat};
    \stopaxis
  \stoptikzpicture
\stoptext

[-- Attachment #6: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-03-12 13:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-20 22:54 pgfplots error Thomas Weißschuh
2012-11-20 23:16 ` Aditya Mahajan
2012-11-21 12:10   ` Mojca Miklavec
2012-11-21 19:38     ` Thomas Weißschuh
2012-11-21 20:59       ` Mojca Miklavec
2012-11-21 21:05         ` Aditya Mahajan
2012-11-20 23:20 ` Thomas Weißschuh
2014-03-12 13:49 Procházka Lukáš Ing. - Pontex s. r. o.

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).