All, After installing context minimals, this no longer compiles with MKII: \usemodule[tikz] \starttext \starttikzpicture \draw[gray] (-5,-5) grid (5,5); \stoptikzpicture \stoptext system : module tikz loaded (./tikz.tex system : module tikz (line 2) already loaded publications : file tikz.bbl not found, waiting for bibtex systems : begin file tikz at line 3 ! Undefined control sequence. l.5 \starttikzpicture
On Thu, Oct 1, 2009 at 7:42 AM, David Arnold
All, After installing context minimals, this no longer compiles with MKII:
\usemodule[tikz]
\starttext
\starttikzpicture \draw[gray] (-5,-5) grid (5,5); \stoptikzpicture
\stoptext
system : module tikz loaded (./tikz.tex system : module tikz (line 2) already loaded publications : file tikz.bbl not found, waiting for bibtex systems : begin file tikz at line 3 ! Undefined control sequence. l.5 \starttikzpicture
Can be. If I rememeber well, by default ./first-run.sh setup a new and fresh minimals: others files are deleted. Are there tikz* files still in your minimals ?
-- luigi
In the minmals directory: david-arnolds-macbook-pro:context darnold$ find . grep 'tikz' find: tikz: No such file or directory On Sep 30, 2009, at 10:58 PM, luigi scarso wrote:
On Thu, Oct 1, 2009 at 7:42 AM, David Arnold
wrote: All,
After installing context minimals, this no longer compiles with MKII:
\usemodule[tikz]
\starttext
\starttikzpicture \draw[gray] (-5,-5) grid (5,5); \stoptikzpicture
\stoptext
system : module tikz loaded (./tikz.tex system : module tikz (line 2) already loaded publications : file tikz.bbl not found, waiting for bibtex systems : begin file tikz at line 3 ! Undefined control sequence. l.5 \starttikzpicture
Can be. If I rememeber well, by default ./first-run.sh setup a new and fresh minimals: others files are deleted. Are there tikz* files still in your minimals ?
-- luigi
___________________________________________________________________________________ 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 : https://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________
On Thu, Oct 1, 2009 at 8:10 AM, David Arnold
In the minmals directory: david-arnolds-macbook-pro:context darnold$ find . grep 'tikz' find: tikz: No such file or directory
So , it seems to me that you don't have tikz in your minimals anymore. Can you try to re-install?
-- luigi
Ran: first-setup.sh Then: david-arnolds-macbook-pro:context darnold$ find: tikz: No such file or directory No tikz files. D. On Sep 30, 2009, at 11:17 PM, luigi scarso wrote:
On Thu, Oct 1, 2009 at 8:10 AM, David Arnold
wrote: In the minmals directory:
david-arnolds-macbook-pro:context darnold$ find . grep 'tikz' find: tikz: No such file or directory
So , it seems to me that you don't have tikz in your minimals anymore. Can you try to re-install?
-- luigi
___________________________________________________________________________________ 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 : https://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________
On Oct 1, 2009, at 8:22 AM, David Arnold wrote:
Ran:
first-setup.sh
Then:
david-arnolds-macbook-pro:context darnold$ find: tikz: No such file or directory
No tikz files.
D.
Of course not. That's what Luigi told you. tikz is a humongous package and not part of the minimals. You have to install it. Thomas
On Thu, Oct 1, 2009 at 8:22 AM, David Arnold
Ran: first-setup.sh
Then:
david-arnolds-macbook-pro:context darnold$ find: tikz: No such file or directory
No tikz files.
D.
So , it seems to me that you don't have tikz in your minimals anymore.
Can you try to re-install?
Ah -- sorry, bad english. As Thomas wrote, pgf is not part of minimals . Try to reinstall pgf from ctan; if you can, it's better to make a symbolic link this time. Or you can try to see if there are some options of rsync to preserve your files, but eventually you can end in messy and unusable minimals.
The idea of minimals is :" the minimum complete for a project" and is good to have multiple minimals. Actually I have *) current -- reinstalled 2~3 times at year *) beta -- can be reinstalled 2~3 time at week *) beta-lunatic -- my project, frozen *) beta-pdflualatex -- another experiment, not frozen and a couple of current in production. In you situation should say to make a beta-pgf To update 1) make a new minimals called beta-pfg-new 2) copy into it rilevant files and setup from beta-pgf 3) test beta-pdf-new 4) When tests are ok, store beta-pgf in another location and rename beta-pgf-new in beta-pgf -- luigi
On Wed, 30 Sep 2009, David Arnold wrote:
In the minmals directory: david-arnolds-macbook-pro:context darnold$ find . grep 'tikz' find: tikz: No such file or directory
Did you really run this command "find . grep 'tikz'" ? This means, you will find all files in the current directory and in the sub-directories "grep" and "tikz", and these 2 sub-directories probably don't exist. You want probably something like this: find . -name tikz or find . -name "*tikz*" Cheers, Peter -- Contact information: http://pmrb.free.fr/contact/
On Wed, 30 Sep 2009, David Arnold wrote:
All, After installing context minimals, this no longer compiles with MKII:
\usemodule[tikz]
\starttext
\starttikzpicture \draw[gray] (-5,-5) grid (5,5); \stoptikzpicture
\stoptext
Hello David, You should run: ./first-setup.sh --extras=all (or --extras=tikz) Then you will get the t-tikz module.
system : module tikz loaded (./tikz.tex
It seems, that you have a file tikz.tex in your local directory. This is not so good, it's taken instead of the t-tikz module. Cheers, Peter -- Contact information: http://pmrb.free.fr/contact/
Peter, I used the --extras=all and it worked! Thanks. D. On Oct 1, 2009, at 4:25 AM, Peter Münster wrote:
On Wed, 30 Sep 2009, David Arnold wrote:
All, After installing context minimals, this no longer compiles with MKII:
\usemodule[tikz]
\starttext
\starttikzpicture \draw[gray] (-5,-5) grid (5,5); \stoptikzpicture
\stoptext
Hello David,
You should run: ./first-setup.sh --extras=all (or --extras=tikz)
Then you will get the t-tikz module.
system : module tikz loaded (./tikz.tex
It seems, that you have a file tikz.tex in your local directory. This is not so good, it's taken instead of the t-tikz module.
Cheers, Peter
-- Contact information: http://pmrb.free.fr/contact/
___________________________________________________________________________________ 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 : https://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________
participants (4)
-
David Arnold
-
luigi scarso
-
Peter Münster
-
Thomas A. Schmitz