Re: [NTG-context] Devanagari in Siddhanta font with Context m-iv

2013-12-11 Thread Shree Devi Kumar
Aditya,

sarvaartha should have the r maatraa on top of va - in case of siddhanta
font when used in ConText the maatraa is not coming instead a dot seems
visible halfway on va (I am assuming that you can read devanagari) - when
you compare with Chandas the maatraa is  clearly visible. so
सर्वार्थ is looking like सवार्थ with a dot on वा

It may be a question of correctly stacking the components for building the
vertically stacked glyph (I do not know much about font design and
rendering - this is just a guess).

Shree Devi Kumar

भजन - कीर्तन - आरती @ http://bhajans.ramparivar.com


On Thu, Dec 12, 2013 at 3:44 AM, Aditya Mahajan  wrote:

> On Tue, 10 Dec 2013, Shree Devi Kumar wrote:
>
>  ​Thanks for your reply.
>>
>>
>> I am using a goodies file for coloring the accents.
>> I am attaching that as well as a MWE tex file and resulting pdf.
>>
>> Chandas is not fully unicode compliant for some of the accents which
>> are encoded in PUA,
>>
>> hence I would like to use Siddhanta which I understand is a completely
>> redesigned version
>> of Chandas fully compartible with Vedic Unicode
>>
>>
>> Fonts are available from:
>> Siddhanta: http://svayambhava.org/index.php/en/fonts
>> Chandas: http://www.sanskritweb.net/cakram/
>>
>
> Can you explain what is wrong in the output?
>
> 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
>
> ___
>
___
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] Devanagari in Siddhanta font with Context m-iv

2013-12-11 Thread Aditya Mahajan

On Tue, 10 Dec 2013, Shree Devi Kumar wrote:


​Thanks for your reply.


I am using a goodies file for coloring the accents.
I am attaching that as well as a MWE tex file and resulting pdf.

Chandas is not fully unicode compliant for some of the accents which
are encoded in PUA,

hence I would like to use Siddhanta which I understand is a completely
redesigned version
of Chandas fully compartible with Vedic Unicode


Fonts are available from:
Siddhanta: http://svayambhava.org/index.php/en/fonts
Chandas: http://www.sanskritweb.net/cakram/


Can you explain what is wrong in the output?

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] Understanding the basics of \define

2013-12-11 Thread Wolfgang Schuster

Am 11.12.2013 um 13:31 schrieb Pavel Stupin :

> Thank you everyone for your help! Quite excited about having so much
> for me to learn. This mailing list is immensely helpful indeed. So,
> both solutions worked for me, but I've decided to stick to the one
> that uses comma separated list having adapted to my needs the code
> kindly offered by Wolfgang (it would take me a while to figure out the
> solution myself).

When you process a comma list you can also loop over the entries in the list
which is faster than accessing each entry of the list one by one (I change in
the example to natural tables because tabulate can’t be used in this way):

\def\Test
  {\dosingleargument\doTest}

\def\doTest[#1]%
  {\newcounter\TestCounter
   \bTABLE
   \processcommalist[#1]\dodoTest
   \eTABLE}

\def\dodoTest#1%
  {\doglobal\increment\TestCounter
   \bTR \expanded{\bTD \TestCounter \eTD} \bTD #1 \eTD \eTR}

\starttext
\Test[First row,Second row]
\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
___


Re: [NTG-context] Understanding the basics of \define

2013-12-11 Thread Pavel Stupin
Thank you everyone for your help! Quite excited about having so much
for me to learn. This mailing list is immensely helpful indeed. So,
both solutions worked for me, but I've decided to stick to the one
that uses comma separated list having adapted to my needs the code
kindly offered by Wolfgang (it would take me a while to figure out the
solution myself).

Kind regards, Pavel.

2013/12/11 Wolfgang Schuster :
>
> Am 10.12.2013 um 17:54 schrieb Alan Braslau :
>
>> Perhaps you might want to do something processing a comma separated
>> list:
>>
>> http://wiki.contextgarden.net/System_Macros/Comma_Separated_Lists
>
>
> A short example can help to show how it can be used:
>
> \def\test
>   {\dosingleargument\dotest}
>
> \def\dotest[#1]%
>   {\starttabulate
>\NC 1 \EQ \getfromcommalist[#1][1]\commalistelement \NC\NR
>\NC 2 \EQ \getfromcommalist[#1][2]\commalistelement \NC\NR
>\stoptabulate}
>
> \starttext
> \test[First row,Second row]
> \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
> ___
___
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] [OT] Book complete and thank you

2013-12-11 Thread Otared Kavian
Very nice book! Thanks for sharing.
I would like just to point out that contrary to what is said on page 40, Pierre 
Verhulst was not a French mathematician but rather a Belgian mathematician who 
proposed a model of differential equations to describe population and resource 
dynamics , please see:

http://www-groups.dcs.st-and.ac.uk/~history/Biographies/Verhulst.html

Best regards: OK

On 10 déc. 2013, at 23:42, Kip Warner  wrote:

> Friends,
> 
> I have completed my book typeset using ConTeXt[1]. I'd like to extend my
> gratitude to this list for the many questions answered. In particular,
> I'd like to thank in no particular order Hans Hagen, Luigi Scarso,
> Wolfgang Schuster, Mojca Miklavec, and Taco Hoekwater. I'd also like to
> thank Adam Reviczky for his help in preparing debs for ConTeXt.
> 
>
> 
> Without these peoples' help, it would have been more difficult to
> develop my project.
> 
> Take care,
> 
> -- 
> Kip Warner -- Software Engineer
> OpenPGP encrypted/signed mail preferred
> http://www.thevertigo.com
> ___
> 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
___