Re: [NTG-context] \textcomma (was Re: Comma separating multiple footnotes)

2012-04-19 Thread Aditya Mahajan

On Thu, 19 Apr 2012, Hans Hagen wrote:


On 19-4-2012 22:59, Wolfgang Schuster wrote:

Is there a reason the make them into math commands, I think it’s better the 
define them
as “contextname=…” to let them behave as in MkII where \textcomma is 
defined as


enco-def.mkii:\definecharacter textcomma ,
enco-def.mkii:\definecharacter textperiod.


indeed, so what about math


I don't think that these are needed in math. We can simply delete lines 
443-445 from char-def:


   {
class="punctuation",
name="textperiod",
   },

and add

   contextname="textperiod",


The case with , (comma) is more tricky. Normally, in plain TeX comma is 
defined as punctuation. But since comma is used as a separator in Europe, 
ConTeXt deos something smart based on the setting of autopunction. I don't 
completely understand how that works.


If autopunction is ignored, then we simply need to map , to punctuation. I 
think that the definition of "mathcomma" can also be deleted. Thus, we can 
simply delete lines 408 onwards:


  mathspec={
   {
class="punctuation",
name="textcomma",
   },
   {
class="ord",
name="mathcomma",
   },
  },


Full patch:

@@ -404,17 +404,8 @@
   description="COMMA",
   direction="cs",
   linebreak="is",
+  contextname="textcomma",
   mathclass="punctuation",
-  mathspec={
-   {
-class="punctuation",
-name="textcomma",
-   },
-   {
-class="ord",
-name="mathcomma",
-   },
-  },
   unicodeslot=0x002C,
  },
  {
@@ -434,6 +425,7 @@
   description="FULL STOP",
   direction="cs",
   linebreak="is",
+  contextname="textperiod",
   mathclass="ord",
   mathspec={
{
@@ -442,10 +434,6 @@
},
{
 class="punctuation",
-name="textperiod",
-   },
-   {
-class="punctuation",
 name="ldotp",
},
   },


Aditya___
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] Interactive image

2012-04-19 Thread Wolfgang Schuster

Am 19.04.2012 um 23:42 schrieb Kip Warner:

> Hey list,
> 
> I am typesetting some images with \externalfigure. I'd like to make some
> of them interactive such that clicking on them invokes a URL, but
> leaving them without borders.
> 
> Is there a recommended way to do this, such as wrapping \externalfigure
> in something like the following?
> 
> \def\href#1#2{\useURL[#2][{#2}][][{#1}]\goto{\url[#2]}[url(#1)]}
> 
> \href{www.something...}{\externalfigure[...]}
> 
> Or is there a better way?

\setupinteraction[state=start]

\starttext
This is a cow: 
\goto{\externalfigure[cow][height=2ex]}[url(http://en.wikipedia.org/wiki/Cow)]
\stoptext

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
___


[NTG-context] Interactive image

2012-04-19 Thread Kip Warner
Hey list,

I am typesetting some images with \externalfigure. I'd like to make some
of them interactive such that clicking on them invokes a URL, but
leaving them without borders.

Is there a recommended way to do this, such as wrapping \externalfigure
in something like the following?

\def\href#1#2{\useURL[#2][{#2}][][{#1}]\goto{\url[#2]}[url(#1)]}

\href{www.something...}{\externalfigure[...]}

Or is there a better way?

-- 
Kip Warner -- Software Engineer
OpenPGP encrypted/signed mail preferred
http://www.thevertigo.com


signature.asc
Description: This is a digitally signed message part
___
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] \textcomma (was Re: Comma separating multiple footnotes)

2012-04-19 Thread Hans Hagen

On 19-4-2012 22:59, Wolfgang Schuster wrote:


Is there a reason the make them into math commands, I think it’s better the 
define them
as “contextname=…” to let them behave as in MkII where \textcomma is defined as

enco-def.mkii:\definecharacter textcomma ,
enco-def.mkii:\definecharacter textperiod.


indeed, so what about math


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 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] \textcomma (was Re: Comma separating multiple footnotes)

