Re: [NTG-context] Count (and limit) glyphs per line?

2022-06-26 Thread Benjamin Buchmuller via ntg-context
back_chars = back_chars + 1 end I'm maybe doing this wrong, but I see these conditions triggered more often than probably expected for a 25 line document? local count_me = 0 ... if chars >= max_length o

Re: [NTG-context] Count (and limit) glyphs per line?

2022-06-26 Thread Hans Hagen via ntg-context
On 6/25/2022 5:38 PM, Benjamin Buchmuller via ntg-context wrote: Wow, that works like a charm! Thank you, Max! It's also a very insightful example of how to use and inject Lua code in the TeX output routine. Do you mind if I add it to the wiki? (Probably under "Wrapping".) I di

Re: [NTG-context] missing mails

2022-06-24 Thread Max Chernoff via ntg-context
x.linebreak" twice for every paragraph, so these warning messages get quite annoying. The log file for compiling the lwc manual https://github.com/gucci-on-fleek/lua-widow-control/runs/6946059955?check_suite_focus=true#check-step-9 is 22000 lines long, most of which

Re: [NTG-context] Why are some images rendered very tiny?

2022-06-15 Thread Henning Hraban Ramm via ntg-context
on the page. I check the image file and they are not small, but somehow is rendered small with the code above. What is wrong in my code? There are no parameters "minwidth" or "minheight", see https://wiki.contextgarden.net/Command/setupexternalfigure It’s probable that your

[NTG-context] Why are some images rendered very tiny?

