Re: [NTG-context] font-syn.lua error

2009-11-26 Thread Hans Hagen

luigi scarso wrote:

On Wed, Nov 25, 2009 at 7:18 PM, Taco Hoekwater t...@elvenkind.com wrote:


I believe it is safe to say that that rendering is quite wrong. ;)


The problem is that pratically this pdf is wrong because
Acroread is not able to print.

AR also shows something different from xpdf , gs shows the same of AR too
mupdf show something completely different,
and I believe from experience  that xpdf is right,
but at this point the only thing that I care is to understand what is
wrong with AR given that xpdf is right.
The only solution is to uncompress and study the pdf
and the source -- which we don't have .
mupdf tools, xpdf tools, and  gs can help in this:
it seems that xref is a bit messy, so it can be a problem of metapost
too, or maybe not at all.


as it concerns an older luatex ... it's probably the zero xscale ...

0 0 0 1 0 0 cm

makes acrobat unhappy


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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
___


Re: [NTG-context] Problem with font mapping

2009-11-26 Thread Hans Hagen

Mika Ritola wrote:

In other words, the mappings seem to be fine here (though I'm not sure 
about the first one). Thus, it seems that some change in ConTeXt has 
broken the font.



Changing \setmainfont[Adobe Garamond Pro] to
\setmainfont[agaramondpro] fixes the issue but, still, I'd
prefer to use the former (as I've done until now) since it's
clearer.


how recent is your version of mtxrun / mtx-font / font database? it
has been a bit in flux last weeks

Do you mean the database that's generated by mtxrun --script font 
--reload? Updating it didn't solve the problem.


the analyser has been rewritten and now let's the familyname + weight 
play a more important role and if there's something weird in there ...

in that case the (undefined) order of hashing kicks in

anyhow, i cannot check it here without fonts so someone has to buy me 
the adobe font collection first -)


Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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
___


[NTG-context] formulas in itemgroups

2009-11-26 Thread Andreas Harder
Hi all,

I use the following construct for exercises (attachment) and would like to save 
some space saved, like in the second example. Is there a trick/command/setup 
one can use?



test-itemgroup-formulas.tex
Description: Binary data


Many thanks

Andreas___
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
___


[NTG-context] 3d prc

2009-11-26 Thread gummybears
How to include 3d prc pdf (produced with Asymptote) with Context ?
___
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
___


Re: [NTG-context] Problem with font mapping

2009-11-26 Thread Wolfgang Schuster

Am 25.11.2009 um 16:27 schrieb Mika Ritola:

 Hello again,
 
 I seem to be running into all sorts of font problems. Now my document has 
 suddenly turned bold. For example, running the following code results in 
 Test. being rendered in bold characters.

A few things have changed in ConTeXt font mechanism and I'm going to adapt 
simplefonts
to the new code (will take a while) but there are now many new features 
available,
take for example the new spec-interface which could be used to write this:

\starttypescript[Xserif][all][name]

\definefontsynonym [Serif]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-normal]
 [features=default]
\definefontsynonym [SerifItalic]  
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-italic]
 [features=default]
\definefontsynonym [SerifSlanted] 
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-italic]
 [features=default]
\definefontsynonym [SerifBold]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-normal]
   [features=default]
\definefontsynonym [SerifBoldItalic]  
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-italic]
   [features=default]
\definefontsynonym [SerifBoldSlanted] 
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-italic]
   [features=default]
\definefontsynonym [SerifCaps]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-normal]
 [features=smallcaps]

\stoptypescript

\starttypescript[Xsans][all][name]

\definefontsynonym [Sans]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-normal]
 [features=default]
\definefontsynonym [SansItalic]  
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-italic]
 [features=default]
\definefontsynonym [SansSlanted] 
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-italic]
 [features=default]
\definefontsynonym [SansBold]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-normal]
   [features=default]
\definefontsynonym [SansBoldItalic]  
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-italic]
   [features=default]