2012-04-19 Thread Wolfgang Schuster

Am 19.04.2012 um 22:31 schrieb Hans Hagen:

> On 19-4-2012 21:06, Aditya Mahajan wrote:
>> On Thu, 19 Apr 2012, Wolfgang Schuster wrote:
>> 
>>> 
>>> Don’t use \textcomma in MkIV, it’s a math symbol and doesn’t scale
>>> when you change the relative font size.
>>> 
>>> \starttext
>>> 
>>> a, b\textcomma\ c
>>> 
>>> {\tfxx a, b\textcomma\ c}
>>> 
>>> {\tfb a, b\textcomma\ c}
>>> 
>>> \stoptext
>>> 
>>> @Hans/Aditya: Is it a good idea to put “textcomma” in the mathspec
>>> entry (char-def.lua):
> 
> indeed, it's probably some leftover (there might be some more)
> 
>> What is textcomma supposed to do? I see that it is defined and used in
>> core-mis.mkiv and then redefined in char-def.
>> 
>> My guess is that \textcomma and \textperiod were defined to be
>> complementary to \mathcomma and \mathperiod, but this is not consistent
>> with rest of the naming convention. (\text... begin text mode commands
>> for symbols, and not math mode commands).
>> 
>> Does anyone use \textcomma and \textperiod in math mode? I would suggest
>> that we rename them to \puncuationcomma and \punctuationperiod, and add
>> \textcomma and \textperiod as text mode commands (and remove the
>> definition of \textcomma from core-mis)
> 
> the \text* should be just . and , (no math)
> 
> I have no clue about the math usage. Just tell me what to patch.

Is there a reason the make them into math commands, I think it’s better the 
define them
as “contextname=…” to let them behave as in MkII where \textcomma is defined as

enco-def.mkii:\definecharacter textcomma ,
enco-def.mkii:\definecharacter textperiod.

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] \textcomma (was Re: Comma separating multiple footnotes)

2012-04-19 Thread Hans Hagen

On 19-4-2012 21:06, Aditya Mahajan wrote:

On Thu, 19 Apr 2012, Wolfgang Schuster wrote:



Don’t use \textcomma in MkIV, it’s a math symbol and doesn’t scale
when you change the relative font size.

\starttext

a, b\textcomma\ c

{\tfxx a, b\textcomma\ c}

{\tfb a, b\textcomma\ c}

\stoptext

@Hans/Aditya: Is it a good idea to put “textcomma” in the mathspec
entry (char-def.lua):


indeed, it's probably some leftover (there might be some more)


What is textcomma supposed to do? I see that it is defined and used in
core-mis.mkiv and then redefined in char-def.

My guess is that \textcomma and \textperiod were defined to be
complementary to \mathcomma and \mathperiod, but this is not consistent
with rest of the naming convention. (\text... begin text mode commands
for symbols, and not math mode commands).

Does anyone use \textcomma and \textperiod in math mode? I would suggest
that we rename them to \puncuationcomma and \punctuationperiod, and add
\textcomma and \textperiod as text mode commands (and remove the
definition of \textcomma from core-mis)


the \text* should be just . and , (no math)

I have no clue about the math usage. Just tell me what to patch.

Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 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] Recommendation for including MATLAB-scripts

2012-04-19 Thread Aditya Mahajan

On Thu, 19 Apr 2012, Xenia wrote:


Dear context-folks,

I have to write some short protocols including some matlab-code. Do you
have a recommendation for an easy way to include '.m'-files and diaries
as code?


I'd recommend to use the vim module, which uses vim to generate syntax 
highlighted source code.


\usemodule[vim]
\definevimtyping[MATLAB][syntax=matlab]

\starttext
\includeMATLABfile{filename.m}

and

\startMATLAB

\stopMATLAB

\stoptext