2022-06-15 Thread Joel via ntg-context
]{}}{\externalfigure[#1][maxheight=.7\paperheight, maxwidth=.5\paperwidth, minwidth=.5\paperwidth]} } #1 = filename, other variables are used for reference/credit details. The problem is, somehow some images are inexplicably displayed very tiny on the page. I check the image file and they are not small

Re: [NTG-context] overfull gone?

2022-06-07 Thread Steffen Wolfrum via ntg-context
0\points% < BLACK BOX? >> \starttext >> \startcolumns[n=3] >> % Overfull lines will have slugs in colum margins. >> \input linden >> % Underfull hboxes get no warning >> x >> \stopcolumns >> \stoptext > i'll check it .. looks like som

Re: [NTG-context] Contractions in ligature suppression word list

2022-06-07 Thread Denis Maier via ntg-context
A somewhat more complete testfile with a couple of options is below. My context installation is not current so please double check, but I think it boils down to this: apostrophes seem not to be considered to be part of a word. Once I enable wolfin under \startlanguageoptions[en

Re: [NTG-context] Improving pandoc's ConTeXt output

2022-06-06 Thread Henning Hraban Ramm via ntg-context
after the bullet and before the item text, use \bpar (and closing \epar) to tag paragraphs. It's probably more consistent then to use \bpar ... \epar everywhere. If I understood Hans right, \start/stopparagraph is not necessary any more to get properly tagged XML. I didn’t check it yet mysel

[NTG-context] Regular online-meetup

2022-06-06 Thread Henning Hraban Ramm via ntg-context
, allow your browser to access it, check the audio. * Your microphone is muted if you join. Activate microphone and/or camera with the buttons at the bottom. * Minimize the default presentation with the "screen" button, bottom right. * If you’d like to share your screen or upload a fi

Re: [NTG-context] Improving pandoc's ConTeXt output

2022-06-05 Thread Thangalin via ntg-context
at captures errors and output from ConTeXt. If you check it out, let me know what you think! Cheers! ___ If your question is of interest to others as well, please add an entry to the Wiki! maillist : ntg-context@ntg.nl /

Re: [NTG-context] issue with scite module

2022-06-04 Thread Pablo Rodriguez via ntg-context
t that pattern is a little too broad, since it will match any > non-ASCII Unicode character. Things like U+202E (xkcd.com/1137), U+00A0 > (no-break space), etc are valid UTF-8 characters, but not valid XML tag > names. Neither of these two characters are matched by the TeX catcode &

Re: [NTG-context] issue with scite module

2022-06-02 Thread Max Chernoff via ntg-context
ike U+202E (xkcd.com/1137), U+00A0 (no-break space), etc are valid UTF-8 characters, but not valid XML tag names. Neither of these two characters are matched by the TeX catcode check. This doesn't make any real difference for a syntax highlighter though. +local name = (R("az&q

Re: [NTG-context] overfull gone?

2022-05-28 Thread Hans Hagen via ntg-context
mns \stoptext i'll check it .. looks like some interference with normalization .. actually one can enable more advanced tracers: % \enabletrackers[builders.hpack.quality] % \enabletrackers[builders.hpack.overflow] H

Re: [NTG-context] Issue with interactive checkboxes[solved]

2022-05-25 Thread Pablo Rodriguez via ntg-context
tring, I wonder whether its value may be /T from the parent (/FT /Btn). Again, I don’t really know what is going on here. But adding the /T from parent, by manually editing it: /MK << /CA >> This makes the mark different and permanent in Acrobat (although I don’t get the right image). Y

Re: [NTG-context] Issue with interactive checkboxes[solved]

2022-05-24 Thread Jan-Erik Hägglöf via ntg-context
pinteraction[state=start] > > \definesymbol[yes][{\externalfigure[check-mark-svgrepo-com.svg][conversion=mp]}] > \definesymbol[no][] > > \newcount\chk > \def\checkmark{% > \global\advance\chk by 1 > \setupfield[setup1][width=0.5cm, height=0.5cm,rulethickness=1pt, > co

Re: [NTG-context] Issue with interactive checkboxes[solved]

2022-05-24 Thread Pablo Rodriguez via ntg-context
onversion=mp]}] \definesymbol [no] [{\externalfigure[off.svg][conversion=mp]}] \setupfield[setup3][width=2ex, height=2ex] \dorecurse{3} {\definefield [check-\recurselevel] [check] [setup3] [yes,no] [no]} \setupbodyfont[sans, 30pt] \starttext \startTEXpage[offset=1em, foregroun

Re: [NTG-context] Issue with interactive checkboxes[solved]

2022-05-24 Thread Jan-Erik Hägglöf via ntg-context
HI Again! I discovered what went wrong, such a silly syntax error, here comes a working code: \setupinteraction[state=start] \definesymbol[yes][{\externalfigure[check-mark-svgrepo-com.svg][conversion=mp]}] \definesymbol[no][] \newcount\chk \def\checkmark{% \global\advance\chk by 1 \setupfield

Re: [NTG-context] Issue with interactive checkboxes

2022-05-24 Thread Jan-Erik Hägglöf via ntg-context
I’ve tried this \setupinteraction[state=start] \definesymbol[yes][{\externalfigure[check-mark-svgrepo-com.svg][conversion=mp]}] \definesymbol[no][] \newcount\chk \def\chk{% \global \advance \chk by 1 \setupfield[setup1][width=0.5cm, height=0.5cm,rulethickness=1pt, corner=round, framecolor=red

Re: [NTG-context] Issue with interactive checkboxes

2022-05-23 Thread Jan-Erik Hägglöf via ntg-context
ist in an interactive document. >> >> The problem seems to be that all checks/uncecks in same click, not each >> individually. >> >> Is there something wrong with my code? > > Hi Jan-Erik, > > you basically put the same field twice. >

Re: [NTG-context] Issue with interactive checkboxes

2022-05-23 Thread Pablo Rodriguez via ntg-context
u basically put the same field twice. Add something like: \definefield [check-you] [check] [setup 3] [yes,no] [no] \define\chka{\field[check-you]} \chka Checks will be different then. I hope it helps, Pablo

[NTG-context] Issue with interactive checkboxes

2022-05-23 Thread Jan-Erik Hägglöf via ntg-context
[yes] [{\externalfigure[check-mark-svgrepo-com.svg][conversion=mp]}]\definesymbol [no] []\setupfield[setup 3][width=0.5cm, height=0.5cm,rulethickness=1pt, corner=round, framecolor=red]\definefield [check-me] [check] [setup 3] [yes,no] [no]\define\chk{\field[check-me]}\starttext\chk\blank[3cm]\chk

Re: [NTG-context] Interactive checkbox in ConTeXt

2022-05-22 Thread Jan-Erik Hägglöf via ntg-context
So far I accomplished this but problem is that when I check it checks all, not individually. \setupinteraction[state=start] \setupexternalfigures[location=global] \definesymbol [yes] [{\externalfigure[check-mark-svgrepo-com.svg][conversion=mp]}] \definesymbol [no] [] \setupfield [setup 3

Re: [NTG-context] Interactive checkbox in ConTeXt

2022-05-22 Thread Jan-Erik Hägglöf via ntg-context
] \definesymbol [yes] [{\externalfigure[mp-cont.502]}] \definesymbol [no] [] \setupfield [setup 3] [width=2cm, height=2cm, rulethickness=3pt, corner=round, framecolor=red] \definefield [check-me] [check] [setup 3] [yes,no] [no] \starttext \field[check-me] \stoptext > 20 maj 2022 kl. 12:28 skrev Henn

Re: [NTG-context] Interactive checkbox in ConTeXt

2022-05-20 Thread Henning Hraban Ramm via ntg-context
=\ding{53}]{This is a check box:} \end{Form} \end{document}| Have a look at https://wiki.contextgarden.net/Widgets and the "mwidget" manual. Custom symbols work unreliably, depending of the viewe

[NTG-context] Interactive checkbox in ConTeXt

2022-05-20 Thread Jan-Erik Hägglöf via ntg-context
HI! How do I accomplish a similar funktion like this, that is written in latex, but in context instead? LATEXCODE \documentclass{article} \usepackage{hyperref} \begin{document} \begin{Form} \CheckBox[name=mycheckbox,checkboxsymbol=\ding{53}]{This is a check box:} \end{Form} \end

[NTG-context] PDF/A-3, XMP and Factur-X

2022-05-18 Thread Henning Hraban Ramm via ntg-context
123456") \stopluacode Would I need to add my tags to the mapping table of lpdf-xmp.lua? Or circumvent it after a look at the function concerned: function lpdf.addxmpinfo(tag,value,check) local pattern = permitdetail(tag) if type(pattern) == "string" then xmlfillin(x

Re: [NTG-context] List of publications…

2022-05-17 Thread śrīrāma via ntg-context
,k) -k = lower(k) -t[k] = k -return k -end) - local function defaulttypesetter(field,value,manipulator) if value and value ~= "" then value = tostring(value) @@ -1428,8 +1422,6 @@ local function get(dataset,tag,field,what,check,c

[NTG-context] conditionals for font features

2022-05-13 Thread Pablo Rodriguez via ntg-context
checks whether the font feature has been defined or not. Could anyone explain me how to check whether c2sc is being used or not in the following sample? \definefontfeature[asc][c2sc=yes, smcp=yes] \setupbodyfont[palatino] \starttext \feature[+][asc] abc\\ \feature[-][asc] abc \stoptext

Re: [NTG-context] OpenBSD install

2022-05-13 Thread Mojca Miklavec via ntg-context
BSD 7.1 > at https://wiki.contextgarden.net/Installation. > The wiki page was outdated. Can you please check again? (My browser refuses opening http links from an https site, I'm not sure if Hans configured https on his server.) > I then thought I'd try to see if the previous versions (for 6.9

[NTG-context] check whether font feature is being used

2022-05-12 Thread Pablo Rodriguez via ntg-context
} {yes}{no}\\ \feature[+][asc] text \doifelsecurrentfonthasfeature{asc} {yes}{no} \doifelsefontfeature{asc} {yes}{no} \doifunknownfontfeature{asc} {yes}{no} \stopTEXpage \stoptext Sorry, but which is the right way to check when the font feature is being deployed? Many thanks

Re: [NTG-context] upload

2022-05-11 Thread Hans Hagen via ntg-context
ersion 1.109' found, version 'Version 1.302' expected Do you mind get the new ones in the next beta? i'll try but you need to check Hans - Hans Hagen | PRAGMA ADE Ridde

Re: [NTG-context] a cross-reference query

2022-05-10 Thread Taco Hoekwater via ntg-context
e able to click on > a hyperlink which takes them to the referenced entry. Check for duplicates (referenced definitions with the same key). That problem has hit me a number of times. Best wishes, Taco — Taco Hoekwater E: t...@bittext.nl genderf

Re: [NTG-context] upload

2022-05-09 Thread Alexandre Christe via ntg-context
2 5:54 PM, mf via ntg-context wrote: > > I'm downloading it and I see a lot of mkii files and even some Ruby > files. > > > > It looks like some old material got into the update. Is everything right? > hm, i'm on a different laptop now so maybe some program is not yet > ins

Re: [NTG-context] upload

2022-05-09 Thread Hans Hagen via ntg-context
On 5/9/2022 5:54 PM, mf via ntg-context wrote: I'm downloading it and I see a lot of mkii files and even some Ruby files. It looks like some old material got into the update. Is everything right? hm, i'm on a different laptop now so maybe some program is not yet installed, i'll check it Hans

[NTG-context] Regular online-meetup

2022-05-09 Thread Henning Hraban Ramm via ntg-context
, * enter your name, * click "join" (or "start" if you’re the first), * click "with microphone", allow your browser to access it, check the audio. * Your microphone is muted if you join. Activate microphone and/or camera with the buttons at the bottom. * Min

[NTG-context] Issue in btx rendering

2022-05-04 Thread śrīrāma via ntg-context
ave certain bib files where the entries are not at all in ASCII (so I am not sure what the code might do there, I did not check in detail). I hope I can continue to use camel case for the tags (if its not too much to ask): is there some additional setting that I should change to allow this

Re: [NTG-context] process list items differently depending on position in list

2022-05-02 Thread Denis Maier via ntg-context
{{, }}, and-2={{ und }}] % 1, 2 und 3 > \setuplabeltext [hr] [and-1={{, }}, and-2={{ i }}]% 1, 2 i 3 > > maybe wikify I've just checked, \commalistsentence is already on the wiki, but you have to know it exists. (I'll check whether I can link to that page from somewhere.) But there's

[NTG-context] Fwd: lua-widow-control module error in LMTX

2022-04-27 Thread Eduardo Bohoyo via ntg-context
s that are actually likely -- you can  probably ignore all of the others)  1. "\clubpenalty" and/or "\widowpenalty" are either zero or infinite     In these cases, lwc can't distinguish a widow or orphan from other     penalties, so it doesn't do anything. You can check for this with

