Re: [NTG-context] new upload

2022-01-23 Thread śrīrāma via ntg-context
On Monday, January 24, 2022 3:55:07 AM IST Arthur Rosendahl wrote:
> Do you have a list of the fonts you know
> to be working, and those you know to have issues, and with what script?
> This would be most useful, I think.  I can help collating the
> information on a wiki page.

Yes. Just yesterday while trying to fix some devanagari fonts, I was able to 
get a partial fix to one of the bugs in rendering. Once that work reaches some 
conclusion, I will make a list of fonts with accompanying typescripts for the 
wiki.

śrīrāma (kauśika)


___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] doublesided margin page number

2022-01-23 Thread Youssef Cherem via ntg-context
I've managed to put double-sided page numbers -- but numbers are restarting
after two, though. What's going on?





\setuppagenumbering[location=,alternative=doublesided]


%
https://tex.stackexchange.com/questions/128854/context-eliminate-topspace-and-bottomspace?rq=1

\definelayer

[pagenumber]

[

width=\paperwidth,

height=\paperheight,

% preset=rightbottom,

voffset=.3\paperheight

]


%\setupbackgrounds[page][background=pagenumber, setups=setpagenumber]

\setupbackgrounds[text] [rightmargin] [background=pagenumber,
setups=setpagenumber]

%isso aqui é o que funciona para doublesided (frente e verso)


\startsetups setpagenumber

% Set the page number to be (2em, \lineheight) from the bottom right corner

% Note the `preset=rightbottom` above.

%

% The 2nd set of optional arguments are for the frame. For illustration I
change

% the color and font of the page number

\setlayerframed

[pagenumber]

[

x=3em,

y=2em,

]

[

frame=on,

foregroundcolor=red,

foregroundstyle=bold,

]

{\pagenumber}

\stopsetups


% Disable default page numbering



\starttext


Page 1


\page


Page 2


\page


Page 3


\page


Page 4


\dorecurse{15}{\input knuth}


\stoptext

=




Thanks a lot for any help!
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] new upload

2022-01-23 Thread Arthur Rosendahl via ntg-context
On Sat, Jan 22, 2022 at 06:01:42PM +0530, kauśika via ntg-context wrote:
> Recently when we were troubled by incorrect rendering of certain conjuncts in 
> malayalam, Hans added a new font-feature. More below*, but first some 
> background: from my testing, the main reason for the problems with fonts 
> seems 
> to come from the varied interpretations and/or implementations of OTF 
> specification. To add to this complexity there are two script tags (v1, v2 in 
> OTF and -one, -two in ConTeXt) for each writing system (script). While there 
> are fonts which work very well right away many others have issues and the 
> feature was added to somewhat alleviate these issues.

  Thank you for this overview.  Do you have a list of the fonts you know
to be working, and those you know to have issues, and with what script?
This would be most useful, I think.  I can help collating the
information on a wiki page.

Best,

Arthur
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] How to add entire chapter's page ranger for index entry?

2022-01-23 Thread Bruce Horrocks via ntg-context


> On 23 Jan 2022, at 21:40, Joel via ntg-context  wrote:
> 
> I am adding items to an index simply using `\index{word}`.
> 
> There are a few cases where instead of printing just the page number where 
> `\index{word}` is placed, I need the entire page range for that chapter to be 
> displayed. For instance, if Chapter 3 spans page 22-50, and I place 
> `\index{word}` in Chapter 3, I need the index to display "word 22-50", but 
> only for that entry...not for all index entries.
> 
> How to add entire chapter's page ranger for index entry?


\startchapter[title={My chapter title}]
\startregister[index][anIdentifier]{word}

The text...

\stopregister[index][anIdentifier]
\stopchapter

—
Bruce Horrocks
Hampshire, UK

___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] How to add entire chapter's page ranger for index entry?

2022-01-23 Thread Henning Hraban Ramm via ntg-context

Am 23.01.22 um 22:40 schrieb Joel via ntg-context:

I am adding items to an index simply using `\index{word}`.

There are a few cases where instead of printing just the page number 
where `\index{word}` is placed, I need the entire page range for that 
chapter to be displayed. For instance, if Chapter 3 spans page 22-50, 
and I place `\index{word}` in Chapter 3, I need the index to display 
"word 22-50", but only for that entry...not for all index entries.


How to add entire chapter's page ranger for index entry?


