[NTG-context] Re: upload

2024-01-19 Thread Denis Maier via ntg-context
  Pablo Rodriguez via ntg-context hat am 19.01.2024 18:34 CET geschrieben:     On 1/18/24 20:43, Denis Maier via ntg-context wrote: >> *Von:*Alain Delmotte

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-19 Thread Hans Hagen
On 1/19/2024 7:13 PM, Bruce Horrocks wrote: On 19 Jan 2024, at 09:31, Hans Hagen wrote: On 1/18/2024 11:15 PM, Bruce Horrocks wrote: On 18 Jan 2024, at 18:56, Shiv Shankar Dayal wrote: I understand that why it is slow, but the problem is that the difference is too high. My book has

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-19 Thread Bruce Horrocks
> On 19 Jan 2024, at 09:31, Hans Hagen wrote: > > On 1/18/2024 11:15 PM, Bruce Horrocks wrote: >> On 18 Jan 2024, at 18:56, Shiv Shankar Dayal >> wrote: >>> >>> I understand that why it is slow, but the problem is that the difference is >>> too high. >>> My book has lots of math, so

[NTG-context] Re: upload

2024-01-19 Thread Pablo Rodriguez via ntg-context
On 1/18/24 20:43, Denis Maier via ntg-context wrote: >> *Von:*Alain Delmotte >> *Gesendet:* Donnerstag, 18. Januar 2024 20:04 >> *An:* ntg-context@ntg.nl >> *Betreff:* [NTG-context] Re: upload >> [...] >> When I go to https://www.pragma-ade.nl, I get an 404 Not Found >> message, so I can't

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-19 Thread Hans Hagen
On 1/19/2024 11:00 AM, Henning Hraban Ramm wrote: Am 19.01.24 um 10:31 schrieb Hans Hagen: (that said: luametatex runs fine on my mobile phone) What’s the smallest/oldest device someone tried LMTX on? (We were joking about “Hans’ thermostate and Alan’s fridge“…) Would it run on some 8 bit

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-19 Thread Taco Hoekwater
> On 19 Jan 2024, at 11:00, Henning Hraban Ramm wrote: > > Am 19.01.24 um 10:31 schrieb Hans Hagen: >> (that said: luametatex runs fine on my mobile phone) > > What’s the smallest/oldest device someone tried LMTX on? > (We were joking about “Hans’ thermostate and Alan’s fridge“…) > Would it

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-19 Thread Henning Hraban Ramm
Am 19.01.24 um 10:31 schrieb Hans Hagen: (that said: luametatex runs fine on my mobile phone) What’s the smallest/oldest device someone tried LMTX on? (We were joking about “Hans’ thermostate and Alan’s fridge“…) Would it run on some 8 bit homecomputer? (I’d guess the RAM is too limited, and

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-19 Thread Hans Hagen
On 1/18/2024 11:15 PM, Bruce Horrocks wrote: On 18 Jan 2024, at 18:56, Shiv Shankar Dayal wrote: I understand that why it is slow, but the problem is that the difference is too high. My book has lots of math, so perhaps that is the reason. Option 1: Buy or borrow a faster computer.

[NTG-context] Re: LuaMetaTeX code

2024-01-19 Thread Henri Menke via ntg-context
On Fri, 2024-01-19 at 13:56 +0530, Shiv Shankar Dayal wrote: > Dear Hans, > > I saw the C code of LuaMetaTeX and I saw a lot of gotos which is not > good > coding practice. These potions of code which have goto should be > refactored. https://xkcd.com/292/ > I am a C programmer, but I know very

[NTG-context] Re: LuaMetaTeX code

2024-01-19 Thread Hans Hagen
On 1/19/2024 9:31 AM, Shiv Shankar Dayal wrote: I see code like # define luametatex_version          210 # define luametatex_revision         10 # define luametatex_release          10 # define luametatex_version_string   "2.10.10" starting with C99 these become unnecessary. Rather they should

[NTG-context] Re: LuaMetaTeX code

2024-01-19 Thread Hans Hagen
On 1/19/2024 9:26 AM, Shiv Shankar Dayal wrote: Dear Hans, I saw the C code of LuaMetaTeX and I saw a lot of gotos which is not good coding practice. These potions of code which have goto should be refactored. I am a C programmer, but I know very little of TeX. If you can point me towards

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-19 Thread Hans Hagen
On 1/19/2024 1:33 AM, Aditya Mahajan wrote: \starttext \dorecurse{5000}{\ReadFile{knuth}} \stoptext I'll send you the PDFs offlist. lmtx defaults to 'modern' so you need to \setupbodyfont[modern] for mkiv Hans -

[NTG-context] Re: LuaMetaTeX code

2024-01-19 Thread Shiv Shankar Dayal
Dear Taco, I will send new messages to dev mailing lists. Let me join it first. On Fri, Jan 19, 2024 at 2:11 PM Taco Hoekwater wrote: > > Hi Shiv, > > Can you move this discussion to the dev-context list, please? > https://mailman.ntg.nl/mailman3/lists/dev-context.ntg.nl/ > > Best wishes, >

[NTG-context] Re: LuaMetaTeX code

2024-01-19 Thread Taco Hoekwater
Hi Shiv, Can you move this discussion to the dev-context list, please? https://mailman.ntg.nl/mailman3/lists/dev-context.ntg.nl/ Best wishes, Taco > On 19 Jan 2024, at 09:31, Shiv Shankar Dayal > wrote: > > I see code like > > # define luametatex_version 210 > # define

[NTG-context] Re: LuaMetaTeX code

2024-01-19 Thread Shiv Shankar Dayal
I see code like # define luametatex_version 210 # define luametatex_revision 10 # define luametatex_release 10 # define luametatex_version_string "2.10.10" starting with C99 these become unnecessary. Rather they should be like const int luametatex_version=210; const

[NTG-context] LuaMetaTeX code

2024-01-19 Thread Shiv Shankar Dayal
Dear Hans, I saw the C code of LuaMetaTeX and I saw a lot of gotos which is not good coding practice. These potions of code which have goto should be refactored. I am a C programmer, but I know very little of TeX. If you can point me towards where should I start for TeX(perhaps TeX Book or TeX

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Aditya Mahajan
On Fri, 19 Jan 2024, Hans Hagen via ntg-context wrote: > On 1/19/2024 12:34 AM, Aditya Mahajan wrote: > > On Thu, 18 Jan 2024, Hans Hagen wrote: > > > >> Of course we'll never be as fast as (pure) plain tex (no layers added) or > >> latex (which often is advocated as faster than context). > > >

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Hans Hagen via ntg-context
On 1/19/2024 12:34 AM, Aditya Mahajan wrote: On Thu, 18 Jan 2024, Hans Hagen wrote: Of course we'll never be as fast as (pure) plain tex (no layers added) or latex (which often is advocated as faster than context). I was curious, so did a quick experiment: typeset \input knuth 500 times.

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Aditya Mahajan
On Thu, 18 Jan 2024, Hans Hagen wrote: > Of course we'll never be as fast as (pure) plain tex (no layers added) or > latex (which often is advocated as faster than context). I was curious, so did a quick experiment: typeset \input knuth 500 times. Here are the results: pdflatex: 547 pages/sec

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Bruce Horrocks
On 18 Jan 2024, at 18:56, Shiv Shankar Dayal wrote: > > I understand that why it is slow, but the problem is that the difference is > too high. > My book has lots of math, so perhaps that is the reason. Option 1: Buy or borrow a faster computer. You'll get your desired speed-up far faster

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Joseph Wright
On 18/01/2024 20:55, Gavin via ntg-context wrote: That’s fast enough for me. That's surely the key statement - 'fast' here is a personal thing, and 40 pages a second is fast enough for many people. It's certainly fast when you look at what LuaMetaTeX is doing, as Hans has said. Joseph

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Gavin via ntg-context
Hi Shiv, ConTeXt’s project structure has many benefits. One is speed. See https://wiki.contextgarden.net/Project_structure. My books and long papers are products, each containing many components (chapters or sections). When I’m working, I have both the product and a component open. I

[NTG-context] Re: upload

2024-01-18 Thread Denis Maier via ntg-context
Works here. Best, Denis Von: Alain Delmotte Gesendet: Donnerstag, 18. Januar 2024 20:04 An: ntg-context@ntg.nl Betreff: [NTG-context] Re: upload Hi, When I go to https://www.pragma-ade.nl/ I get an 404 Not Found message, so I can't download the new upload !! Any reason? Alain Le

[NTG-context] Re: upload

2024-01-18 Thread Alain Delmotte
Hi, When I go to https://www.pragma-ade.nl/ I get an 404 Not Found message, so I can't download the new upload !! Any reason? Alain Le 18-01-24 à 00:13, Hans Hagen a écrit : Hi, I uploaded a new version (there is some work in progress but it probably doesn't affect anyone). Hans

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Hans Hagen
On 1/18/2024 7:56 PM, Shiv Shankar Dayal wrote: In comparison to LaTeX with LuaHBTeX, ConTeXt with LuaMetaTeX is lightning fast. pdfTeX is 8bit, and Knuth’s plain TeX is very low level – for a fairer comparison, try the TeXbook on LuaMetaTeX (I don’t know if “plain” works

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Mikael Sundqvist
Hi, On Thu, Jan 18, 2024 at 7:58 PM Shiv Shankar Dayal wrote: > > > > >> In comparison to LaTeX with LuaHBTeX, ConTeXt with LuaMetaTeX is >> lightning fast. >> >> pdfTeX is 8bit, and Knuth’s plain TeX is very low level – for a fairer >> comparison, try the TeXbook on LuaMetaTeX (I don’t know if

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Shiv Shankar Dayal
In comparison to LaTeX with LuaHBTeX, ConTeXt with LuaMetaTeX is > lightning fast. > > pdfTeX is 8bit, and Knuth’s plain TeX is very low level – for a fairer > comparison, try the TeXbook on LuaMetaTeX (I don’t know if “plain” works > though). > I understand that why it is slow, but the problem

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Henning Hraban Ramm
Am 18.01.24 um 18:47 schrieb Pablo Rodriguez via ntg-context: On 1/18/24 18:24, Shiv Shankar Dayal wrote: I can process TeXBook in almost an instant using PDFTeX which is about 450+ pages but my math book takes around 30 seconds averaging ~40 pages/second. Hi Shiv Shankar Dayal, I guess that

[NTG-context] Re: Why LuaMetaTex is so slow?

2024-01-18 Thread Pablo Rodriguez via ntg-context
On 1/18/24 18:24, Shiv Shankar Dayal wrote: > I can process TeXBook in almost an instant using PDFTeX which is about > 450+ pages but my math book takes around 30 seconds averaging ~40 > pages/second. Hi Shiv Shankar Dayal, I guess that “The TeXbook” (having been written by Knuth himself) may be

[NTG-context] scaling tweaked fonts

2024-01-18 Thread Pablo Rodriguez via ntg-context
Hi Hans, I have the following sample which behaves differently after latest from 2023.09.26 18:19: \definetweakedfont[wider][xscale=1075] \starttext \startTEXpage[align=center] \contextversion\\ \wider \contextversion \stopTEXpage \stoptext Up to that version, no

[NTG-context] Why LuaMetaTex is so slow?

2024-01-18 Thread Shiv Shankar Dayal
I can process TeXBook in almost an instant using PDFTeX which is about 450+ pages but my math book takes around 30 seconds averaging ~40 pages/second. Why LuaMetaTeX is so slow? How can I speed it up? -- Respect, Shiv Shankar Dayal

[NTG-context] Re: upload

2024-01-18 Thread Hans Hagen
On 1/18/2024 3:27 PM, Otared Kavian wrote: Dear Dalyoung, dear Mikael, I installed anew the whole LMTX tree and now everything is working fine. I don’t know whether this is related or not, somehow in my previous tree I had a directory (or folder in the MacOS language) named « texmf-osx-64 »

[NTG-context] Re: upload

2024-01-18 Thread Otared Kavian
Dear Dalyoung, dear Mikael, I installed anew the whole LMTX tree and now everything is working fine. I don’t know whether this is related or not, somehow in my previous tree I had a directory (or folder in the MacOS language) named « texmf-osx-64 » instead « texmf-osx-arm64 » and this

[NTG-context] Re: context version 20240118

2024-01-18 Thread Thomas Meyer
Am 18.01.24 um 13:51 schrieb luigi scarso: On Thu, 18 Jan 2024 at 13:00, Thomas Meyer wrote: What is going on? Yesterday I got a perfect on-grid-written document! But today, with the newest context-version (20240118) all changed for the worse. I may not get a reply

[NTG-context] How to Create Asymmetrical Continuous Columns in ConTeXt?

2024-01-18 Thread seyal . zavira
Hi all, I have a lengthy text that I wish to seamlessly incorporate using the \input{mytext} command in ConTeXt. Additionally, I aim to present it in asymmetrical continuous columns, where the text flows over several pages. I have tried paragraphs and columns, but in paragraphs, I can't flow

[NTG-context] Re: context version 20240118 (was: "Registerhaltigkeit")

2024-01-18 Thread luigi scarso
On Thu, 18 Jan 2024 at 13:00, Thomas Meyer wrote: > What is going on? > > Yesterday I got a perfect on-grid-written document! > But today, with the newest context-version (20240118) all changed for the > worse. > > I may not get a reply to this e-mail either! > > > Am 17.01.24 um 20:57 schrieb

[NTG-context] Re: [ \copypages ]

2024-01-18 Thread Floris van Manen via ntg-context
On 18/01/2024 12:10, Hans Hagen via ntg-context wrote: yes but experimental and not yet documented I don't mind experimenting with it. e.g. I try to change the font color in existing pdf documents from black to blue. At the moment my workaround is using mutool to export pages to svg.

[NTG-context] Re: context version 20240118

2024-01-18 Thread Thomas Meyer
I may not understand it ... Where can I find the thread (which keyword?)and which values are bad? Greetings Thomas Am 18.01.24 um 13:06 schrieb Hans Hagen via ntg-context: as follow up on the keyword thread we decided to treat bad values to equivalent to 'no'

[NTG-context] Re: Fwd: Re: x mark symbol and general symbol guide

2024-01-18 Thread Gerion Entrup
Am Donnerstag, 11. Januar 2024, 15:56:32 CET schrieb Gerion Entrup: > Am Dienstag, 9. Januar 2024, 21:17:57 CET schrieb Hans Hagen: > > On 1/9/2024 8:31 PM, Gerion Entrup wrote: > > > > > My system awesome font is version 6 but isn't the one bundled with > > > ConTeXt version 5 (FontAwesome.otf)?

[NTG-context] Re: context version 20240118

2024-01-18 Thread Hans Hagen via ntg-context
On 1/18/2024 12:59 PM, Thomas Meyer wrote: What is going on? Yesterday I got a perfect on-grid-written document! But today, with the newest context-version (20240118) all changed for the worse. as follow up on the keyword thread we decided to treat bad values to equivalent to 'no' I may

[NTG-context] context version 20240118 (was: "Registerhaltigkeit")

2024-01-18 Thread Thomas Meyer
What is going on? Yesterday I got a perfect on-grid-written document! But today, with the newest context-version (20240118) all changed for the worse. I may not get a reply to this e-mail either! Am 17.01.24 um 20:57 schrieb Thomas Meyer: Got it. Am 14.01.24 um 17:36 schrieb Thomas Meyer:

[NTG-context] Re: [ \copypages ]

2024-01-18 Thread Hans Hagen via ntg-context
On 1/17/2024 10:20 PM, vm via ntg-context wrote: Is there a (hidden) option that allows for changing the font color of external included pdfs yes but experimental and not yet documented Hans -

[NTG-context] Re: upload

2024-01-17 Thread Jeong Dal via ntg-context
Dear Otared, I installed upload version today. And, your example, \starttext The derivative of $f$ is denoted $f'$ or $f^\prime$ or is it $f^'$\dots \stoptext works well. I think that you will have the same good result. Best wishes, Dalyoung

[NTG-context] Re: [ \copypages ]

2024-01-17 Thread Henning Hraban Ramm
Am 17.01.24 um 22:20 schrieb vm via ntg-context: Is there a (hidden) option that allows for changing the font color of external included pdfs \copypages[file.pdf][color=blue] does not work as intended ;-) No, it can’t. You can try to use transparency: put a colored area on top of the PDF

[NTG-context] Re: upload

2024-01-17 Thread Mikael Sundqvist
Hi Otared, On Thu, Jan 18, 2024 at 2:37 AM Otared Kavian wrote: > > Hi Hans, > > Thanks for the new upload which solves the math alignment mechanism. However > I noticed that the classic notation $f’$ for the derivative does not work > anymore, while $f^\prime$ or $f^’$ does. > > \starttext >

[NTG-context] Re: Math alignment issue

2024-01-17 Thread Jeong Dal via ntg-context
Dear Hans, Thanks for the new upload. It clears the issue of the math alignment. Thanks again. Best regards, Dalyoung ___ If your question is of interest to others as well, please add an entry to the Wiki!

[NTG-context] Re: upload

2024-01-17 Thread Otared Kavian
Hi Hans,Thanks for the new upload which solves the math alignment mechanism. However I noticed that the classic notation $f’$ for the derivative does not work anymore, while $f^\prime$ or $f^’$ does.\starttextThe derivative of $f$ is denoted $f'$ or $f^\prime$ or is it $f^'$\dots\stoptextBest

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Otared Kavian
Hi Gavin, Thanks for the information: since I mostly use the stand alone ConTeXt, I have not looked into my TeX Live tree recently. Now I’ll do it, but Hans released a new version of LMTX which fixes the issue I was reporting. Thanks again for your help. Best regards: Otared > On 18 Jan

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Otared Kavian
Hi Hans, Many thanks for your attention ! I just saw that you uploaded a new version, which fixes the issue. I am speechless to thank you… Best regards: Otared > On 17 Jan 2024, at 23:47, Hans Hagen wrote: > > On 1/17/2024 11:13 PM, Otared Kavian wrote: >> Hi Gavin, >> Thanks for your reply.

[NTG-context] Cron /var/www/aanhet.net/context/bin/cron/context-mirror

2024-01-17 Thread Cron Daemon
receiving incremental file list ./ ctan.lsr document-2.htm download-1.htm download-2.htm logo-ade.png logo-cts.png logo-pod.png rss.xml show-fil.pdf context/latest/ context/latest/cont-lmt.zip context/latest/cont-mpd.zip context/latest/cont-ppc.zip context/latest/cont-sci.zip

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Gavin via ntg-context
Hi Otared, Yes, it contains LMTX. I am using TeX Live 2023 right now for a project, and it reports "ConTeXt ver: 2023.05.05 18:36 LMTX”. Gavin > On Jan 17, 2024, at 3:13 PM, Otared Kavian wrote: > > Hi Gavin, > > Thanks for your reply. Does TeX Live contain LuaMetaTeX (LMTX)? > That is

[NTG-context] upload

2024-01-17 Thread Hans Hagen
Hi, I uploaded a new version (there is some work in progress but it probably doesn't affect anyone). Hans - Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Hans Hagen
On 1/17/2024 11:13 PM, Otared Kavian wrote: Hi Gavin, Thanks for your reply. Does TeX Live contain LuaMetaTeX (LMTX)? That is because I need LMTX to typeset a presentation for which most of the content is ready, but using features from LMTX… You can try to fetch

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Otared Kavian
Hi Gavin, Thanks for your reply. Does TeX Live contain LuaMetaTeX (LMTX)? That is because I need LMTX to typeset a presentation for which most of the content is ready, but using features from LMTX… Best regards: Otared > On 17 Jan 2024, at 23:01, Gavin via ntg-context wrote: > > Hi Otared >

[NTG-context] Re: How to obtain older versions of LMTX?

2024-01-17 Thread Gavin via ntg-context
Hi Otared I use TeX Live as a convenient fall-back. I am also using MacOS ARM. Gavin > On Jan 17, 2024, at 2:52 PM, Otared Kavian wrote: > > Hi all, > > In order to circumvent a bug in the latest versions (2023-09-26 and > 2024-01-08) of LMTX regarding math alignments, I am trying to get

[NTG-context] How to obtain older versions of LMTX?

2024-01-17 Thread Otared Kavian
Hi all, In order to circumvent a bug in the latest versions (2023-09-26 and 2024-01-08) of LMTX regarding math alignments, I am trying to get an older version of LMTX (from before September 2023) for MacOS ARM. Does any one know how to proceed? Thanks in advance. Best regards: Otared

[NTG-context] [ \copypages ]

2024-01-17 Thread vm via ntg-context
Is there a (hidden) option that allows for changing the font color of external included pdfs \copypages[file.pdf][color=blue] does not work as intended ;-) .Floris ___ If your question is of interest to others

[NTG-context] Re: "Registerhaltigkeit"

2024-01-17 Thread Thomas Meyer
Got it. Am 14.01.24 um 17:36 schrieb Thomas Meyer: Here comes my minimal example. \vfill doesn't fit the grid, the counted blank works. Is it possible to jump to grid with blank[?] ? Am 14.01.24 um 13:53 schrieb Wolfgang Schuster: Thomas Meyer schrieb am 14.01.2024 um 11:21: Thank you

[NTG-context] Re: Math alignment issue

2024-01-17 Thread Otared Kavian
Hi Mikael, Thank you so much for your attention and help. Is there a way to get a working version before Hans does a new upload? Or even a temporary patch? This is because I have to prepare a presentation for next Monday and I have to use extensively math align… Best regards: Otared > On 17

[NTG-context] Re: Math alignment issue

2024-01-17 Thread Mikael Sundqvist
On Wed, Jan 17, 2024 at 2:16 PM Otared Kavian wrote: > > Dear Dalyoung, > > Thank you for testing, which shows that there is a bug somewhere. > Mikael who follows the math stuff is aware of the problem, and I guess Hans > will be informed. > Since it is working locally here, It will likely be

[NTG-context] Re: Math alignment issue

2024-01-17 Thread Otared Kavian
Dear Dalyoung, Thank you for testing, which shows that there is a bug somewhere. Mikael who follows the math stuff is aware of the problem, and I guess Hans will be informed. Best wishes for 2024: Otared > On 17 Jan 2024, at 14:10, Jeong Dal via ntg-context > wrote: > > Dear Otared, > > I

[NTG-context] Re: Math alignment issue

2024-01-17 Thread Jeong Dal via ntg-context
Dear Otared, I got the same output in which there is an overlap of the formula on the last line of the paragraph. The following line shows the version of my installation. system > system > ConTeXt ver: 2024.01.08 11:23 LMTX fmt: 2024.1.17 int: english/english system

[NTG-context] Suggestions and problems of the manuals

2024-01-17 Thread Gerion Entrup
Hi, I discovered the manuals in the context distribution. My general way to built the manuals were these steps: ``` # execute one time git clone https://github.com/contextgarden/context.git cd context/doc/context/sources/general/manuals/ # for every manual cd $MANUALFOLDER context

[NTG-context] Re: Math alignment issue

2024-01-17 Thread Otared Kavian
Hi Mikael, I installed anew the latest version and I get still the same bizarre result with math alignment. Please can someone on the list typeset the following in order to see whether the result is correct or not ? %begin 240117-1-bis.tex \definemathsimplealign[alignedcases]

[NTG-context] Re: Math alignment issue

2024-01-17 Thread Otared Kavian
Hi Mikael,Thank you for your reply. When I typeset the example you sent me, that is%begin 240117-1-bis.tex\definemathsimplealign[alignedcases] [left={\startmathfenced[cases]}, right=\stopmathfenced, align={1:right,2:left,3:left}, strut=yes]\setupformula 

[NTG-context] Re: issue with fonts in current latest (2024.01.08 11:23)

2024-01-16 Thread Pablo Rodriguez via ntg-context
On 1/15/24 21:43, Mikael Sundqvist wrote: > Hi, > > Try this: > […] > \definebodyfontenvironment[16pt] > […] > Maybe some check will be added. (On the chat with Hans...) Many thanks for your help, Mikael. Your hint solved the issue and having a check that avoids the reported issue. BTW, I’m

[NTG-context] Re: Looking for itemize help

2024-01-16 Thread Jim
On Tue, Jan 16, 2024 at 01:15 (+), Bruce Horrocks wrote: > On 15 Jan 2024, at 16:15, Jim wrote: >> I would like >> something which automagically "does the right thing". > Not pretty, but... :-) > \setupwhitespace [big] > \setuppapersize [letter] >

[NTG-context] Re: After Compiling the Context test, there was no PDF.

2024-01-16 Thread Ursula Hermann
Dear, Shiv Shankar Dayal, I have tried your example. Did not work. Uschi Von: Shiv Shankar Dayal Gesendet: Dienstag, 16. Jänner 2024 13:42 An: mailing list for ConTeXt users Betreff: [NTG-context] Re: After Compiling the Context test, there was no PDF. I just updated my ConTeXt distribution

[NTG-context] Re: After Compiling the Context test, there was no PDF.

2024-01-16 Thread Shiv Shankar Dayal
I just updated my ConTeXt distribution and it is working fine for me. Try processing the following file: \starttext \input knuth \stoptext On Tue, Jan 16, 2024 at 5:30 PM luigi scarso wrote: > > > On Tue, 16 Jan 2024 at 12:49, Shiv Shankar Dayal < > shivshankar.da...@gmail.com> wrote: > >>

[NTG-context] Re: After Compiling the Context test, there was no PDF.

2024-01-16 Thread luigi scarso
On Tue, 16 Jan 2024 at 12:49, Shiv Shankar Dayal < shivshankar.da...@gmail.com> wrote: > Please paste line no. 238 of your input file. > > On Tue, Jan 16, 2024 at 4:11 PM Ursula Hermann < > ursula.herm...@univie.ac.at> wrote: > >> Dear List, >> >> >> >> After Compiling in the Folder: >> >> >> >>

[NTG-context] Re: After Compiling the Context test, there was no PDF.

2024-01-16 Thread Shiv Shankar Dayal
Please paste line no. 238 of your input file. On Tue, Jan 16, 2024 at 4:11 PM Ursula Hermann wrote: > Dear List, > > > > After Compiling in the Folder: > > > > This is LuaMetaTeX, Version 2.10.11 initex > > (C:/Users/Hermann/Downloads/context-mswin/tex/texmf-context/tex/context/base/mkxl/cont-

[NTG-context] After Compiling the Context test, there was no PDF.

2024-01-16 Thread Ursula Hermann
Dear List, After Compiling in the Folder: This is LuaMetaTeX, Version 2.10.11 initex (C:/Users/Hermann/Downloads/context-mswin/tex/texmf-context/tex/context/base/mkxl/cont- en.mkxl(context.mkxl(syst-ini.mkxl ! Undefined control sequence. \immutable\defcsname\tocharacter \tabasciicode

[NTG-context] Wiki update

2024-01-16 Thread Taco Hoekwater
Hi all, I just updated the wiki ConTeXt to 20240108. The tag on the wiki by default uses luametatex (LMTX), but if you want luatex instead (MKIV), you can still do that by using . There have been some problems recently because Hans’ new binaries needed a newer version of various system

[NTG-context] Limit of the size of the email message is 100KB.

2024-01-15 Thread luigi scarso
Hi all, the ml has (as always as far as I can remember) the limit of 100KB for the maximum size of the message. I have noticed that lately several messages are over the limit, and all I can do is write to the sender and discard the message, and this could happen a couple of days later the

[NTG-context] Re: Looking for itemize help

2024-01-15 Thread Bruce Horrocks
On 15 Jan 2024, at 16:15, Jim wrote: > > I would like > something which automagically "does the right thing". Not pretty, but... :-) \setupwhitespace [big] \setuppapersize [letter] \define[1]\mystopitemize{\stopitemize\doifsamestringelse{#1}{\par}{\blank}{#1}} \starttext This is a short

[NTG-context] Re: issue with fonts in current latest (2024.01.08 11:23)

2024-01-15 Thread Henning Hraban Ramm
Am 15.01.24 um 21:43 schrieb Mikael Sundqvist: Try this: \definebodyfontenvironment[16pt] Yes, works. Hraban ___ If your question is of interest to others as well, please add an entry to the Wiki! maillist :

[NTG-context] Re: issue with fonts in current latest (2024.01.08 11:23)

2024-01-15 Thread Mikael Sundqvist
Hi, Try this: On Mon, Jan 15, 2024 at 6:17 PM Pablo Rodriguez via ntg-context wrote: > > Dear list, > > I have the following sample: > > \definefontfamily[mainface][rm][TeX Gyre Pagella] > \definefontfamily[coverface][rm][TeX Gyre Termes] \definebodyfontenvironment[16pt] >

[NTG-context] Re: Looking for itemize help

2024-01-15 Thread Jim
On Mon, Jan 15, 2024 at 20:33 (+0100), Henning Hraban Ramm wrote: > Am 15.01.24 um 17:15 schrieb Jim: >> "after" does the trick, but not in an automatic way. I would like >> something which automagically "does the right thing". > With “automagically”, do you mean for all instances? I hate to

[NTG-context] Re: Looking for itemize help

2024-01-15 Thread Henning Hraban Ramm
Am 15.01.24 um 17:15 schrieb Jim: "after" does the trick, but not in an automatic way. I would like something which automagically "does the right thing". With “automagically”, do you mean for all instances? \setupitemgroup[itemize][nowhite,after] Sorry, then you need "nowhite". Usually

[NTG-context] Re: issue with fonts in current latest (2024.01.08 11:23)

2024-01-15 Thread Henning Hraban Ramm
Am 15.01.24 um 18:16 schrieb Pablo Rodriguez via ntg-context: I guess there might be an issue here. Could anyone confirm this? Yes, same beta from last week (2024.01.08). No error in the console output. mkiv lua stats > loaded fonts: 4 files: latinmodernmath-companion.otf,

[NTG-context] Named characters

2024-01-15 Thread Thomas A. Schmitz
Hi all, not a complaint, just a question (for Hans and Wolfgang, I guess): in recent versions of lmtx, Greek named characters (constructs such as \greekdasiatonos) don't work any more. Which means I have to adapt some of my older macros. Is this an oversight or did they get axed? All best

[NTG-context] Re: Looking for itemize help

2024-01-15 Thread Jim
On Mon, Jan 15, 2024 at 17:39 (+0100), Wolfgang Schuster wrote: > Jim schrieb am 15.01.2024 um 01:42: >> I have >> \setupwhitespace [big] >> so that I get "a blank line" between paragraphs. >> I would like to *not* have "blank lines" before and after my items. For >> example, if there is more

[NTG-context] issue with fonts in current latest (2024.01.08 11:23)

2024-01-15 Thread Pablo Rodriguez via ntg-context
Dear list, I have the following sample: \definefontfamily[mainface][rm][TeX Gyre Pagella] \definefontfamily[coverface][rm][TeX Gyre Termes] \setupbodyfont[mainface, 16pt] \starttext \startmakeup[standard][style=\bf] \switchtobodyfont[coverface] This is a cover. \stopmakeup

[NTG-context] too large dimension in current latest

2024-01-15 Thread Pablo Rodriguez via ntg-context
Hi Hans, after updating to current latest (2024.01.08 11:23), I get the following error. This is triggered when compiling XML sources (with extra environment files), so it is not easy to get a minimal sample file. I wonder whehter the message itself could reveal what may be wrong here. Many

[NTG-context] Re: Looking for itemize help

2024-01-15 Thread Wolfgang Schuster
Jim schrieb am 15.01.2024 um 01:42: I have \setupwhitespace [big] so that I get "a blank line" between paragraphs. I would like to *not* have "blank lines" before and after my items. For example, if there is more "paragraph text" after the last item I would like to see this structure:

[NTG-context] Re: [External] Re: Looking for itemize help

2024-01-15 Thread Jim
Hi Michael, thanks for getting back. But the problem is not the text in front of the items, but rather vertical whitespace that I don't want. (Or, with 'nowhite', vertical space that I might want not being there.) Cheers. Jim On Mon, Jan 15, 2024 at 15:51

[NTG-context] Re: Looking for itemize help

2024-01-15 Thread Jim
Two replies in one... On Mon, Jan 15, 2024 at 15:47 (+0100), Aditya Mahajan wrote: > On Mon, 15 Jan 2024, Jim wrote: >> Thoughts? > \startitemize[nowhite, after] > . . . > \stopitemize > See: https://adityam.github.io/context-blog/post/spacing-in-itemize/ Aditya, thanks for the

[NTG-context] Re: [External] Re: Looking for itemize help

2024-01-15 Thread Rogers, Michael K
Hi Jim, I think you want alternative “a”, if the dot instead of a letter is the problem and not the whitespace: %% \starttext This is a short paragraph. This is a line before a {\bf packed, joinedup} itemization. \startitemize[a,packed,joinedup] \item First item. \item Second item.

[NTG-context] Re: Linebreak in formual

2024-01-15 Thread Shiv Shankar Dayal
Thanks a lot, Aditya. On Mon, Jan 15, 2024 at 8:41 PM Aditya Mahajan wrote: > On Mon, 15 Jan 2024, Mikael Sundqvist wrote: > > > Hi, > > > > you can try something like > > > > \sum_{\mstack{k=0, k\equiv p + 1 (\mtext{mod }2)}}^{p -1} > > > > but it will not be too pretty with such a large

[NTG-context] OT: special ToC

2024-01-15 Thread Henning Hraban Ramm
I came across a table of contents style that’s hardly possible with TeX: https://historians.social/@dbellingradt/111760591144801241 (image is too big for the ML) (Yes of course you can do it with manual references and MetaPost lines…) ;D

[NTG-context] Re: Looking for itemize help

2024-01-15 Thread Henning Hraban Ramm
Am 15.01.24 um 15:36 schrieb Jim: \startitemize[packed,joinedup] should be the right combination. I won't argue about "should", but I will point out it isn't, at least on my computer with a recently updated context. Here is a non-minimal but short non-working example. Sorry, then you need

[NTG-context] Re: Linebreak in formual

2024-01-15 Thread Aditya Mahajan
On Mon, 15 Jan 2024, Mikael Sundqvist wrote: > Hi, > > you can try something like > > \sum_{\mstack{k=0, k\equiv p + 1 (\mtext{mod }2)}}^{p -1} > > but it will not be too pretty with such a large sub-index to the sum. There is also \sum_{\startsubstack \NC a \NR \NC b \NR \stopsubstack}

[NTG-context] Re: Looking for itemize help

2024-01-15 Thread Aditya Mahajan
On Mon, 15 Jan 2024, Jim wrote: > Thoughts? \startitemize[nowhite, after] . . . \stopitemize See: https://adityam.github.io/context-blog/post/spacing-in-itemize/ Aditya ___ If your question is of interest to

[NTG-context] Re: Looking for itemize help

2024-01-15 Thread Jim
Hi Hraban, thanks for your response. But... On Mon, Jan 15, 2024 at 08:17 (+0100), Henning Hraban Ramm wrote: > Am 15.01.24 um 01:42 schrieb Jim: >> Some text preceding the list of items: >> a. Item one. >> b. Second item. >> This sentence is part of the same paragraph. >> The next paragraph

[NTG-context] Re: Linebreak in formual

2024-01-15 Thread Shiv Shankar Dayal
It works nicely. You are a lifesaver. Thanks a lot. On Mon, Jan 15, 2024 at 7:30 PM Mikael Sundqvist wrote: > Hi, > > you can try something like > > \sum_{\mstack{k=0, k\equiv p + 1 (\mtext{mod }2)}}^{p -1} > > but it will not be too pretty with such a large sub-index to the sum. > > /Mikael >

[NTG-context] Re: Linebreak in formual

2024-01-15 Thread Mikael Sundqvist
Hi, you can try something like \sum_{\mstack{k=0, k\equiv p + 1 (\mtext{mod }2)}}^{p -1} but it will not be too pretty with such a large sub-index to the sum. /Mikael On Mon, Jan 15, 2024 at 2:41 PM Shiv Shankar Dayal wrote: > > I have following formula > \sum_{k=0\\ k\equiv p +

[NTG-context] Re: Spacing problem in formula

2024-01-15 Thread Henning Hraban Ramm
Am 15.01.24 um 13:21 schrieb Hans Hagen: On 1/15/2024 8:00 AM, Shiv Shankar Dayal wrote: Thanks a lot Mikael. in addition: in context lmtx {} are grouping symbols not (ordinary) empty atoms Only in math, or generally? \startquotation {}[…] Here I need the empty group, otherwise the

[NTG-context] Linebreak in formual

2024-01-15 Thread Shiv Shankar Dayal
I have following formula \sum_{k=0\\ k\equiv p + 1(\mathrm{mod}\;2)}^{p -1} but the \\ does not break the line below Sigma. How can I achieve this because AFAIK it will work in LaTeX? -- Respect, Shiv Shankar Dayal

[NTG-context] Re: Spacing problem in formula

2024-01-15 Thread Hans Hagen
On 1/15/2024 8:00 AM, Shiv Shankar Dayal wrote: Thanks a lot Mikael. in addition: in context lmtx {} are grouping symbols not (ordinary) empty atoms On Mon, Jan 15, 2024 at 12:24 PM Mikael Sundqvist > wrote: Hi, ConTeXt supports prescripts:

[NTG-context] Re: Looking for itemize help

2024-01-14 Thread Henning Hraban Ramm
Am 15.01.24 um 01:42 schrieb Jim: Some text preceding the list of items: a. Item one. b. Second item. This sentence is part of the same paragraph. The next paragraph starts here... \startitemize[packed,joinedup] should be the right combination. Hraban

<    5   6   7   8   9   10   11   12   13   14   >