Re: [NTG-context] lua-widow-control module error in LMTX

2022-04-27 Thread Max Chernoff via ntg-context
r orphan: (Just listing all of these to make sure that *I* don't forget anything. I'd say that 1 and 2 are the only ones that are actually likely -- you can probably ignore all of the others) 1. "\clubpenalty" and/or "\widowpenalty" are either zero or infinite

Re: [NTG-context] lua-widow-control module error in LMTX

2022-04-26 Thread Eduardo Bohoyo via ntg-context
om the module. Well, only in those 55 pages I have 2 orphans, 5 widows and 6 broken hyphens. So the first step here is to check the log file. If you see lines like     module  > lua-widow-control > Widow/orphan detected. Attempting to remove.     module  > lua-widow-c

Re: [NTG-context] lua-widow-control module error in LMTX

2022-04-26 Thread Eduardo Bohoyo via ntg-context
t all. And you're right: even context --make doesn't solve the problem. To give you an idea, although my dummy document has 78 pages, only 55 can really be said to be dummy text that can benefit from the module. Well, only in those 55 pages I have 2 orphans, 5 widows and 6 broken hyphens.

Re: [NTG-context] lua-widow-control module error in LMTX

2022-04-25 Thread Max Chernoff via ntg-context
ent has 78 pages, only 55 can really be said to be dummy text that can benefit from the module. Well, only in those 55 pages I have 2 orphans, 5 widows and 6 broken hyphens. So the first step here is to check the log file. If you see lines like module > lua-widow-control &