You need to use

\startregister[index][some code]{Entry}
... chapter content ...
\stopregister[index][some code]

Hraban
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] How to add entire chapter's page ranger for index entry?

2022-01-23 Thread Joel via ntg-context
I am adding items to an index simply using `\index{word}`.

There are a few cases where instead of printing just the page number where 
`\index{word}` is placed, I need the entire page range for that chapter to be 
displayed. For instance, if Chapter 3 spans page 22-50, and I place 
`\index{word}` in Chapter 3, I need the index to display "word 22-50", but only 
for that entry...not for all index entries.

How to add entire chapter's page ranger for index entry?

--Joel
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Credit in DTK

2022-01-23 Thread Jean-Pierre Delange via ntg-context

Hi Hraban,

Wir könnten versuchen, weiter in Richtung Kirgisisch oder Georgisch zu 
gehen (eine Sprache, die für mich so obskur ist wie Aramäisch), nur um 
zu zeigen, dass Fragen der Silbentrennung nicht nur von Indianisten oder 
hellenistischen Experten ernst genommen werden, sondern von denen, die 
ConTeXt verwenden wollen . Dieser junge Ingenieur, der an seiner 
Statistik-Diplomarbeit arbeiten muss, ist ein Sinnbild: ConTeXt ist für 
die unterschiedlichsten Menschen attraktiv. Das Werk von Garulfo (ein 
Beispiel unter vielen) hat dies einst hervorragend demonstriert. Meine 
Idee war, keine mehrsprachige Antwort zu machen, sondern eine MWE mit 
ConTeXt in mehreren verschiedenen Sprachen (immer noch unter der 
Überschrift Paralleltext mit mehreren Klassenstufen), aber ConTeXt 
beschwert sich ...



We could try to go further towards Kyrgyz or Georgian (a language which 
is as obscure to me as Aramaic), just to show that questions of 
hyphenation are taken seriously not only by Indianists, or Hellenist 
experts , but by those who want to use ConTeXt. This young engineer who 
has to work on his statistics thesis is a symbol: ConTeXt is attractive 
to a wide variety of people. The work of Garulfo (one example among many 
others) once demonstrated this excellently. My idea was not to do a 
polyglot answer, but a MWE with ConTeXt in several distinct languages 
​​(still under the heading parallel text with several grade levels), but 
ConTeXt complains...


P.S. : Ik ben vergeten Nederlands toe te voegen. Ik hoop dat Hans en 
Taco het me niet kwalijk nemen.


Le 23/01/2022 à 14:26, Henning Hraban Ramm via ntg-context a écrit :

Salut Jean-Pierre,

ich werde nicht versuchen, dir ebenso polyglott zu antworten. (Mein 
Latein ist arg eingestaubt, wegen Altgriechisch wäre ich damals 
beinahe sitzen geblieben, mein Russisch, Italienisch und Französisch 
reicht zum Einkaufen, von Schwedisch ist nicht mehr viel übrig, an 
Kirgisisch bin ich gescheitert, und Althochdeutsch ist schwer zu 
lernen...) ;D


Ich nehme Luigi gerne mit auf, hatte ihn wohl übersehen.

Herzliche Grüße,
Hraban

Am 23.01.22 um 14:08 schrieb Jean-Pierre Delange via ntg-context:

Hi Hraban,

Ich finde es ziemlich umfangreich. Wenn ich mich nicht irre, sollten 
wir auch Luigi Scarso erwähnen, der seine Meinung zu TEI/XML geäußert 
und auf einen früheren Beitrag von ihm zu TEI-XML und ConTeXt 
hingewiesen hat.


I think it's pretty comprehensive. If I'm not mistaken, we should 
also mention Luigi Scarso, who gave his opinion on TEI/XML, and 
indicated an earlier contribution from him concerning TEI-XML and 
ConTeXt.


Penso che sia abbastanza completo. Se non sbaglio, dobbiamo citare 
anche Luigi Scarso, che ha espresso la sua opinione su TEI/XML, e ha 
indicato un suo precedente contributo in merito a TEI-XML e ConTeXt.


Creo que es bastante completo. Si no me equivoco, también debemos 
mencionar a Luigi Scarso, quien dio su opinión sobre TEI/XML e indicó 
una contribución anterior suya sobre TEI-XML y ConTeXt.


