[NTG-context] new beta

2013-03-10 Thread Hans Hagen
Hi, I uploaded a beta. The most important change is that the 'context' function now uses the formatters mechanism instead of Lua's format. This has several benefits. First of all it's in most cases faster (I measured upto 3 times) but it also permits us to support some more: integer

[NTG-context] new tricks in beta

2013-02-20 Thread Hans Hagen
Hi Aditya, I made a mathstyle mechanism ... used in fences first: \starttext \startTEXpage[offset=1ex] \def\TestMe#1% {\NC \ttbf #1 \NC \ruledhbox{$\setupmathstyle[#1]x + x_j^2 + x_i^{e^2} + \frac{1}{x}$} \NC \ruledhbox{$\setupmathstyle[#1,small]x + x_j^2 + x_i^{e^2} + \frac{1}{x}$}

[NTG-context] new version of OpenType Math fonts from Gust

2013-01-31 Thread Mojca Miklavec
Hello, the distribution now contains the new (not yet on CTAN) version of OpenType Math fonts: LM, TeX Gyre Pagella & Termes. Please report if you experience any problems with installation (problems with contents should be reported straight to the Polish team). Mojca

Re: [NTG-context] New module: simplesteps.

2012-12-15 Thread Sietse Brouwer
Thank you both, Philipp and Wolfgang, I've updated the wiki. Wolfgang wrote: > You have to give the name of begin command because context has to know it > when buffers > are nested (I will a explanation about this in another thread). Ah, I was wondering about that. Yes, I'd be interested in the

Re: [NTG-context] New module: simplesteps.

2012-12-15 Thread Wolfgang Schuster
Am 15.12.2012 um 11:28 schrieb Sietse Brouwer : >>> \begingroup >>> \grabbufferdata[simplesteps][startframe][stopframe]% >>> } >> >> With the \grabbufferdata command the content beginning from \startframe >> until \stopframe is stored in a buffer with the name “simplesteps”. > > (1) What does

Re: [NTG-context] New module: simplesteps.

2012-12-15 Thread Philipp Gesang
· > > Am 15.12.2012 um 11:40 schrieb Philipp Gesang > : > > > · > > > \begingroup > \grabbufferdata[simplesteps][startframe][stopframe]% > } > >>> > >>> With the \grabbufferdata command the content beginning from \startframe > >>> until \stopframe is stored in

Re: [NTG-context] New module: simplesteps.

2012-12-15 Thread Wolfgang Schuster
Am 15.12.2012 um 11:40 schrieb Philipp Gesang : > · > \begingroup \grabbufferdata[simplesteps][startframe][stopframe]% } >>> >>> With the \grabbufferdata command the content beginning from \startframe >>> until \stopframe is stored in a buffer with the name “simplesteps

Re: [NTG-context] New module: simplesteps.

2012-12-15 Thread Wolfgang Schuster
Am 15.12.2012 um 12:49 schrieb Hans Hagen : > (dangerous name: \startframe ... could be core name) It depends, using it asa global name isa no go but defining it inside group is useful, e.g. \def\mycommand_start {\begingroup \let\startframe\mycommand_frame_start \let\stopframe \mycomma

Re: [NTG-context] New module: simplesteps.

2012-12-15 Thread Hans Hagen
On 12/15/2012 7:02 AM, Wolfgang Schuster wrote: Am 15.12.2012 um 00:07 schrieb Andre Caldas : thanks for the interesting contribution! Have a look at the patch I hopefully don’t forget to append. I didn't quite understood how this works: \unexpanded\def\startframe{\dosingleempty\frame_start}

Re: [NTG-context] New module: simplesteps.

2012-12-15 Thread Marco Patzer
On 2012–12–15 Sietse Brouwer wrote: > But when I tried to write a minimal example, I couldn't get it to compile. > > %% begin example > \grabbufferdata[mybuffer][thisisthestart][thisistheend] > \thisisthestart > My friend, you would not tell with such high zest > To children ardent for some despa

Re: [NTG-context] New module: simplesteps.

2012-12-15 Thread Andre Caldas
> %% begin example > \grabbufferdata[mybuffer][thisisthestart][thisistheend] > \thisisthestart > My friend, you would not tell with such high zest > To children ardent for some desparate glory, > The old Lie: Dulce et decorum est > Pro patria mori. > \thisistheend > > \typebuffer[mybuffer] > %% end

Re: [NTG-context] New module: simplesteps.

2012-12-15 Thread Philipp Gesang
· > >> \begingroup > >> \grabbufferdata[simplesteps][startframe][stopframe]% > >> } > > > > With the \grabbufferdata command the content beginning from \startframe > > until \stopframe is stored in a buffer with the name “simplesteps”. > > (1) What does the \begingroup do? I could not