Re: [NTG-context] cropoffset reduces paper size

2022-04-25 Thread Henning Hraban Ramm via ntg-context
t. While I can work around this "feature", the behaviour is different from earlier versions. Can’t check with MkIV, since that doesn’t work any more, as reported by Pablo et al. Hraban ___ If your que

Re: [NTG-context] Need some hints to fix my standalon installation

2022-04-20 Thread J. Hagen via ntg-context
ext wrote: > > On 4/20/22 19:22, Christoph Hintermüller via ntg-context wrote: >> >> That's fine. As soon as post that update is ready for pulling I will >> pull. >> Till then i can wait. > > Hi Christoph, > > to check when there is a new release I use: >

Re: [NTG-context] Need some hints to fix my standalon installation

2022-04-20 Thread Taco Hoekwater via ntg-context
ller via ntg-context wrote: >> >> That's fine. As soon as post that update is ready for pulling I will >> pull. >> Till then i can wait. > > Hi Christoph, > > to check when there is a new release I use: > > curl -I https://lmtx.pragma-ade.com/install

Re: [NTG-context] Need some hints to fix my standalon installation

2022-04-20 Thread Pablo Rodriguez via ntg-context
On 4/20/22 19:22, Christoph Hintermüller via ntg-context wrote: > > That's fine. As soon as post that update is ready for pulling I will > pull. > Till then i can wait. Hi Christoph, to check when there is a new release I use: curl -I https://lmtx.pragma-ade.com/install-lmtx/texmf-c

Re: [NTG-context] Need some hints to fix my standalon installation

2022-04-20 Thread Mikael Sundqvist via ntg-context
> My suggestion would be a fresh install (in a different directory, no > need to remove anything) of ConTeXt LMTX. > > > - What else i would have to check and probably fix to make the math > >working as expected > > Math is being improved in ConTeXt these days

Re: [NTG-context] Need some hints to fix my standalon installation

2022-04-20 Thread Pablo Rodriguez via ntg-context
n Windows [because I cannot make it work in Linux]) with LuaTeX 1.15 (the one that comes with ConTeXt LMTX). My suggestion would be a fresh install (in a different directory, no need to remove anything) of ConTeXt LMTX. > - What else i would have to check and probably fix to make the math