\definefontsynonym [SansBoldSlanted] 
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-italic]
   [features=default]
\definefontsynonym [SansCaps]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-normal]
 [features=smallcaps]

\stoptypescript

\starttypescript[Xmono][all][name]

\definefontsynonym [Mono]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-normal]
 [features=default]
\definefontsynonym [MonoItalic]  
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-italic]
 [features=default]
\definefontsynonym [MonoSlanted] 
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-italic]
 [features=default]
\definefontsynonym [MonoBold]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-normal]
   [features=default]
\definefontsynonym [MonoBoldItalic]  
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-italic]
   [features=default]
\definefontsynonym [MonoBoldSlanted] 
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-italic]
   [features=default]
\definefontsynonym [MonoCaps]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-normal]
 [features=smallcaps]

\stoptypescript

\starttypescript[Xserif][default][size]
  \definebodyfont
  [4pt,5pt,6pt,7pt,8pt,9pt,10pt,11pt,12pt,14.4pt,17.3pt] [rm]
  [default]
\stoptypescript

\starttypescript[Xsans][default][size]
  \definebodyfont
[4pt,5pt,6pt,7pt,8pt,9pt,10pt,11pt,12pt,14.4pt,17.3pt]
[ss] [default]
\stoptypescript

\starttypescript [Xmono][default][size]
  \definebodyfont
[4pt,5pt,6pt,7pt,8pt,9pt,10pt,11pt,12pt,14.4pt,17.3pt]
[tt] [default]
\stoptypescript

\starttypescript[Xserif][dtp][size]
  \definebodyfont
[5pt,6pt,7pt,8pt,9pt,10pt,11pt,12pt,13pt,14pt,16pt,18pt,22pt,28pt]
[rm] [default]
\stoptypescript

\starttypescript[Xsans][dtp][size]
  \definebodyfont
[5pt,6pt,7pt,8pt,9pt,10pt,11pt,12pt,13pt,14pt,16pt,18pt,22pt,28pt]
[ss] [default]
\stoptypescript

\starttypescript[Xmono][dtp][size]
  \definebodyfont
[5pt,6pt,7pt,8pt,9pt,10pt,11pt,12pt,13pt,14pt,16pt,18pt,22pt,28pt]
[tt] [default]
\stoptypescript

% this is the relevant 

Re: [NTG-context] Layout - once again!

2009-11-26 Thread Curiouslearn
Thanks Mojca. I knew the backspace would work, but I did not know why
the settings I specified did not work. I thought that if I explicitly
specify all the relevant dimensions, it would calculate backspace.
Seems like backspace is a necessary input. Maybe this should be
clarified on the Wiki.


On Wed, Nov 25, 2009 at 11:45 PM, Mojca Miklavec
mojca.miklavec.li...@gmail.com wrote:
 On Thu, Nov 26, 2009 at 05:19, Curiouslearn wrote:
 Why does the following does not center the text? I am choosing a
 letter size paper which is 8.5 inches wide. I have both margins at
 1.5in

 That's width of box called margin (the one where you put side notes
 etc). You need to set backspace=1.5in and that should suffice.

 and all other distances equal to 0 in. Should the text be not
 centered.

 No, because backspace=1in by default, so what you thought of as left
 margin is only 1in wide and the right one probably 2in then.

 Mojca

 \setuppapersize[letter][letter]
 \setuplayout[leftmargin=1.5in,rightmargin=1.5in,leftedge=0in,rightedge=0in,leftmargindistance=0in,rightmargindistance=0in,leftedgedistance=0in,rightedgedistance=0in,width=5.5in]

 \starttext
 \showlayout
 \input tufte
 \stoptext
 ___
 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
 ___

___
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
___


Re: [NTG-context] Problem with font mapping

2009-11-26 Thread Hans Hagen

Wolfgang Schuster wrote:

Am 25.11.2009 um 16:27 schrieb Mika Ritola:


Hello again,