Re: [NTG-context] New module: simplesteps.

2012-12-15 Thread Sietse Brouwer
>> \begingroup >> \grabbufferdata[simplesteps][startframe][stopframe]% >> } > > With the \grabbufferdata command the content beginning from \startframe until > \stopframe is stored in a buffer with the name “simplesteps”. (1) What does the \begingroup do? I could not find a \endgroup in the pat

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Wolfgang Schuster
Am 15.12.2012 um 00:07 schrieb Andre Caldas : >> thanks for the interesting contribution! Have a look at the patch >> I hopefully don’t forget to append. > > I didn't quite understood how this works: > \unexpanded\def\startframe{\dosingleempty\frame_start} This creates the new command \startfra

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Andre Caldas
> thanks for the interesting contribution! Have a look at the patch > I hopefully don’t forget to append. I didn't quite understood how this works: \unexpanded\def\startframe{\dosingleempty\frame_start} \def\frame_start[#1]{% \iffirstargument \section{#1}%% solution needed here! \fi \be

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Andre Caldas
Hello, OK! > You were so quick to write your module… > Thanks for sharing, :-) > but I could not typeset the example file you sent: > I didn't get whether your file simplesteps.mkiv should be renamed I did this on my machine: 1. Copy simplesteps.{lua,mkiv} to texmf-local/tex/context/third/simp

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Otared Kavian
Hi André, You were so quick to write your module… Thanks for sharing, but I could not typeset the example file you sent: I didn't get whether your file simplesteps.mkiv should be renamed simplesteps.mkiv or simplesteps.tex or even t-simplesteps.tex or any other suffix. Maybe after you apply the

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Andre Caldas
> These expand to Lua long strings, [===[ and ]===] respectively, > without checking, so theoretically the same issue will arise iff > your string contains ]===]. I consider the likelihood for this to > happen to be too low to bother, but if you want to be absolutely > on the safe side you can also

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Philipp Gesang
· > > \unexpanded\def\uncover[#1]% > > {\ctxlua{ > > distance = simplesteps.distance_to_step(\!!bs#1\!!es) > > ... > > }} > > > > it works because the " is now only part of the string. > > Thanks. That's what I needed. I guess > bs = begin string > es = end string. These ex

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Andre Caldas
> \unexpanded\def\uncover[#1]% > {\ctxlua{ > distance = simplesteps.distance_to_step(\!!bs#1\!!es) > ... > }} > > it works because the " is now only part of the string. Thanks. That's what I needed. I guess bs = begin string es = end string. Cheers, André Caldas. __

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Wolfgang Schuster
Am 14.12.2012 um 17:18 schrieb Andre Caldas : >>> I have one question: >>> - What does it happen when there is a quotation mark (") inside the >>> parameter? Do I need to "escape" the contents passed to the macro? >> >> >> No you don’t have to but you could have checked yourself :) > > Sorry..

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Andre Caldas
>> I have one question: >> - What does it happen when there is a quotation mark (") inside the >> parameter? Do I need to "escape" the contents passed to the macro? > > > No you don’t have to but you could have checked yourself :) Sorry... I didn't try it when I asked, but I had the impression I d

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Wolfgang Schuster
Am 14.12.2012 um 16:43 schrieb Andre Caldas : - maybe switch to mkvi as named parameters make rewriting macros a breeze >>> >>> Would you elaborate a bit further? >> >> You can use for the parameter in your macros names instead of number, >> as you can see below the first definition

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Andre Caldas
>>> - maybe switch to mkvi as named parameters make rewriting >>>macros a breeze >> >> Would you elaborate a bit further? > > You can use for the parameter in your macros names instead of number, > as you can see below the first definition uses “#1” for the argument while > the second uses “#t

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Wolfgang Schuster
Am 14.12.2012 um 12:21 schrieb Andre Caldas : >> - maybe switch to mkvi as named parameters make rewriting >>macros a breeze > > Would you elaborate a bit further? You can use for the parameter in your macros names instead of number, as you can see below the first definition uses “#1” for

Re: [NTG-context] New module: simplesteps.

2012-12-14 Thread Andre Caldas
Hello! > thanks for the interesting contribution! Have a look at the patch > I hopefully don’t forget to append. Thank you! I will take a look and learn... ;-) >> [...] >> I use \startbuffer and \stopbuffer, and also Lua. As I said, I don't >> really know how to write a module... comments are v

Re: [NTG-context] New module: simplesteps.

2012-12-13 Thread Philipp Gesang
Hey André, thanks for the interesting contribution! Have a look at the patch I hopefully don’t forget to append. · > Well since Raw Steps did not work with mkiv, I tried making a very > very simple module for a "beamer-like" behaviour. > > I don't really know how to write a module..

[NTG-context] New module: simplesteps.

2012-12-13 Thread Andre Caldas
Well since Raw Steps did not work with mkiv, I tried making a very very simple module for a "beamer-like" behaviour. I don't really know how to write a module... but here is what I did: https://bitbucket.org/andrecaldas/math-video-classes/src/9116599821fc246cb54d3e6d7b8e6304649eaffb/lib?at=def

Re: [NTG-context] new

2012-12-05 Thread Hans Hagen
On 12/5/2012 8:46 PM, Otared Kavian wrote: Hi Hans, This is great news! Thanks for the feature,a nd even more thanks for having made it public… Is there also a way to control the way some signs are more or less close together? For instance in the following example a global way to have a result

Re: [NTG-context] new

2012-12-05 Thread Otared Kavian
Hi Hans, This is great news! Thanks for the feature,a nd even more thanks for having made it public… Is there also a way to control the way some signs are more or less close together? For instance in the following example a global way to have a result similar to \int_{0}^1\!\!\!\int_{0}^

[NTG-context] new

2012-12-05 Thread Hans Hagen
\startsetups math:morespacing \ordordspacing\textstyle 1mu plus .5mu minus .25mu\relax \stopsetups \setupmathematics [setups=math:morespacing] $y=m x+c$ -- - Hans Hagen | PRAGMA AD

Re: [NTG-context] New module: crossref

2012-11-04 Thread Wolfgang Schuster
Am 02.11.2012 um 00:28 schrieb Zenlima : > @Philipp > I like to put into a public vcs like github. I think it should be > something general for all modules (maybe a github like installation on > contextgarden? There was discussion about this in a small group but we never came to a conclusion bec

Re: [NTG-context] New module: simplebib

2012-11-03 Thread Wolfgang Schuster
Am 04.11.2012 um 05:35 schrieb Aditya Mahajan : > On Sun, 4 Nov 2012, Zenlima wrote: > >> Hallo, >> >> here is my third module for you guys: a simple bibliography without a >> database but with items: >> >> http://modules.contextgarden.net/simplebib >> >> http://wiki.contextgarden.n

Re: [NTG-context] New module: simplebib

2012-11-03 Thread Aditya Mahajan
On Sun, 4 Nov 2012, Zenlima wrote: Hallo, here is my third module for you guys: a simple bibliography without a database but with items: http://modules.contextgarden.net/simplebib http://wiki.contextgarden.net/Simple_Bibliography Please feel free to comment. I don't really

[NTG-context] New module: simplebib

2012-11-03 Thread Zenlima
Hallo, here is my third module for you guys: a simple bibliography without a database but with items: http://modules.contextgarden.net/simplebib http://wiki.contextgarden.net/Simple_Bibliography Please feel free to comment. H. ___

Re: [NTG-context] New module: crossref

2012-11-02 Thread Procházka Lukáš Ing . - Pontex s . r . o .
Hello, it looks nice. Two notes: 1) There is a LaTeX package (vref? fref? - I can't remeber) which distinguishes between references targeting forward and backward from the place of the crossref. So your module should be slightly improved adding "uparrow" / "downarrow" for the link which li

[NTG-context] New module: crossref

2012-11-01 Thread Zenlima
Hi, after the feedback for my first module (pararef) and regarding my next upcoming module I decided to put crossref into its own module, so that it can be used by other modules or without any other module. http://modules.contextgarden.net/crossref Unluckily I forgot to fill out

[NTG-context] New module: crossref

2012-11-01 Thread Zenlima
Hi, after the feedback for my first module (pararef) and regarding my next upcoming module I decided to put crossref into its own module, so that it can be used by other modules or without any other module. http://modules.contextgarden.net/crossref Unluckily I forgot to fill out

Re: [NTG-context] New module: pararef

2012-10-16 Thread Procházka Lukáš Ing . - Pontex s . r . o .
Hello, thanks for the job. Would you kindly add a Czech alternative: \setupparareftext[cz][braketOpen={(}] % Should be "bracketOpen" \setupparareftext[cz][braketClose={)}] % Should be "bracketClose" \setupparareftext[cz][atpageLeft={ na stran\ecaron\ }] \setupparareftext[cz][atpageRight={}

Re: [NTG-context] New module: pararef

2012-10-14 Thread Wolfgang Schuster
Am 13.10.2012 um 17:25 schrieb Philipp Gesang : >> Please feel free to send me comments about the coding style and what I >> could have done in a better way. E.g. the interface file is missing, >> but I don't know how it should look like. > > Dunno, you’d need an interface if you plan on docum

Re: [NTG-context] New module: pararef

2012-10-14 Thread Philipp Gesang
Hi! · > after so many of you helped me, I want to give back. I just made my > t-pararef module public for everyone: > > http://modules.contextgarden.net/pararef > > http://wiki.contextgarden.net/Paragraph_Referencing Nice, looks good. Do you plan on having a developme

Re: [NTG-context] New module: pararef

2012-10-13 Thread Mojca Miklavec
On Sat, Oct 13, 2012 at 6:53 PM, Zenlima wrote: > >> To include the module in the minimals he should send a mail to Mojca. > > That will come, but I wanted to get some feedback first.. and it was > necessary as we saw :-) I didn't inspect the module closely, but it seems short and general enough t

Re: [NTG-context] New module: pararef

2012-10-13 Thread Wolfgang Schuster
Am 13.10.2012 um 18:53 schrieb Zenlima : > Hi Sietse, hi Wolfgang, > > thanks for your first feedback. Right now I am working on your > suggestions. > > @Wolfgang: I don't understand your suggestion: "add a label key to > disable/enable the label text". Can you describe it more detaily or in >

Re: [NTG-context] New module: pararef

2012-10-13 Thread Zenlima
Hi Sietse, hi Wolfgang, thanks for your first feedback. Right now I am working on your suggestions. @Wolfgang: I don't understand your suggestion: "add a label key to disable/enable the label text". Can you describe it more detaily or in other words? I am not sure how to implement it with the ref

Re: [NTG-context] New module: pararef

2012-10-13 Thread Wolfgang Schuster
Am 13.10.2012 um 12:55 schrieb Sietse Brouwer : > About the crossref command: 'brakets' is spelled 'brackets' in > English... Perhaps you can change it while the module is still young. Instead of a key to enable/disable the bracket I would use left/right keys to set the symbols and add a label

Re: [NTG-context] New module: pararef

2012-10-13 Thread Sietse Brouwer
Hello Zenlima, Nice work. I very much approve of the 'a paragraph is one coherent thought/argument' school, and this is definitely more useful than the \setupparagraphnumbering mechanism which numbers every TeX paragraph. I've added some wikilinks to your [[Paragraph Referencing]] page from relate

Re: [NTG-context] New module: pararef

2012-10-13 Thread Wolfgang Schuster
Am 13.10.2012 um 01:44 schrieb Zenlima : > Hallo, > > after so many of you helped me, I want to give back. I just made my > t-pararef module public for everyone: > > http://modules.contextgarden.net/pararef > > http://wiki.contextgarden.net/Paragraph_Referencing > > Please f

[NTG-context] New module: pararef

2012-10-13 Thread Zenlima
Hallo, after so many of you helped me, I want to give back. I just made my t-pararef module public for everyone: http://modules.contextgarden.net/pararef http://wiki.contextgarden.net/Paragraph_Referencing Please feel free to send me comments about the coding style and w

Re: [NTG-context] new beta

2012-07-27 Thread Hans Hagen
On 26-7-2012 20:36, Pablo Rodríguez wrote: I'm not sure whether this is important, but http://www.pragma-ade.com/general/qrcs/setup-en.pdf#page=3 contains the date "July z, 2012" fixed in next -

Re: [NTG-context] new beta

2012-07-27 Thread Hans Hagen
On 27-7-2012 04:22, Li Yanrui (李延瑞) wrote: 2012/7/27 Hans Hagen : The memory footprint should be somewhat smaller for non cjk usage. (format generation as well as runtime) and the format file is some 10-15% smaller now. The fonts fallback can not work. This is a minmal example: \definefontsy

Re: [NTG-context] new beta

2012-07-26 Thread 李延瑞
2012/7/27 Hans Hagen : > The memory footprint should be somewhat smaller for non cjk usage. (format > generation as well as runtime) and the format file is some 10-15% smaller > now. The fonts fallback can not work. This is a minmal example: \definefontsynonym[song][name:adobesongstd] \definefon

Re: [NTG-context] new beta

2012-07-26 Thread Pablo Rodríguez
On 26/07/12 20:12, Hans Hagen wrote: > Hi, > > I uploaded a beta. There is also an updated status-mkiv document: > > files done644 > files todo314 > files pending 21 (some day) > obsolete2 > total 981 > > So, I have some files to go (mostly lua files) before I pick up th

[NTG-context] new beta

2012-07-26 Thread Hans Hagen
Hi, I uploaded a beta. There is also an updated status-mkiv document: files done644 files todo314 files pending 21 (some day) obsolete2 total 981 So, I have some files to go (mostly lua files) before I pick up the column thread. The memory footprint should be somewha

Re: [NTG-context] new beta

2012-07-16 Thread Hans Hagen
On 16-7-2012 22:30, Wolfgang Schuster wrote: be changed to \unexpanded\def\strc_itemgroups_start_columns {\startmixedcolumns[itemgroupcolumns]} \unexpanded\def\strc_itemgroups_stop_columns {\stopmixedcolumns} because “start” and “stop” are interface/language dependant strings. Ok. I n

Re: [NTG-context] new beta

2012-07-16 Thread Wolfgang Schuster
Am 16.07.2012 um 22:02 schrieb Hans Hagen: > Hi, > > I uploaded a new beta. The usual fixes. New is a first version of a new multi > column handler. Pretty experimental but eventually it will replace the > current multi column routine, which is fact is then an instance, think of > > \definemi

Re: [NTG-context] new beta

2012-07-16 Thread Hans Hagen
On 16-7-2012 22:02, Hans Hagen wrote: Hi, I uploaded a new beta. The usual fixes. New is a first version of a new multi column handler. Pretty experimental but eventually it will replace the current multi column routine, which is fact is then an instance, think of \definemixedcolumns [column

[NTG-context] new beta

2012-07-16 Thread Hans Hagen
Hi, I uploaded a new beta. The usual fixes. New is a first version of a new multi column handler. Pretty experimental but eventually it will replace the current multi column routine, which is fact is then an instance, think of \definemixedcolumns [columns] \unexpanded\def\setupcolumns {

Re: [NTG-context] new beta 2012.07.09 22:35 failing

2012-07-09 Thread Hans Hagen
On 9-7-2012 23:40, Meer, H. van der wrote: This is beta: ConTeXt ver: 2012.07.09 22:35 MKIV fmt: 2012.7.9 int: english/english It fails me with (see below). I am fairly sure now this must be an error seeing the minimal example provided. Here is the most minimal example I could concoct: it

[NTG-context] new beta 2012.07.09 22:35 failing

2012-07-09 Thread Meer, H. van der
This is beta: ConTeXt ver: 2012.07.09 22:35 MKIV fmt: 2012.7.9 int: english/english It fails me with (see below). I am fairly sure now this must be an error seeing the minimal example provided. Here is the most minimal example I could concoct: \setuphead[chapter][header=high] \starttext \cha

[NTG-context] new beta

2012-06-28 Thread Hans Hagen
Hi, I just uploaded a beta that can have some issues due to cleanup of one of the core support modules. Nothing serious probably. Hans - Hans Hagen | PRAGMA ADE Ridderstraat

Re: [NTG-context] new layer for letter

2012-06-07 Thread Wolfgang Schuster
Am 07.06.2012 um 14:58 schrieb Peter Münster: > Hello, > > How can I create a new layer with the letter module? > > I've tried this, but it does not work: > > --8<---cut here---start->8--- > \usemodule[letter] > \defineletterlayer[test] > \defineletterelemen

[NTG-context] new layer for letter

2012-06-07 Thread Peter Münster
Hello, How can I create a new layer with the letter module? I've tried this, but it does not work: --8<---cut here---start->8--- \usemodule[letter] \defineletterlayer[test] \defineletterelement[layer][test][default]{NEW LAYER} \setupletterlayer[test][alternati

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 lo

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

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 reposit

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/d

[NTG-context] New version of ConTeXt package for Notepad++ available

2012-04-18 Thread Idris Samawi Hamid ادريس سماوي حامد
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?): "Upload warning | Files of the MIME type "application/zip" are not allowed to be uploaded." So for now, here is a dropbox link: https://www.dr

Re: [NTG-context] new lucida font

2012-03-24 Thread Wolfgang Schuster
Am 24.03.2012 um 01:58 schrieb Renaud AUBIN: > Le 19/03/2012 11:36, Wolfgang Schuster a écrit : >> Can you try to attached typescript file, I replaced the files for italic and >> bolditalic fonts for the sans style with the names from the latex example >> document. The slanted and boldslanted a

Re: [NTG-context] new lucida font

2012-03-23 Thread Renaud AUBIN
Le 19/03/2012 11:36, Wolfgang Schuster a écrit : > Can you try to attached typescript file, I replaced the files for italic and > bolditalic fonts for the sans style with the names from the latex example > document. The slanted and boldslanted alternatives for the sans style are > also > fixed.

Re: [NTG-context] new lucida font

2012-03-19 Thread Wolfgang Schuster
Am 19.03.2012 um 11:12 schrieb Meer, H. van der: On 19 mrt. 2012, at 10:01, Wolfgang Schuster wrote: The new version of the lucida fonts use different names for the typescript, we have now: - “lucida” for the old type1 version, - “lucidaot” for the new opentype version and - “lucidanova”

Re: [NTG-context] new footnotes

2012-03-19 Thread Honza Hejzl
Aha, I've got it: \setupnotation[footnote][width=2em,alternative=] This works now. It does the same as location=page before my update. Thanks, Honza ___ If your question is of interest to others as well, please add a

Re: [NTG-context] new lucida font

2012-03-19 Thread Meer, H. van der
On 19 mrt. 2012, at 10:01, Wolfgang Schuster wrote: The new version of the lucida fonts use different names for the typescript, we have now: - “lucida” for the old type1 version, - “lucidaot” for the new opentype version and - “lucidanova” as alternative name for the opentype version. The "luc

Re: [NTG-context] new footnotes

2012-03-19 Thread Honza Hejzl
Wow, it is pretty confusing. The last week before I updated mkiv I used to use it for numbers aligned with the left margin of the text. It means the same like serried version but with the textblock of footnotes aligned indented: TEXT 169 sdfsf >sdfsdfdf 170 sdfsdf Now it just

Re: [NTG-context] new footnotes

2012-03-19 Thread Wolfgang Schuster
Am 19.03.2012 um 08:55 schrieb Honza Hejzl: > Hello, > > I have tested those „new“ commands for footnotes and it seems some of > them don't work properly. I like footnotes' numbers aligned to the > left side of the main text. On wiki is: > > \setupnotation[footnote][location=left,width=1cm] > \

Re: [NTG-context] new lucida font

2012-03-19 Thread Wolfgang Schuster
Am 19.03.2012 um 10:38 schrieb Meer, H. van der: > Wolfgang, thanks. > > I didn't know about the new identifier lucidaot. The TUG documentation seems > not to mention its use for ConTeXt. The otf now loads. The sample document for the new fonts was typeset with LaTeX and Hans missed the new

Re: [NTG-context] new lucida font

2012-03-19 Thread Wolfgang Schuster
Am 19.03.2012 um 09:38 schrieb Meer, H. van der: > I just bought the new Lucida font from TUG and installed it in my local texmf > under fonts/opentype/bh/lucidaot/ > Then I did: > mtxrun --generate > mtxrun --script font --reload > to be sure the new install will be picked up by ConTeXt mki

[NTG-context] new lucida font

2012-03-19 Thread Meer, H. van der
I just bought the new Lucida font from TUG and installed it in my local texmf under fonts/opentype/bh/lucidaot/ Then I did: mtxrun --generate mtxrun --script font --reload to be sure the new install will be picked up by ConTeXt mkiv. I think I did read somewhere that mkiv will prefer otf abov

Re: [NTG-context] new footnotes

2012-03-19 Thread Thomas A. Schmitz
On 03/19/2012 08:55 AM, Honza Hejzl wrote: Is the work still in progress or am I missing something? In the first place, you're missing an example... Thomas ___ If your question is of interest to others as well, ple

[NTG-context] new footnotes

2012-03-19 Thread Honza Hejzl
Hello, I have tested those „new“ commands for footnotes and it seems some of them don't work properly. I like footnotes' numbers aligned to the left side of the main text. On wiki is: \setupnotation[footnote][location=left,width=1cm] \setupnote[footnote][location=page,numbercommand=] This simply

Re: [NTG-context] New chapters of Manual--Yay!

2012-01-30 Thread john Culleton
On Mon, 30 Jan 2012 17:38:06 -0500 john Culleton wrote: > I note with some joy that there are draft replacement chapters > for the MANUAL. The site shows three such: Fonts, typography and > page design. Are there more that I missed? I am printing them out > with great haste :<) > First comment

[NTG-context] New chapters of Manual--Yay!

2012-01-30 Thread john Culleton
I note with some joy that there are draft replacement chapters for the MANUAL. The site shows three such: Fonts, typography and page design. Are there more that I missed? I am printing them out with great haste :<) -- John Culleton Free list of books for self-publishers: http://wexfordpress.net/

Re: [NTG-context] new beta

2012-01-17 Thread Hans Hagen
On 17-1-2012 09:08, Mari Voipio wrote: On Mon, Jan 16, 2012 at 19:47, Hans Hagen wrote: I uploaded a new beta. This time a couple of fixes + some reorganization of font related code. More to follow. There's something fishy somewhere in the fonts or the simplefonts module, because a file that

Re: [NTG-context] new beta

2012-01-17 Thread Mari Voipio
On Mon, Jan 16, 2012 at 19:47, Hans Hagen wrote: > I uploaded a new beta. This time a couple of fixes + some reorganization of > font related code. More to follow. There's something fishy somewhere in the fonts or the simplefonts module, because a file that worked last week now gets

[NTG-context] new beta

2012-01-16 Thread Hans Hagen
Hi, I uploaded a new beta. This time a couple of fixes + some reorganization of font related code. More to follow. Hans - Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH H

[NTG-context] new beta

2012-01-12 Thread Hans Hagen
Hi, I uploaded a new zip so the garden will have a new beta in a while. Combinations and delimited texts have been cleaned up (a bit). Hans - Hans Hagen | PRAGMA ADE Ridder

Re: [NTG-context] new beta

2012-01-01 Thread Wolfgang Schuster
Am 01.01.2012 um 03:39 schrieb Li Yanrui (李延瑞): > 2011/12/31 Hans Hagen : >> Hi, >> >> I uploaded a new beta. As I'm still in cleaning-up mode, the usual problems >> could show up as quite some code was adapted (moved around). For those >> interested there is a file 'status-mkiv' that can be run

Re: [NTG-context] new beta

2011-12-31 Thread 李延瑞
2011/12/31 Hans Hagen : > Hi, > > I uploaded a new beta. As I'm still in cleaning-up mode, the usual problems > could show up as quite some code was adapted (moved around). For those > interested there is a file 'status-mkiv' that can be run to get an overview > of where we stand. > > One big chang

Re: [NTG-context] new beta

2011-12-31 Thread Wolfgang Schuster
Am 31.12.2011 um 13:58 schrieb Meer, H. van der: > Has the following been found and corrected? > >>> \definetypeface [\typescriptone] [tt] [mono] [cursor] [default] >>> \@tlstyle > \@tlstyle > > \dousestyleparameter ...\currentstyleparameter {#1 >

Re: [NTG-context] new beta

2011-12-31 Thread Meer, H. van der
Has the following been found and corrected? >> \definetypeface [\typescriptone] [tt] [mono] [cursor] >> [default] \@tlstyle \@tlstyle \dousestyleparameter ...\currentstyleparameter {#1 }\ifx \curre

[NTG-context] new beta

2011-12-31 Thread Hans Hagen
Hi, I uploaded a new beta. As I'm still in cleaning-up mode, the usual problems could show up as quite some code was adapted (moved around). For those interested there is a file 'status-mkiv' that can be run to get an overview of where we stand. One big change has been the way alignments are

Re: [NTG-context] new beta

2011-12-22 Thread Hans Hagen
On 22-12-2011 16:37, Henning Hraban Ramm wrote: Am 2011-12-22 um 14:55 schrieb Hans Hagen: This version might also solve some of the reported problems with page imposition (as the page-* modules are being cleaned up buglets cna be introduced .. nothing really changes there apart from speedup a

Re: [NTG-context] new beta

2011-12-22 Thread Henning Hraban Ramm
Am 2011-12-22 um 14:55 schrieb Hans Hagen: This version might also solve some of the reported problems with page imposition (as the page-* modules are being cleaned up buglets cna be introduced .. nothing really changes there apart from speedup and namespacing). "typing" (\starttyping) s

[NTG-context] new beta

2011-12-22 Thread Hans Hagen
Hi, I uploaded a new beta. The most prominent changes are that the frames macro, mp graphics, and scaling code has been cleaned up, sped up and namespaced. of course some bug can have crept in. Don't expect wonders with respect to speedup although it can make some difference when multiple bac

Re: [NTG-context] new version of t-french.mkiv

2011-11-09 Thread Peter Münster
On Tue, Nov 08 2011, Hans Hagen wrote: > The \' is probably not needed (in mkiv) which saves you some upload time. Yes, let's save bandwidth ;) > Are \iemes etc used in some conversion? No, I've just copied these definitions from enco-ffr.mkii. > instead of the demo mode you can do: > > \con

Re: [NTG-context] new version of t-french.mkiv

2011-11-08 Thread Hans Hagen
On 8-11-2011 22:32, Peter Münster wrote: Hello, Finally, after a development period of more than three years[1], I'm pleased to announce the long-awaited[2] update of the t-french ConTeXt module, which is greatly enhanced compared to the previous version[3]. In spite of the high complexity[4] of

[NTG-context] new version of t-french.mkiv

2011-11-08 Thread Peter Münster
Hello, Finally, after a development period of more than three years[1], I'm pleased to announce the long-awaited[2] update of the t-french ConTeXt module, which is greatly enhanced compared to the previous version[3]. In spite of the high complexity[4] of the code, I consider the module stable[5]

[NTG-context] new beta

2011-11-02 Thread Hans Hagen
Hi, I uploaded a beta. A few things requested the last couple of days have been added / patched (not all of course). Also, as a prelude to getting rid of the supp-fun modules initials have been rewritten. It was a hybrid of low level code and a wrapper but now is only available in \placeiniti

Re: [NTG-context] New STIX font version

2011-10-08 Thread Khaled Hosny
On Sat, Oct 08, 2011 at 05:19:30PM +0200, Wolfgang Schuster wrote: > > Am 07.10.2011 um 19:56 schrieb Khaled Hosny: > > > On Fri, Oct 07, 2011 at 07:24:24PM +0200, Hans Hagen wrote: > >> so Khaled might be tempted to add the few new shapes to xits > > > > I'm working on an update already, at lea

Re: [NTG-context] New STIX font version

2011-10-08 Thread Wolfgang Schuster
Am 07.10.2011 um 19:56 schrieb Khaled Hosny: > On Fri, Oct 07, 2011 at 07:24:24PM +0200, Hans Hagen wrote: >> so Khaled might be tempted to add the few new shapes to xits > > I'm working on an update already, at least to get glyph fixes in. Do you plan to convert more math fonts (e.g. mathdesig

Re: [NTG-context] New STIX font version

2011-10-07 Thread Khaled Hosny
On Fri, Oct 07, 2011 at 08:14:34PM +0200, Hans Hagen wrote: > On 7-10-2011 19:56, Khaled Hosny wrote: > >On Fri, Oct 07, 2011 at 07:24:24PM +0200, Hans Hagen wrote: > >>so Khaled might be tempted to add the few new shapes to xits > > > >I'm working on an update already, at least to get glyph fixes

<    2   3   4   5   6   7   8   9   10   11   >