Re: [NTG-context] xmlpos values doubled

2022-04-20 Thread Pablo Rodriguez via ntg-context
you wrote, 2, 4, 6...). Hans, could you check whether this is working as expected? Sorry, but if this isn’t a bug, I have no idea of what I may be missing. Pablo ___ If your question is of interest to others as w

[NTG-context] Need some hints to fix my standalon installation

2022-04-20 Thread Christoph Hintermüller via ntg-context
of the fraction. A short example showing this is attached (pdf, tex, and log) Therefore i have the following questions - would it help to sacrifice the updated standalone installation and do a fresh install - What else i would have to check and probably fix to make the math working as expected

[NTG-context] Need some hints to fix my standalon installation

2022-04-20 Thread Christoph Hintermüller via ntg-context
of the fraction. A short example showing this is attached (pdf, tex, and log) Therefore i have the following questions - would it help to sacrifice the updated standalone installation and do a fresh install - What else i would have to check and probably fix to make the math working as expected

Re: [NTG-context] TeXworks on Linux

2022-04-16 Thread Willi Egger via ntg-context
Hello Alain, sorry fro the late reaction. — I thought that I had done precisely what you mention in your reply. — however I will double-check this. Thank you for your answer. Willi > On 10 Apr 2022, at 14:01, Alain Delmotte via ntg-context > wrote: > > Hi Willi! > > Le

Re: [NTG-context] $\sin \theta$ behave differently in metafun