I seem to be running into all sorts of font problems. Now my document has suddenly turned 
bold. For example, running the following code results in Test. being rendered 
in bold characters.


A few things have changed in ConTeXt font mechanism and I'm going to adapt 
simplefonts
to the new code (will take a while) but there are now many new features 
available,
take for example the new spec-interface which could be used to write this:

\starttypescript[Xserif][all][name]

\definefontsynonym [Serif]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-normal]
 [features=default]
\definefontsynonym [SerifItalic]  
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-italic]
 [features=default]
\definefontsynonym [SerifSlanted] 
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-italic]
 [features=default]
\definefontsynonym [SerifBold]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-normal]
   [features=default]
\definefontsynonym [SerifBoldItalic]  
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-italic]
   [features=default]
\definefontsynonym [SerifBoldSlanted] 
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-bold-italic]
   [features=default]
\definefontsynonym [SerifCaps]
[spec:\ctxlua{tex.sprint(string.lower(string.gsub(\typescripttwo,[^a-zA-Z0-9],)))}-normal-normal]
 [features=smallcaps]

\stoptypescript


\definefontsynonym[Serif][spec:\ctxlua{fonts.names.cleanname(\typescripttwo}-normal-normal][features=default]

I'll add \cleanfontname so that we can have

\definefontsynonym[Serif][spec:\cleanfontname\typescripttwo-normal-normal][features=default]

Hans


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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
___


[NTG-context] redirecting temp files (MkII)

2009-11-26 Thread Jelle Huisman

Hi all,

I use the XeTeX/ConTeXt MkII combi as part of another application. This 
(Windows) application is installed in the C:\Program Files tree which 
apparently is marked 'read only' in Vista/Windows 7. Would it be 
possible to redirect the temp files (*.top, *tui, *.log, *.mp) to a 
different folder outside C:\Program Files\ ? Texexec.rb comes with an 
option --tempdir= but that doesn't work.


Thanks,

Jelle
___
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
___


Re: [NTG-context] redirecting temp files (MkII)

2009-11-26 Thread Hans Hagen

Jelle Huisman wrote:

Hi all,

I use the XeTeX/ConTeXt MkII combi as part of another application. This 
(Windows) application is installed in the C:\Program Files tree which 
apparently is marked 'read only' in Vista/Windows 7. Would it be 
possible to redirect the temp files (*.top, *tui, *.log, *.mp) to a 
different folder outside C:\Program Files\ ? Texexec.rb comes with an 
option --tempdir= but that doesn't work.


why not just run in c:\temp or so

Hans


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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
___


Re: [NTG-context] redirecting temp files (MkII)

2009-11-26 Thread Jelle Huisman

On 26/11/2009 15:25, Hans Hagen wrote:

why not just run in c:\temp or so


Because I have the ConTeXt application in a subdirectory of the main 
application directory and I don't want to mess around on some else's 
computer. Running in c:\temp means that I would have to copy the ConTeXt 
tree to c:\temp, right? Does it stay there or is  c:\temp emptied every 
so often? (which would mean that I have to copy the whole ConTeXt tree 
to c:\temp again...)
Does this suggestion mean that just setting a tempdir doesn't work (with 
texexec)? No Hans-trick somewhere?


Jelle
___
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
___


Re: [NTG-context] Problem with font mapping

2009-11-26 Thread Wolfgang Schuster