Je crois que c'est assez complet. Si je ne me trompe, il faudrait 
mentionner aussi Luigi Scarso, qui a donné son avis à propos de 
TEI/XML, et a indiqué un apport antérieur de sa part concernant 
TEI-XML et ConTeXt.


Satis comprehensivum illud puto. Si ni fallor, mentionem quoque 
debemus Luigi Scarso, qui sententiam suam de TEI/XML dedit, et 
priorem collationem ab eo de TEI-XML et ConTeXt indicabat.


Νομίζω ότι είναι αρκετά περιεκτικό. Αν δεν κάνω λάθος, θα πρέπει να 
αναφέρουμε και τον Luigi Scarso, ο οποίος εξέφρασε τη γνώμη του για 
τα TEI/XML, και υπέδειξε παλαιότερη συνεισφορά του σχετικά με τα 
TEI-XML και 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___ 



--
Jean-Pierre Delange
Ancients&Moderns
Professeur de Philosophie (HC)
begin:vcard
fn:Jean-Pierre Delange
n:Delange;Jean-Pierre
org;quoted-printable:Acad=C3=A9mie de Versailles
email;internet:adeiman...@free.fr
title;quoted-printable:Agr=C3=A9g=C3=A9 de philosophie
tel;cell:0673947496
x-mozilla-html:FALSE
version:2.1
end:vcard

___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] How to make an in-text list without periods

2022-01-23 Thread Wolfgang Schuster via ntg-context

Thomas A. Schmitz via ntg-context schrieb am 23.01.2022 um 21:13:

This is a FAQ: you can't mix keywords and assignments, hence:

\startitemize [n,text] [stopper=]


Put a comment after the second argument to get rid of the extra space 
before the first item.


    \startitemize [text,n] [stopper=]%

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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] How to make an in-text list without periods

2022-01-23 Thread Thomas A. Schmitz via ntg-context

This is a FAQ: you can't mix keywords and assignments, hence:

\startitemize [n,text] [stopper=]

Thomas

On 23.01.22 21:05, Joel via ntg-context wrote:
Strangely when I use `\startitemize[text, n, stopper=]`, which I hoped 
would make the period go away, I just get a regular bulleted list, it 
seems to ignore the 'text' command.


How can I achieve this output (below)?

There are many kinds of animals at the children's zoo: (1) rabbits, (2) 
pigs, (3) sheep, and (4) dogs.


--Joel

Minimum working example:

\starttext
     There are many kinds of animals at the children's zoo:
     \startitemize[text, n, stopper=]
         \item rabbits,
         \item pigs,
         \item sheep,
         and
         \item dogs.
     \stopitemize
\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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] How to make an in-text list without periods

2022-01-23 Thread Joel via ntg-context
I am trying to create an in-text list, with parenthesis, but without the period.

If I use this `\startitemize[text, n]`, I get an in-text list, but there are 
periods:

There are many kinds of animals at the children's zoo: (1.) rabbits, (2.) pigs, 
(3.) sheep, and (4.) dogs.
Strangely when I use `\startitemize[text, n, stopper=]`, which I hoped would 
make the period go away, I just get a regular bulleted list, it seems to ignore 
the 'text' command.

How can I achieve this output (below)?

There are many kinds of animals at the children's zoo: (1) rabbits, (2) pigs, 
(3) sheep, and (4) dogs.

--Joel

Minimum working example:

\starttext
    There are many kinds of animals at the children's zoo:
    \startitemize[text, n, stopper=]
        \item rabbits,
        \item pigs,
        \item sheep,
        and
        \item dogs.
    \stopitemize
\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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Credit in DTK

2022-01-23 Thread Henning Hraban Ramm via ntg-context

Salut Jean-Pierre,

ich werde nicht versuchen, dir ebenso polyglott zu antworten. (Mein 
Latein ist arg eingestaubt, wegen Altgriechisch wäre ich damals beinahe 
sitzen geblieben, mein Russisch, Italienisch und Französisch reicht zum 
Einkaufen, von Schwedisch ist nicht mehr viel übrig, an Kirgisisch bin 
ich gescheitert, und Althochdeutsch ist schwer zu lernen...) ;D


Ich nehme Luigi gerne mit auf, hatte ihn wohl übersehen.

Herzliche Grüße,
Hraban

Am 23.01.22 um 14:08 schrieb Jean-Pierre Delange via ntg-context:

Hi Hraban,