2022-04-16 Thread Pablo Rodriguez via ntg-context
On 4/16/22 13:01, śrīrāma via ntg-context wrote: > Strangely, my attachments never make it to the list Sreeram, as you can check yourself, the list got your attachment (https://mailman.ntg.nl/pipermail/ntg-context/2022/105466.html). Just in case it might help, Pa

[NTG-context] $\sin \theta$ behave differently in metafun

2022-04-15 Thread Jeong Dal via ntg-context
4cm] >>> \barcode[alternative=isbnx, text=9783865419026, width=4cm] >>> \barcode[alternative=qrcode, text={https://wiki.contextgarden.net}, >>> width=3cm] >>> \stoptext >> — >> Bruce Horrocks >> Hampshire, UK >> > -- next part ---

[NTG-context] cropoffset reduces paper size

2022-04-15 Thread Henning Hraban Ramm via ntg-context
the "oversized" factor is nulled by the crop offset. While I can work around this "feature", the behaviour is different from earlier versions. Can’t check with MkIV, since that doesn’t work any more, as reported by P

Re: [NTG-context] fatal error in LMTX

2022-04-13 Thread Pablo Rodriguez via ntg-context
closed. > > $ mtxrun --script check filename.tex > is something I learned from this list. Many thanks for your reply, Bruce. I knew this too, but this doesn’t fit my working conditions. I’m afraid that it doesn’t work with sources with \input commands. Contents of 'c.tex': \st

Re: [NTG-context] fatal error in LMTX

2022-04-12 Thread Bruce Horrocks via ntg-context
> On 12 Apr 2022, at 18:14, Pablo Rodriguez via ntg-context > wrote: > > I wonder whether it would be possible that ConTeXt or LuaMeTaTeX could > be more verbose about an opened environment that isn’t closed. $ mtxrun --script check filename.tex is something I learned

Re: [NTG-context] Regular online meet-up

2022-04-11 Thread Henning Hraban Ramm via ntg-context
the first), * click "with microphone", allow your browser to access it, check the audio. * Your microphone is muted if you join. Activate microphone and/or camera with the buttons at the bottom. * Minimize the default presentation with the "screen" button, bottom right. * If you’d li

Re: [NTG-context] Spellchecking for ConTeXt user on a Windows platform

2022-04-02 Thread A A via ntg-context
gt; > Alain > Le 2/04/2022 à 09:23, A A via ntg-context a écrit : > > Dear All, > > I'm currently using ConTeXt on a windows machine. I'd like to incorporate > some sort of automated spell-checking in my workflow. I've seen that there > are two options: > >1. spell

Re: [NTG-context] Spellchecking for ConTeXt user on a Windows platform

2022-04-02 Thread Alain Delmotte via ntg-context
mated spell-checking in my workflow. I've seen that there are two options: spell check the .tex source file spell check the resulting pdf For the first option many resources online seem to suggest using aspel

[NTG-context] Spellchecking for ConTeXt user on a Windows platform

2022-04-02 Thread A A via ntg-context
Dear All, I'm currently using ConTeXt on a windows machine. I'd like to incorporate some sort of automated spell-checking in my workflow. I've seen that there are two options: 1. spell check the .tex source file 2. spell check the resulting pdf For the first option many resources online

Re: [NTG-context] zint module on LMTX

2022-03-25 Thread Lutz Haseloff via ntg-context
t/tex/texmf-win64/bin/lib/luametatex/zint/libzint.dll', quitting mtx-context | fatal error: return code: 1 >Exit code: 1 Greetings Lutz Am 17. März 2022 16:26:21 MEZ schrieb Pablo Rodriguez via ntg-context : >On 3/16/22 22:32, Pablo Rodriguez via ntg-context wrote: >> [...]

Re: [NTG-context] zint module on LMTX

2022-03-17 Thread Pablo Rodriguez via ntg-context
On 3/16/22 22:32, Pablo Rodriguez via ntg-context wrote: > [...] > On Windows, I need to check the issue further. Using latest binary from SF (which is Win32, btw), I get the following error message: error (lmt library): unable to load 'D:/utilidades/context/tex/ texmf-win64/b

Re: [NTG-context] Force a hyphenation

2022-03-17 Thread Willi Egger via ntg-context
Thanks everybody very much for the explanations. — As I am Swiss, these matters with ß were never correctly understood and my knowledge about hyphenation is old… Thank you Thomas for pointing me to the Duden-rules. I will check-out the same issue about ck and k-k … Kind regards Willi

Re: [NTG-context] zint module on LMTX

2022-03-16 Thread Adam Reviczky via ntg-context
sion 2.10. > > "isbn" works, but "isbnx" doesn’t. As already reported is an > unrecognized option that is also listed as available alternative (weird). > > > I have used bo

Re: [NTG-context] zint module on LMTX

2022-03-16 Thread Pablo Rodriguez via ntg-context
eady reported is an unrecognized option that is also listed as available alternative (weird). > I have used both isbnx and qrcode successfully with zint 2.10 on linux. As said, for some strange reason, "isbnx" doesn’t work on my Linux machine. On Windows, I ne

Re: [NTG-context] New upload is DOA on my M1 Mac

2022-03-15 Thread Gavin via ntg-context
p finds is entirely down to path settings > and/or TexShop preferences settings (in its 'engine' files) and nothing to do > with the security permissions. > > Regarding the security permissions there is something else to check: go to > System Preferences -> Security & Privac

Re: [NTG-context] new upload

2022-03-14 Thread Hans Hagen via ntg-context
On 3/14/2022 3:05 PM, Rik Kabel via ntg-context wrote: On 2022-03-14 04:01, Hans Hagen wrote: On 3/13/2022 7:58 PM, Rik Kabel via ntg-context wrote: ...  2. How does the goodies mechanism work when the expected version     differs from the found version? we check the version number

Re: [NTG-context] new upload

2022-03-14 Thread Rik Kabel via ntg-context
On 2022-03-14 04:01, Hans Hagen wrote: On 3/13/2022 7:58 PM, Rik Kabel via ntg-context wrote: ...  2. How does the goodies mechanism work when the expected version     differs from the found version? we check the version number in the font file (a bit of fuzzyness due to the way

Re: [NTG-context] new upload

2022-03-14 Thread Mikael Sundqvist via ntg-context
; 2. How does the goodies mechanism work when the expected version > > differs from the found version? > > we check the version number in the font file (a bit of fuzzyness due to > the way version numbers ar ento standardized); comparing internals would > be an option but

Re: [NTG-context] new upload

2022-03-14 Thread Hans Hagen via ntg-context
us (and am an unlike candidate; i mostly use cambria, pagella, dejavu, lucida) 2. How does the goodies mechanism work when the expected version differs from the found version? we check the version number in the font file (a bit of fuzzyness due to the way version numbers ar ento st

Re: [NTG-context] New upload is DOA on my M1 Mac

2022-03-13 Thread Bruce Horrocks via ntg-context
l get “permission denied." The instance of mtxrun that TeXShop finds is entirely down to path settings and/or TexShop preferences settings (in its 'engine' files) and nothing to do with the security permissions. Regarding the security permissions there is something else to check: go to S

Re: [NTG-context] New upload is DOA on my M1 Mac

2022-03-12 Thread Jean-Pierre Delange via ntg-context
w that says: “luametatex” can’t be opened because Apple cannot check it for malicious software. When I tried running mtxrun --generate, in Terminal, I got the response: zsh: permission denied: mtxrun I’m not sure how to get around this. Gavin On Mar 12, 2022, at 8:31 AM, Mojca Mik

Re: [NTG-context] New upload is DOA on my M1 Mac

2022-03-12 Thread Hans Hagen via ntg-context
On 3/12/2022 5:18 PM, Gavin wrote: Hi Mojca, I think my security settings are preventing me from using this luametatex file. When trying to update the installation, I got a window that says: “luametatex” can’t be opened because Apple cannot check it for malicious software. When I

Re: [NTG-context] New upload is DOA on my M1 Mac

2022-03-12 Thread Hans Hagen via ntg-context
On 3/12/2022 5:18 PM, Gavin wrote: Hi Mojca, I think my security settings are preventing me from using this luametatex file. When trying to update the installation, I got a window that says: “luametatex” can’t be opened because Apple cannot check it for malicious software. When I

Re: [NTG-context] New upload is DOA on my M1 Mac

2022-03-12 Thread Gavin via ntg-context
Hi Mojca, I think my security settings are preventing me from using this luametatex file. When trying to update the installation, I got a window that says: “luametatex” can’t be opened because Apple cannot check it for malicious software. When I tried running mtxrun --generate

Re: [NTG-context] Regular online meet-up

2022-03-09 Thread Henning Hraban Ramm via ntg-context
, * enter your name, * click "join" (or "start" if you’re the first), * click "with microphone", allow your browser to access it, check the audio. * Your microphone is muted if you join. Activate microphone and/or camera with the buttons at the bottom. * Min

Re: [NTG-context] Few quick questions

2022-03-09 Thread Christoph Hintermüller via ntg-context
Hans indicated a tool, a program, which allows to verify that that > > all start* stop* tag pairs are symmetric and placed in correct > > order. I just cant remember how it is called. Can anybody help > > here? > > mtxrun --autogenerate --script check > Thank you

Re: [NTG-context] Few quick questions

2022-03-08 Thread Marco Patzer via ntg-context
lp > here? mtxrun --autogenerate --script check The following will not report missing tags but will find other common issues and report them on the console: context --errors='*' Marco ___ If your question is of intere

Re: [NTG-context] Few quick questions

2022-03-08 Thread Rik Kabel via ntg-context
* stop* tag pairs are symmetric and placed in correct order. I just cant remember how it is called. Can anybody help here? mtxrun --script check -- Rik ___ If your question is of interest to others as well, please add

[NTG-context] Few quick questions

2022-03-08 Thread Christoph Hintermüller via ntg-context
commands. Therefore i want to check first on the inlined document if there would by any asymetric start* stop* before persuing further. ___ If your question is of interest to others as well, please add an entry

[NTG-context] Few quick questions

2022-03-08 Thread Christoph Hintermüller via ntg-context
commands. Therefore i want to check first on the inlined document if there would by any asymetric start* stop* before persuing further. -- -- Christoph Hintermüller Dipl.-Ing. Dr. MBA. MSc JKU Institute of Biomedical Mechatronics Altenberger Straße 69, 4040 Linz, Austria, Cell: +43 650 8827347

Re: [NTG-context] What’s wrong with installation?

2022-03-08 Thread Hans Hagen via ntg-context
the machine Thank you! I can confirm it’s working again – and the current version is much faster than the previous one, because it doesn’t write so many logging/debugging messages. Now to check all my projects are working... actually, that current version is not that current ... so you could have

Re: [NTG-context] What’s wrong with installation?

2022-03-08 Thread Henning Hraban Ramm via ntg-context
– and the current version is much faster than the previous one, because it doesn’t write so many logging/debugging messages. Now to check all my projects are working... Hraban ___ If your question is of interest to others

[NTG-context] Regular online meet-up

2022-03-06 Thread Henning Hraban Ramm via ntg-context
the first), * click "with microphone", allow your browser to access it, check the audio. * Your microphone is muted if you join. Activate microphone and/or camera with the buttons at the bottom. * Minimize the default presentation with the "screen" button, bottom right. * If you’d like to

Re: [NTG-context] gzip.compress in ConTeXt mkiv

2022-03-02 Thread Hans Hagen via ntg-context
...mtx/tex/texmf-context/tex/context/base/mkiv/util-zip.lua:610: in upvalue 'putcompressed' ...mtx/tex/texmf-context/tex/context/base/mkiv/util-zip.lua:662: in function 'gzip.compress' [ctxlua]:1: in main chunk i'll check it (at some point i need to split code paths a bit mo

Re: [NTG-context] Suggestions for more math classes?

2022-02-16 Thread Hans Hagen via ntg-context
domain) 2) Digits, where I use {,} to get a thousands separator idem, there are mechanisms for that (independent of math) 3) Chemical equations, which seem to be in their own strange world right now that belongs in the chemical modules (i probably need to check prescritps and spacing

Re: [NTG-context] Regular online meet-up

2022-02-06 Thread Henning Hraban Ramm via ntg-context
] * No special software installation required; most modern browsers should work (WebRTC required). * Open the above URL, accept the privacy statement, * enter your name, * click "join" (or "start" if you’re the first), * click "with microphone", allow your browser