Am 26.11.2009 um 16:01 schrieb Hans Hagen:

 \definefontsynonym[Serif][spec:\ctxlua{fonts.names.cleanname(\typescripttwo}-normal-normal][features=default]
 
 I'll add \cleanfontname so that we can have
 
 \definefontsynonym[Serif][spec:\cleanfontname\typescripttwo-normal-normal][features=default]

Can't you just add the Xserif/sans/mono typescript for MkIV to the core 
(type-lua.tex?),
they are such a nice example how to use the new spec-interface for fonts.

Wolfgang

___
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
___


Re: [NTG-context] redirecting temp files (MkII)

2009-11-26 Thread Hans Hagen

Jelle Huisman wrote:

On 26/11/2009 15:25, Hans Hagen wrote:

why not just run in c:\temp or so


Because I have the ConTeXt application in a subdirectory of the main 
application directory and I don't want to mess around on some else's 
computer. Running in c:\temp means that I would have to copy the ConTeXt 
tree to c:\temp, right? Does it stay there or is  c:\temp emptied every 
so often? (which would mean that I have to copy the whole ConTeXt tree 
to c:\temp again...)
Does this suggestion mean that just setting a tempdir doesn't work (with 
texexec)? No Hans-trick somewhere?


maybe

texmfstart --path=path-where-you-want-to-run texexec  --path=



Hans


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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
___


Re: [NTG-context] Problem with font mapping

2009-11-26 Thread Hans Hagen

Wolfgang Schuster wrote:

Am 26.11.2009 um 16:01 schrieb Hans Hagen:


\definefontsynonym[Serif][spec:\ctxlua{fonts.names.cleanname(\typescripttwo}-normal-normal][features=default]

I'll add \cleanfontname so that we can have

\definefontsynonym[Serif][spec:\cleanfontname\typescripttwo-normal-normal][features=default]


Can't you just add the Xserif/sans/mono typescript for MkIV to the core 
(type-lua.tex?),
they are such a nice example how to use the new spec-interface for fonts.


sure,


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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
___


Re: [NTG-context] formulas in itemgroups

2009-11-26 Thread Taco Hoekwater


Andreas Harder wrote:
 Hi all,
 
 I use the following construct for exercises (attachment) and would
 like to save some space saved, like in the second example. Is there a
 trick/command/setup one can use?

Good question (I don't know whether there is a simple trick, but I
have input that could benefit from something like that as well)

Best wishes,
Taco
___
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
___


Re: [NTG-context] redirecting temp files (MkII)

2009-11-26 Thread Jelle Huisman

On 26/11/2009 15:47, Hans Hagen wrote:

texmfstart --path=path-where-you-want-to-run texexec  --path=


No joy, actually I run texexec.rb directly (but that's a different 
story). I'll see if I can run in C:\temp.

Thanks,

Jelle
___
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
___


Re: [NTG-context] 3d prc

2009-11-26 Thread Hans Hagen

gummybears wrote:

How to include 3d prc pdf (produced with Asymptote) with Context ?


see the comments in back-u3d.mkiv for an experimental interface




-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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
___


Re: [NTG-context] texshow-web parameters

2009-11-26 Thread Henning Hraban Ramm

Am 2009-11-23 um 13:03 schrieb richard.steph...@converteam.com:

On the texshow-web Help page it says that the page for a specific  
command can be invoked using a parameter for the url, e.g. http://texshow.contextgarden.net/about 
. I have tried this but all I get is a page saying Error message:  
Cannot recognize URL.


I have tried with a space before the command and without a space. Is  
this functionality broken or am I doing something wrong?



Just open your eyes and look how texshow addresses its pages:
http://texshow.contextgarden.net/cmd/en/color


Greetlings from Lake Constance!
Hraban
---
http://www.fiee.net/texnique/
http://wiki.contextgarden.net
https://www.cacert.org (I'm an assurer)

___
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
___


Re: [NTG-context] 3d prc

2009-11-26 Thread gummybears
On Thu, Nov 26, 2009 at 5:44 PM, Hans Hagen pra...@wxs.nl wrote:

 gummybears wrote:

 How to include 3d prc pdf (produced with Asymptote) with Context ?


 see the comments in back-u3d.mkiv for an experimental interface


File back-u3d.mkiv is not included in the Context distribution (minimal
Context).




 -
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
 -


 ___
 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

 ___

___
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
___


Re: [NTG-context] \vspace

2009-11-26 Thread Henning Hraban Ramm

Am 2009-11-23 um 13:18 schrieb Alan BRASLAU:


On Monday 23 November 2009 11:52:14 Hans Hagen wrote:

Wolfgang Schuster wrote:

add a note to source nobody else than me should use it :)


