[NTG-context] xetex and metapost

2006-09-16 Thread Alex Lubberts
Hi, After switching to `XeConTeXt' my file with MP graphics (which ran fine before) results in errors. I include a .mp-file like: \startuseMPgraphic{dia1} input Diagram1 ; \stopuseMPgraphic \placefigure{Comment}{\externalfigure[Diagram1.1]} When I run ConTeXt a file test-mprun.mp is created

Re: [NTG-context] xetex and metapost

2006-09-16 Thread Hans Hagen
Alex Lubberts wrote: Hi, After switching to `XeConTeXt' my file with MP graphics (which ran fine before) results in errors. I include a .mp-file like: \startuseMPgraphic{dia1} input Diagram1 ; \stopuseMPgraphic \placefigure{Comment}{\externalfigure[Diagram1.1]} When I run ConTeXt a

Re: [NTG-context] xetex and metapost

2006-09-16 Thread Mojca Miklavec
On 9/16/06, Hans Hagen wrote: Alex Lubberts wrote: Hi, After switching to `XeConTeXt' my file with MP graphics (which ran fine before) results in errors. I include a .mp-file like: \startuseMPgraphic{dia1} input Diagram1 ; \stopuseMPgraphic

Re: [NTG-context] ConTeXt problem on Mac mini

2006-09-16 Thread Mojca Miklavec
A notice for Hans: can you please browse down for \externalfigure[\jobname-something.tmp] The thing with \AR versus \FR \LR and table header footer handling might also be misfeatures, esp. if they have already worked before (I never used them). On 9/15/06, Bernd Militzer wrote: Hi all, I

Re: [NTG-context] Templates and official documents

2006-09-16 Thread Willi Egger
Hi Jorge, In order to fit a table on one page one can put the table into a buffer and issue the \placetable command, which enables you tou provide a height. In fact you include the table as a float. Because the TeacherDate line occurs on each page, this can be put into a footerline.

Re: [NTG-context] Captions in Combinations

2006-09-16 Thread Pepe Barbe
On 9/12/06, Hans Hagen [EMAIL PROTECTED] wrote: Pepe Barbe wrote: Hoping that the captions in the figures and in the combinations would have the same size, but they don't. Any ideas why this might be? can you make a minimal sample file Sorry about the delay. Here you go: \setupcaptions[

[NTG-context] texfont error

2006-09-16 Thread Johan Sandblom
I have not used texfont in quite a while, but it seems something has gone wrong as this was the output I got. Same result if prefixed with texmfstart. This is debian linux and perl is ~$ perl --version This is perl, v5.8.8 built for i486-linux-gnu-thread-multi ~$ texfont Global symbol

[NTG-context] problem in kpse.rb

2006-09-16 Thread Johan Sandblom
Attempting to find out why this happened on linux ~$ texmfstart ctxtools --updatecontext CtxTools | updating CtxTools | unable to change to I found that line 114 of kpse.rb can be changed from path = run(--expand-path=\\\$#{varname}) rescue '' to path = run(--expand-path=\$#{varname}) rescue

Re: [NTG-context] problem in kpse.rb

2006-09-16 Thread Sanjoy Mahajan
path = run(--expand-path=\\\$#{varname}) rescue '' to path = run(--expand-path=\$#{varname}) rescue '' I also ran into this (a few weeks ago on the list) and the patch I sent Hans after testing it on my Ubuntu Linux laptop was to use two backslashes: run(--expand-path=\\$#{varname}) so