Re: [NTG-context] Regular online meet-up

2022-02-06 Thread Alain Delmotte via ntg-context
(WebRTC required). * Open the above URL, accept the privacy statement, * enter your name, * click "join" (or "start" if you’re the first), * click "with microphone", allow your browser to access it, check

Re: [NTG-context] XMP metadata schema yields invalid PDF/A

2022-02-05 Thread luigi scarso via ntg-context
description, which is not coherent >> > with how dc:description is written by the application. >> > >> > This patch to lpdf-pda.xml removes the validation error. >> > >> >> Sorry, diff the other way round according to diff original new. >> > > ind

[NTG-context] Regular online meet-up

2022-02-05 Thread Henning Hraban Ramm via ntg-context
statement, * enter your name, * click "join" (or "start" if you’re the first), * click "with microphone", allow your browser to access it, check the audio. * Your microphone is muted if you join. Activate microphone and/or camera with the buttons at the bottom. * Min

Re: [NTG-context] XMP metadata schema yields invalid PDF/A

2022-02-05 Thread luigi scarso via ntg-context
> > > > This patch to lpdf-pda.xml removes the validation error. > > > > Sorry, diff the other way round according to diff original new. > indeed.. Ok, now I see. Need to check some things . -- luigi ___

Re: [NTG-context] XMP metadata schema yields invalid PDF/A