You need both the filter module and the vim module for this to work, and 
also need the vim binary in your path.


Aditya
___
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] \textcomma (was Re: Comma separating multiple footnotes)

2012-04-19 Thread Aditya Mahajan

On Thu, 19 Apr 2012, Wolfgang Schuster wrote:



Don’t use \textcomma in MkIV, it’s a math symbol and doesn’t scale when you 
change the relative font size.

\starttext

a, b\textcomma\ c

{\tfxx a, b\textcomma\ c}

{\tfb a, b\textcomma\ c}

\stoptext

@Hans/Aditya: Is it a good idea to put “textcomma” in the mathspec entry 
(char-def.lua):


What is textcomma supposed to do? I see that it is defined and used in 
core-mis.mkiv and then redefined in char-def.


My guess is that \textcomma and \textperiod were defined to be 
complementary to \mathcomma and \mathperiod, but this is not consistent 
with rest of the naming convention. (\text... begin text mode commands for 
symbols, and not math mode commands).


Does anyone use \textcomma and \textperiod in math mode? I would suggest 
that we rename them to \puncuationcomma and \punctuationperiod, and add 
\textcomma and \textperiod as text mode commands (and remove the 
definition of \textcomma from core-mis)


Aditya___
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] Recommendation for including MATLAB-scripts

2012-04-19 Thread Xenia
Dear context-folks,

I have to write some short protocols including some matlab-code. Do you
have a recommendation for an easy way to include '.m'-files and diaries
as code?

Thanks,

Xenia
___
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] Comma separating multiple footnotes

2012-04-19 Thread Kip Warner
On Thu, 2012-04-19 at 12:01 +0200, Wolfgang Schuster wrote:
> 
> Don’t use \textcomma in MkIV, it’s a math symbol and doesn’t scale
> when you change the relative font size.

Would this be better then?

\setupnote[footnote]
[textseparator={,}]

-- 
Kip Warner -- Software Engineer
OpenPGP encrypted/signed mail preferred
http://www.thevertigo.com


signature.asc
Description: This is a digitally signed message part
___
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] Rendering differences between PDF viewers

2012-04-19 Thread Hans Hagen

On 18-4-2012 12:58, Martin Schröder wrote:

2012/4/18 luigi scarso:

On Wed, Apr 18, 2012 at 8:47 AM, Martin Schröder  wrote:

Adobe Reader needs a special object in the page for it to handle
included pdfs or pngs with transparency correctly on the first page
(search for pdftex and "page groups".)

AdobeReader or the specification(s) ?


It's known that Adobe needs it.
It's not really in the specs as per ISO3200:2008.
Maybe the next version will be clearer there.


My impression with such features is that they relate to pdf as container 
format for e.g. illustrator where such info about grouping is important, 
but I might be wrong.



-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 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] Rendering differences between PDF viewers

2012-04-19 Thread Hans Hagen

On 18-4-2012 13:12, Peter Rolf wrote:


I understand that there is no easy or general solution for this.
But on the other hand is PNG currently the only way to use transparent
bitmaps in TeX. The usage of transparent PNG is quite common, so this is
a general problem that should be solved.

I like your idea of automatically adding such groups, if the user
declares the color space beforehand. Also no answer for the spot color
problem, but as long as the user does not limit the used color spaces,
things can stay as they are. Just my 2 cents.


so first wen need to test with mixed color space documents and such 
hacks to see what happens (as we don't want invalid documents)


Hans


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 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] [***SPAM***] Resetting Page Backgrounds

2012-04-19 Thread Aditya Mahajan

On Thu, 19 Apr 2012, Aditya Mahajan wrote:


On Wed, 18 Apr 2012, Raymond LeClair wrote:

I have written Python classes to automate reading a Tumblr blog and writing 
a file for processing by ConTeXt. No manual editing of the ConTeXt input 
file is allowed.


Photos are incorporated in a graphic created using METAPOST commands 
embedded in the ConTeXt input file. Then the graphic is used as a 
background. I need this background to appear only on one page.