Ich finde es ziemlich umfangreich. Wenn ich mich nicht irre, sollten wir 
auch Luigi Scarso erwähnen, der seine Meinung zu TEI/XML geäußert und 
auf einen früheren Beitrag von ihm zu TEI-XML und ConTeXt hingewiesen hat.


I think it's pretty comprehensive. If I'm not mistaken, we should also 
mention Luigi Scarso, who gave his opinion on TEI/XML, and indicated an 
earlier contribution from him concerning TEI-XML and ConTeXt.


Penso che sia abbastanza completo. Se non sbaglio, dobbiamo citare anche 
Luigi Scarso, che ha espresso la sua opinione su TEI/XML, e ha indicato 
un suo precedente contributo in merito a TEI-XML e ConTeXt.


Creo que es bastante completo. Si no me equivoco, también debemos 
mencionar a Luigi Scarso, quien dio su opinión sobre TEI/XML e indicó 
una contribución anterior suya sobre TEI-XML y ConTeXt.


Je crois que c'est assez complet. Si je ne me trompe, il faudrait 
mentionner aussi Luigi Scarso, qui a donné son avis à propos de TEI/XML, 
et a indiqué un apport antérieur de sa part concernant TEI-XML et ConTeXt.


Satis comprehensivum illud puto. Si ni fallor, mentionem quoque debemus 
Luigi Scarso, qui sententiam suam de TEI/XML dedit, et priorem 
collationem ab eo de TEI-XML et ConTeXt indicabat.


Νομίζω ότι είναι αρκετά περιεκτικό. Αν δεν κάνω λάθος, θα πρέπει να 
αναφέρουμε και τον Luigi Scarso, ο οποίος εξέφρασε τη γνώμη του για τα 
TEI/XML, και υπέδειξε παλαιότερη συνεισφορά του σχετικά με τα TEI-XML 
και 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] May I credit you in DTK?

2022-01-23 Thread śrīrāman via ntg-context
On Sunday, January 23, 2022 6:43:53 PM IST Henning Hraban Ramm via ntg-context 
wrote:
> Well, you are very active in this discussion and thus advance the
> support for Indic languages. That’s what I say in the article.
Understood.

> One reason for crediting active users (even if they don’t code
> themselves) is to bust the myths that ConTeXt would be a one-man-show
> and nobody would use it. (Other myths I address in this article are that
> ConTeXt would be unfit for math or bibliography.)
Regarding the math and bibliography part, I would like to add that I am a 
graduate student of Electrical Engineering and as part of my thesis/
dissertation work I have to write and publish papers in the field (statistical 
signal processing, theoretical statistics). For all my personal thesis work, 
outside of journal work (where LaTeX is the norm) I use only ConTeXt. And the 
maths and bibliography support is simply top-notch. I hope to graduate soon 
(by July) and can share some of my work as a proof-of-concept if you wish. 
(Not sure I can do so now due to publications, etc. you know …).

Thanks,
śrīrāman


___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] May I credit you in DTK?

2022-01-23 Thread Henning Hraban Ramm via ntg-context

Am 23.01.22 um 13:58 schrieb śrīrāman:

I am flattered that you want to credit me, but am not sure why you would want
to do so: I am just a beginner here (relatively) and only recently from a
month or two back got involved with the indic things.


Well, you are very active in this discussion and thus advance the 
support for Indic languages. That’s what I say in the article.


One reason for crediting active users (even if they don’t code 
themselves) is to bust the myths that ConTeXt would be a one-man-show 
and nobody would use it. (Other myths I address in this article are that 
ConTeXt would be unfit for math or bibliography.)



If you want to anyway, then I would only request you to kindly use my given
name: śrīrāman (or śrīrāma) as very few people outside family know me as
kauśika. I had created this account for personal use some time back and never
thought to change the name. Now since I am professionally involved in this I
have changed it to my given name.


You’re welcome! I just assumed you wanted to stay pseudonymous.

Hraban
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] Credit in DTK

2022-01-23 Thread Jean-Pierre Delange via ntg-context

Hi Hraban,

Ich finde es ziemlich umfangreich. Wenn ich mich nicht irre, sollten wir 
auch Luigi Scarso erwähnen, der seine Meinung zu TEI/XML geäußert und 
auf einen früheren Beitrag von ihm zu TEI-XML und ConTeXt hingewiesen hat.