2022-02-05 Thread Karl Pettersson via ntg-context
On Sat, Feb 05, 2022 at 09:59:44AM +0100, luigi scarso wrote: > it's not redefined -- it's dropped. And this is ok. > You can also check with > FOO > > > TITLE > > > and again it's valid. > But > https://www.iso.org/obp

Re: [NTG-context] XMP metadata schema yields invalid PDF/A

2022-02-05 Thread luigi scarso via ntg-context
gt; description seems to be redefined, not title. > it's not redefined -- it's dropped. And this is ok. You can also check with FOO TITLE and again it's valid. But https://www.iso.org/obp/ui/#iso:std:iso:19005:-1:ed-1:v2:cor:1:v1:en and https://www.iso.org/obp/

[NTG-context] How can I get a section title to change depending on the section content?

2022-01-29 Thread Joel via ntg-context
I have a section somewhat like this...I'm replacing the code with something much simpler, but its basically doing a similar thing, running conditionals to check which content to place: \section{Brave Rabbits} \ifnum\somenumber>3 Print this content about rabbits. \e

Re: [NTG-context] Font scaling via sa in LMTX

2022-01-21 Thread Rik Kabel via ntg-context
the danger of disabling some feature) Hans This is still a problem using yesterday's upload. I'll check it but you anyway need SansBold (B) Thank you for the fix. ___ If your question is of interest to others as well

Re: [NTG-context] Iterating over MP paths (was: Fuzzy lines)

2022-01-21 Thread Henning Hraban Ramm via ntg-context
Am 03.09.21 um 18:04 schrieb Henning Hraban Ramm via ntg-context: Would it make sense to check if a point is an edge point (without curve controls)? In a private reply to my old message, Hans explained to me why this was not possible like I thought (check if the point has control points

Re: [NTG-context] Font scaling via sa in LMTX

2022-01-19 Thread Hans Hagen via ntg-context
This is still a problem using yesterday's upload. I'll check it but you anyway need SansBold (B) - Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands

Re: [NTG-context] How to create an index that refers to multiple other books?

2022-01-18 Thread Hans Hagen via ntg-context
On 1/18/2022 2:16 PM, Joel via ntg-context wrote: I am writing a secondary textbook to be used in public schools. In my state, the textbooks must adhere to standards, such as the Common Core State Standards (CCSS). It is typical for a textbook to contain an index for teachers to check where

Re: [NTG-context] How to create an index that refers to multiple other books?

2022-01-18 Thread Joel via ntg-context
standards, such as the Common Core State Standards (CCSS). It is typical for a textbook to contain an index for teachers to check where in the textbook which standards are used. I've used the following code to create such an index, if I simply place `\learned{}` somewhere containing the standard's ID,

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