My current solution is to use TeX conditionals to test if the page number 
has incremented, then reset the background to empty. This approach fails in 
many cases. The code below provides a minimum working example of a failure. 
Photos are shown as squares to reduce the size of this post.


Is there a better way to reset the background?


If you know the page numbers in advance, you can also set the layer 
content in the preamble.


\startuseMPgraphic{test-metapost-1}
  StartPage;
  fill Page withcolor 0.25[blue,white];
  StopPage;
\stopuseMPgraphic

\startuseMPgraphic{test-metapost-2}
  StartPage;
  fill Page withcolor 0.25[green,white];
  StopPage;
\stopuseMPgraphic

\definelayer
  [test-layer]
  [
width=\paperwidth,
height=\paperheight,
state=repeat,
frame=on,
  ]

\definelayer[test-layer:2][test-layer]
\definelayer[test-layer:3][test-layer]

\setMPlayer[test-layer:2]{\useMPgraphic{test-metapost-1}}
\setMPlayer[test-layer:3]{\useMPgraphic{test-metapost-2}}

\setupbackgrounds[page][background={test-layer}]

\starttext
\dorecurse{20}{\input knuth}
\stoptext


Aditya
___
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] [***SPAM***] Resetting Page Backgrounds

2012-04-19 Thread Aditya Mahajan

On Wed, 18 Apr 2012, Raymond LeClair wrote:


I have written Python classes to automate reading a Tumblr blog and writing a 
file for processing by ConTeXt. No manual editing of the ConTeXt input file is 
allowed.

Photos are incorporated in a graphic created using METAPOST commands embedded 
in the ConTeXt input file. Then the graphic is used as a background. I need 
this background to appear only on one page.

My current solution is to use TeX conditionals to test if the page 
number has incremented, then reset the background to empty. This 
approach fails in many cases. The code below provides a minimum working 
example of a failure. Photos are shown as squares to reduce the size of 
this post.


Is there a better way to reset the background?


Use can use layers with state=reset, which automatically reset after each 
page.


\startuseMPgraphic{test-metapost-1}
  StartPage;
  fill Page withcolor 0.25[blue,white];
  StopPage;
\stopuseMPgraphic

\startuseMPgraphic{test-metapost-2}
  StartPage;
  fill Page withcolor 0.25[green,white];
  StopPage;
\stopuseMPgraphic

\definelayer
  [test-layer]
  [
width=\paperwidth,
height=\paperheight,
state=reset,
frame=on,
  ]

\setMPlayer[test-layer]{\useMPgraphic{test-metapost-1}}

\setupbackgrounds[page][background={test-layer}]

\starttext
\dorecurse{10}{\input knuth}
\setMPlayer[test-layer]{\useMPgraphic{test-metapost-2}}
\dorecurse{10}{\input knuth}
\stoptext

Aditya
___
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] New version of ConTeXt package for Notepad++ available

2012-04-19 Thread Idris Samawi Hamid ادريس سماوي حامد
On Wed, 18 Apr 2012 14:14:59 -0600, Idris Samawi Hamid ادريس   سماوي حامد  
 wrote:



 Notes:
1. This updated package contains a new feature:




8. I forgot to mention that acrobat.bat has been replaced by sumatra.bat.  
Sumatra PDF reader works much better than Acrobat with TeX: it does not  
lock the file when recompiling, supports synctex etc. When I need adobe,  
it lets me me open reader/acrobat from its own menu. Very nice tool.


Best wishes
Idris
--
Professor Idris Samawi Hamid, Editor-in-Chief
International Journal of Shīʿī Studies
Department of Philosophy
Colorado State University
Fort Collins, CO 80523
___
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] New version of ConTeXt package for Notepad++ available

2012-04-19 Thread Hans Hagen

On 19-4-2012 11:41, Mojca Miklavec wrote:

2012/4/19 Hans Hagen:

On 18-4-2012 22:14, Idris Samawi Hamid ادريس   سماوي حامد wrote:


Dear Gang,

I have made a new ConTeXt package for Notepad++ (Npp). Unfortunately the
wiki is not letting me update the zip file (Patrick? Mojca?):



Why not put it into taco's texlive repository? In tds you can put it in

/context/data/notepadplusplus

or so, where users can pick it up and put it in the right spot.


This is not very practical. Users then need to install TeX live to be
able to locate/extract the files in the first place ;)

And for notepad++ the files under texmf-dist/... are probably useless anyway.


oh, I thought that you also fetched some stuff from that location for 
the minimals


Hans


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 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] Problem with placefigure in a new page with latest beta

2012-04-19 Thread Charles

Hi,

In the latest beta (2012.04.17, and it was working in version 
2012.02.21), the first figure in the following example is ignored:


\starttext

See in \in{Figure}[refA].

\placefigure[page][refA]{Figure legend A}{\externalfigure[]}

\placefigure[here][refB]{Figure legend B}{\externalfigure[]}

\stoptext

Any idea why?

Thanks

Charles
___
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] Comma separating multiple footnotes

2012-04-19 Thread Wolfgang Schuster

Am 19.04.2012 um 00:56 schrieb Kip Warner:

> On Wed, 2012-04-18 at 09:10 +0200, Wolfgang Schuster wrote:
>> You need \setupnote because the other setting for the number in the text re 
>> also set with \setupnote.
> 
> So this should suffice then in the environment?
> 
>% Implemented by Hans in bleeding edge ConTeXt...
>\setupnote[footnote]
>[textseparator={\textcomma}]

Don’t use \textcomma in MkIV, it’s a math symbol and doesn’t scale when you 
change the relative font size.

\starttext

a, b\textcomma\ c

{\tfxx a, b\textcomma\ c}

{\tfb a, b\textcomma\ c}

\stoptext

@Hans/Aditya: Is it a good idea to put “textcomma” in the mathspec entry 
(char-def.lua):

 {
  adobename="comma",
  category="po",
  cjkwd="na",
  description="COMMA",
  direction="cs",
  linebreak="is",
  mathclass="punctuation",
  mathspec={
   {
class="punctuation",
name="textcomma",
   },
   {
class="ord",
name="mathcomma",
   },
  },
  unicodeslot=0x002C,
 },

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] New version of ConTeXt package for Notepad++ available

2012-04-19 Thread Mojca Miklavec
2012/4/19 Hans Hagen :
> On 18-4-2012 22:14, Idris Samawi Hamid ادريس   سماوي حامد wrote:
>>
>> Dear Gang,
>>
>> I have made a new ConTeXt package for Notepad++ (Npp). Unfortunately the
>> wiki is not letting me update the zip file (Patrick? Mojca?):
>
>
> Why not put it into taco's texlive repository? In tds you can put it in
>
> /context/data/notepadplusplus
>
> or so, where users can pick it up and put it in the right spot.

This is not very practical. Users then need to install TeX live to be
able to locate/extract the files in the first place ;)

And for notepad++ the files under texmf-dist/... are probably useless anyway.

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
___

Re: [NTG-context] [***SPAM***] Resetting Page Backgrounds

2012-04-19 Thread Hans Hagen

On 18-4-2012 14:18, Raymond LeClair wrote:


\setupbackgrounds[page][background={{}}]


just

\setupbackgrounds[page][background=]


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 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] New version of ConTeXt package for Notepad++ available

2012-04-19 Thread Hans Hagen

On 18-4-2012 22:14, Idris Samawi Hamid ادريس   سماوي حامد wrote:

Dear Gang,

I have made a new ConTeXt package for Notepad++ (Npp). Unfortunately the
wiki is not letting me update the zip file (Patrick? Mojca?):


Why not put it into taco's texlive repository? In tds you can put it in

/context/data/notepadplusplus

or so, where users can pick it up and put it in the right spot.

Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 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
___