I think it's pretty comprehensive. If I'm not mistaken, we should also 
mention Luigi Scarso, who gave his opinion on TEI/XML, and indicated an 
earlier contribution from him concerning TEI-XML and ConTeXt.


Penso che sia abbastanza completo. Se non sbaglio, dobbiamo citare anche 
Luigi Scarso, che ha espresso la sua opinione su TEI/XML, e ha indicato 
un suo precedente contributo in merito a TEI-XML e ConTeXt.


Creo que es bastante completo. Si no me equivoco, también debemos 
mencionar a Luigi Scarso, quien dio su opinión sobre TEI/XML e indicó 
una contribución anterior suya sobre TEI-XML y ConTeXt.


Je crois que c'est assez complet. Si je ne me trompe, il faudrait 
mentionner aussi Luigi Scarso, qui a donné son avis à propos de TEI/XML, 
et a indiqué un apport antérieur de sa part concernant TEI-XML et ConTeXt.


Satis comprehensivum illud puto. Si ni fallor, mentionem quoque debemus 
Luigi Scarso, qui sententiam suam de TEI/XML dedit, et priorem 
collationem ab eo de TEI-XML et ConTeXt indicabat.


Νομίζω ότι είναι αρκετά περιεκτικό. Αν δεν κάνω λάθος, θα πρέπει να 
αναφέρουμε και τον Luigi Scarso, ο οποίος εξέφρασε τη γνώμη του για τα 
TEI/XML, και υπέδειξε παλαιότερη συνεισφορά του σχετικά με τα TEI-XML 
και ConTeXt.




begin:vcard
fn:Jean-Pierre Delange
n:Delange;Jean-Pierre
org;quoted-printable:Acad=C3=A9mie de Versailles
email;internet:adeiman...@free.fr
title;quoted-printable:Agr=C3=A9g=C3=A9 de philosophie
tel;cell:0673947496
x-mozilla-html:FALSE
version:2.1
end:vcard

___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] May I credit you in DTK?

2022-01-23 Thread śrīrāman via ntg-context
On Sunday, January 23, 2022 3:46:02 PM IST Henning Hraban Ramm via ntg-context 
wrote:
> Hi, I’m writing an article for DANTE’s magazine “Die TeXnische Komödie”
> (DTK) about the current discussions and developments in ConTeXt, and I’m
> planning to do that regularly.
⋮
> Kauśika
⋮
> If you don’t want that, I’ll remove your name, of course.
> You are also welcome to correct me, if I misunderstood you/something.

Hi, 

I am flattered that you want to credit me, but am not sure why you would want 
to do so: I am just a beginner here (relatively) and only recently from a 
month or two back got involved with the indic things.

If you want to anyway, then I would only request you to kindly use my given 
name: śrīrāman (or śrīrāma) as very few people outside family know me as 
kauśika. I had created this account for personal use some time back and never 
thought to change the name. Now since I am professionally involved in this I 
have changed it to my given name.

Thanks,
śrīrāman (kauśika)


___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Linespacing modified across document

2022-01-23 Thread Hans Hagen via ntg-context

On 1/23/2022 8:58 AM, Alexandre Christe via ntg-context wrote:

Dear list,

I've noticed that in my document the linespacing (verified 
with \the\baselineskip) is not consistent across the whole document.


In the first section, it's fine (no maths). Later on, it gets increased 
by some amount, which tends to depend on what kind of mathematics are in 
between, so it's not constant.


Has anyone else noticed this too?


It can depend on the ht/dp ratio of the font, so maybe you need to adapt 
that (when setting up linespacing).


Hans


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] May I credit you in DTK?

2022-01-23 Thread Henning Hraban Ramm via ntg-context
Hi, I’m writing an article for DANTE’s magazine “Die TeXnische Komödie” 
(DTK) about the current discussions and developments in ConTeXt, and I’m 
planning to do that regularly.


Find attached the current version (in German / LaTeX).
I’d like to give credit to people involved and mention some of you:

Hans Hagen (of course)
Jean-Pierre Delange
Jürgen Hanneder
Kauśika
Otared Kavian
Joey McCollum
Pablo Rodriguez
Thomas A. Schmitz
Mikael Sundqvist

If you don’t want that, I’ll remove your name, of course.
You are also welcome to correct me, if I misunderstood you/something.

Hraban

contextkurznotiert.tex
Description: TeX document
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] new upload