actually i wanted to say something like that but noticed that you'd
posted to the list, probably in order to create a larger momentum -)


Yes, the cat is out of the box now!


Whee! \vspace! finally!
I'll use it everywhere!
(Ponies, ponies, ponies!)




Greetlings from Lake Constance!
Hraban
---
http://www.fiee.net/texnique/
http://wiki.contextgarden.net
https://www.cacert.org (I'm an assurer)

___
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
___


Re: [NTG-context] \vspace

2009-11-26 Thread Hans Hagen

Henning Hraban Ramm wrote:

Am 2009-11-23 um 13:18 schrieb Alan BRASLAU:


On Monday 23 November 2009 11:52:14 Hans Hagen wrote:

Wolfgang Schuster wrote:

add a note to source nobody else than me should use it :)


actually i wanted to say something like that but noticed that you'd
posted to the list, probably in order to create a larger momentum -)


Yes, the cat is out of the box now!


Whee! \vspace! finally!
I'll use it everywhere!
(Ponies, ponies, ponies!)


but at your own risk as it can mess up vertical spacing pretty well

Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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
___


[NTG-context] typescript question

2009-11-26 Thread Bernhard Rosensteiner
Hello all,

i have finally made my first typescript. Since i use Adobe Opticals i was happy 
to find a description on the wiki how to make a typescript for proper use. 
However i have one little problem (i don´t know if i make something wrong or it 
is a bug):
when i switch to an bodyfont smaller than 13pt my rm typeface don´t work 
anymore (above all is ok, even opticals). The ss typeface works normally. I´ve 
attached the typescripts, .tex file, log and the pdf output with some 
\showbodyfont commands (12pt, 13pt, 14pt) which shows what i mean.
Honestly i have to say that i´m understanding typescripts not completely.
Please help.

best regards
Bernhard


Handout.tex
Description: Binary data


Handout.log
Description: Binary data


type-MyTypeScript.tex
Description: Binary data
___
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
___


Re: [NTG-context] typescript question

2009-11-26 Thread Hans Hagen

Bernhard Rosensteiner wrote:

Hello all,

i have finally made my first typescript. Since i use Adobe Opticals i was happy to find a description on the wiki how to make a typescript for proper use. 
However i have one little problem (i don´t know if i make something wrong or it is a bug):

when i switch to an bodyfont smaller than 13pt my rm typeface don´t work 
anymore (above all is ok, even opticals). The ss typeface works normally. I´ve 
attached the typescripts, .tex file, log and the pdf output with some 
\showbodyfont commands (12pt, 13pt, 14pt) which shows what i mean.
Honestly i have to say that i´m understanding typescripts not completely.
Please help.


can you try do define the undefined bodyfontenvironments (your extra 
sizes) using


\definebodyfontenvironment[..pt]


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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
___


Re: [NTG-context] font-syn.lua error

2009-11-26 Thread luigi scarso
On Wed, Nov 25, 2009 at 12:09 PM, Alan BRASLAU alan.bras...@cea.fr wrote:

 No transparancy, or perhaps total transparancy, my test cannot tell
 as I am using transparancy in metafun to produce a gradient
 from .5white to black.

 Printing the page under acroread then hangs.

Try it again with latest luatex (0.46) ,
and then
# acroread  -toPostScript  -size 108x108 -expand compass.pdf
# ps2pdf14 compass.ps b.pdf
Now you should be able to print the AR version of compass.pdf
(which is not what you actually see with xpdf)
Warning: compass.ps ~ 25M

For a rough version of compass.pdf
# pstopdf -paper match   compass.pdf
# ps2pdf14 compass.ps c.pdf
and now AR should be display it ok

-- 
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  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___