2022-01-23 Thread kauśika via ntg-context
On Sunday, January 23, 2022 1:28:52 PM IST hanneder--- via ntg-context wrote:
> When using these fonts regularly, one notices very erratic formatting
> phenomena that must have to
> do with the Devanagarī font, or its interaction with (Xe)TeX. Perhaps
> this is the same phenomenon
> seen from the user side.
> 
> In my case things improved when I switched to Adishila (in XeTeX):
> 
> \newfontfamily\sanskritfont[Script=Devanagari,Mapping=RomDev,Scale=1.45]{Adi
> shilaSan}
> 
> This is, to my taste, the nicest Sanskrit font, but it is difficult to
> decide between Adishila and
> Shobhika.

Adishila is a great font too and comes in many more styles (letter press, etc) 
than Shobhika. However the latter has more conjuncts. For example:
ङ्क्ल 
ङ्ग्ध्व
appear as halant forms in Adishila while they are proper conjuncts in 
Shobhika. Of course, these are rare conjuncts, so …

Anyway, in ConTeXt Adishila works well with 
features=devanagari-one

> I cannot say how thrilled I am about the Indic support, thanks a lot
> to Kaushika!

It is very much an ongoing effort. I am working on some proper documentation 
soon to serve as a guide for fonts (what works, what doesn't, fixes, hacks, 
etc). But mostly it is in a very usable state (for the most part).

I am very much a non-expert and helping in very little ways. It is Hans in the 
background who is doing all the really important things with the code, design 
and engineering of the system. So really, we should thank him!

kauśika


___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] new upload

2022-01-23 Thread hanneder--- via ntg-context
(it is a bit of a pity that support for indic scripts is such a  
weird mix of font technology and
engine dependent reshuffling ... probably also driven by limitations  
of open type at that time)>


When using these fonts regularly, one notices very erratic formatting  
phenomena that must have to
do with the Devanagarī font, or its interaction with (Xe)TeX. Perhaps  
this is the same phenomenon

seen from the user side.

In my case things improved when I switched to Adishila (in XeTeX):

\newfontfamily\sanskritfont[Script=Devanagari,Mapping=RomDev,Scale=1.45]{AdishilaSan}

This is, to my taste, the nicest Sanskrit font, but it is difficult to  
decide between Adishila and

Shobhika.

The Murty font is also quite good, but it is commercial and cannot be  
used for book production. I
asked whether there was a way to get a licence, but at the time this  
was impossible. But the font
team there recommended ``Sanskrit Text'' (Sansk.ttf) which is one of  
their products that made it
into a Microsoft Windows Standard font (I am not using Windows). It is  
also very good, but Adishila

works better for me.

I cannot say how thrilled I am about the Indic support, thanks a lot  
to Kaushika!


Best
Jürgen


- Nachricht von kauśika via ntg-context  -
 Datum: Sat, 22 Jan 2022 16:08:10 +0530
   Von: kauśika via ntg-context 
Antwort an: mailing list for ConTeXt users 
   Betreff: Re: [NTG-context] new upload
An: mailing list for ConTeXt users 
Cc: kauśika 


On Saturday, January 22, 2022 3:55:12 PM IST Hans Hagen via  
ntg-context wrote:

Is there a font out there that supports all these scripts in one font?


Shobhika font is a free font that has some of the largest number of glyphs
(i.e has many conjuncts) for the Devanagari script.
https://github.com/Sandhi-IITBombay/Shobhika

The font also has a good Latin component based on PT Serif. This Latin part
has good support for the roman (IAST) transliteration for Sanskrit. But
strictly only the IAST spec character for Sanskrit are available.

It also has glyphs for some commonly used mathematical symbols.

Noto Serif Devanagari is also decent for just Devanagari (not sure  
of the IAST

part).

As for Sans typefaces, Mukta Devanagari is a free font:
https://github.com/EkType/Mukta

Of these, Shobhika has the best conjunct coverage. I will shortly update the
wiki with a much more exhaustive list and report here.

kauśika


___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___



- Ende der Nachricht von kauśika via ntg-context  
 -




---

Prof. Dr. Juergen Hanneder
Philipps-Universitaet Marburg
FG Indologie u. Tibetologie
Deutschhausstr.12
35032 Marburg
Germany
Tel. 0049-6421-28-24930
hanne...@staff.uni-marburg.de

___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___