[NTG-context] redefine space to be the same as \␣ similar to knuthian approach

2023-08-18 Thread Carlos
prior \␣ at the mercy of whatever fontsize and/or set width happens to be. And this is just plain wrong. Likewise, if a word sequence such as \TeX\ occurs as in {\ss The separation of any of these four components would have hurt \TeX\ significantly. } The next sentence: «If I had not participated…» doe

[NTG-context] Re: Tracker for hyphens at the end of lines

2023-08-09 Thread Hans Hagen via ntg-context
string.sub(x,26) end -- 2. Remove trailing punctuation function removeTrailingPunctuation (x) if string.find(x, ',') then return x:sub(1, -2) else return x end end -- test if word is in second list function inList (x, list) for k,v in ipairs

[NTG-context] Re: Tracker for hyphens at the end of lines

2023-08-09 Thread denis.maier
(x) if string.find(x, ',') then return x:sub(1, -2) else return x end end -- test if word is in second list function inList (x, list) for k,v in ipairs(list) do if v == x then return true end end return nil end -- Fi

[NTG-context] Reinserting a section title followed by (continued) after a page break

2023-07-30 Thread Calvin Ross
g dialog sections in columns: --- open --- Alice Bob John, you fool.John, you imbecile. --- page break --- Alice (cont'd) Don't you know that everyone uses Word to typeset their plays? --- end --- How can I do thi

Re: [NTG-context] knuth

2023-06-02 Thread Carlos via ntg-context
write me up an essay with the most interesting parts I remember that the point that chatgpt was trying to make, was in that the printing press challenged the authority of the church. And I remember I had to go back and forth with it and question that very verb/use of the word challenging. If anyt

Re: [NTG-context] ntg-context Digest, Vol 227, Issue 15

2023-05-09 Thread Sebastian Ørsted via ntg-context
mbing session in a tree, and a list of > acknowledgements in the introduction. > The SAG, as the book is affectionately called, is one of the > corner stones of the Linux Documentation Project. ``We at the LDP feel > that we wouldn't be abl

Re: [NTG-context] This is rmally done by loading special math fonts into the math family slots.

2023-05-09 Thread Carlos via ntg-context
``More dough,'' explains the author. Despite insistent rumors about blatant commercialization, the SAG will probably remain free. ``Even more dough,'' promises the author. The author refuses to comment on Windows NT and Windows 96 versions, claiming not to understand what

Re: [NTG-context] new units

2023-05-07 Thread Alan Braslau via ntg-context
s of alcohol. We have an opportunity to make up for this missed occasion this year by attending the annual ConTeXt meeting. Of course, these two meetings are complementary and ideally one should aim at attending *both*. As to the Dutch left and right thumbs, the French word is also "pouce"

[NTG-context] help wanted: English native speaker as co-editor

2023-04-16 Thread Henning Hraban Ramm via ntg-context
. BTW I never thought of offering “our” articles to TUG and NTG, while I sometimes got articles that were published in TUGboat or MAPS first. (And I’m writing/translating for DANTE’s DTK regularly.) I’ll start to do that, since “recycling” makes sense, and it also can’t hurt to spread the word

Re: [NTG-context] /usr/bin/env texlua no such file or directory; ~/context/tex is not a valid TEXROOT path; no file plain.tex

2023-04-11 Thread Carlos via ntg-context
phg/context-mirror/commits/ > wiki : https://contextgarden.net > ___ > -- "We invented a new protocol and called it Kermit, after Kermit the Frog, star of "The Muppet Show." [3] [3] Why? Mos

Re: [NTG-context] Printing problem

2023-03-16 Thread lynx--- via ntg-context
might have to do with type3 fonts. > > I attach a pdf file that does not print on our printer at work. Or > well, it prints almost all of the page, but stops at the word > "negativa" (or was it "egenvärden", I do not have the printout here > right now). Then

Re: [NTG-context] Printing problem

2023-03-16 Thread Henning Hraban Ramm via ntg-context
or if the pdf files are somehow corrupted. It might have to do with type3 fonts. I attach a pdf file that does not print on our printer at work. Or well, it prints almost all of the page, but stops at the word "negativa" (or was it "egenvärden", I do not have the printout her

Re: [NTG-context] Printing problem

2023-03-16 Thread Keith McKay via ntg-context
r to Hans, we have discussed this a bit) whether it is > the printer that has a lack of memory or if the pdf files are somehow > corrupted. It might have to do with type3 fonts. > > I attach a pdf file that does not print on our printer at work. Or > well, it prints almost all o

Re: [NTG-context] Printing problem

2023-03-16 Thread Willi Egger via ntg-context
I attach a pdf file that does not print on our printer at work. Or > well, it prints almost all of the page, but stops at the word > "negativa" (or was it "egenvärden", I do not have the printout here > right now). Then the printer also prints an error report about some

Re: [NTG-context] Printing problem

2023-03-16 Thread Martin C. Moncrieffe via ntg-context
has a lack of memory or if the pdf files are somehow corrupted. It might have to do with type3 fonts. I attach a pdf file that does not print on our printer at work. Or well, it prints almost all of the page, but stops at the word "negativa" (or was it "egenvärden", I do not ha

[NTG-context] Printing problem

2023-03-16 Thread Mikael Sundqvist via ntg-context
print on our printer at work. Or well, it prints almost all of the page, but stops at the word "negativa" (or was it "egenvärden", I do not have the printout here right now). Then the printer also prints an error report about some "offending command". So, a request: I

[NTG-context] issue with custom hyphenator

2023-02-10 Thread Pablo Rodriguez via ntg-context
, } languages.hyphenators.traditional.installmethod("test", function(dictionary,word,n) local t = { } for i=1,#word do local w = word[i] if subset[w] then t[i] = { before

Re: [NTG-context] Bug in verbatim wrapping examples on wiki

2023-02-05 Thread Pablo Rodriguez via ntg-context
local shared = { start = 1, length = 1, before = utf.char(0xFE000), after = nil, left = false, right = false, } local all = table.setmetatableindex({ }, function(t,k) return shared end) languages.hyphenators.traditional.installmetho

Re: [NTG-context] Bug in verbatim wrapping examples on wiki

2023-02-05 Thread Hans Hagen via ntg-context
function(dictionary,word,n) -- local t = { } -- for i=1,#word do -- t[i] = shared -- end -- return t -- end -- ) -- or more efficient when used often: -- local all = { } -- f

Re: [NTG-context] Bug in verbatim wrapping examples on wiki

2023-02-05 Thread Pablo Rodriguez via ntg-context
t = false, --right = false, --} local shared = { start = 1, length = 1, before = utf.char(0xB7), after = nil, left = false, right = false, } -- languages.hyphenators.traditional.installmethod

[NTG-context] Is the Society of Biblical Literature (SBL) style files for ConTeXt incompatible with \setupinteraction[state=start]?

2023-01-15 Thread Joel via ntg-context
ngroup \letbtxparameter {punct}\empty \def \currentbtxcitealternative {inline}\def \currentbtxcategory {\btxfield {category}}\def \currentbtxloctext     {\btxparameter {loctex \normalexpanded     \Word {\fastsetup {btx:sbl:cite:inline}     }\doif {\btxparameter {righttext}}{\empty } {\btx

Re: [NTG-context] TUG 2023

2023-01-04 Thread Joseph Wright via ntg-context
is year will be more peaceful and less pandemic... But to my topic: the official announcement for TUG 2023 is out. It will be in Bonn, Germany, in a building literally (literally!) just across the street from my university office. So I feel somewhat motivated to go and give a talk on ConTeXt and sp

[NTG-context] TUG 2023

2023-01-04 Thread Thomas A. Schmitz via ntg-context
topic: the official announcement for TUG 2023 is out. It will be in Bonn, Germany, in a building literally (literally!) just across the street from my university office. So I feel somewhat motivated to go and give a talk on ConTeXt and spread the word. Since I'm a simple user and no developer,

Re: [NTG-context] Ajami script

2023-01-01 Thread George N. White III via ntg-context
On Sun, Jan 1, 2023 at 2:14 PM BPJ via ntg-context wrote: It's a bit confusing because the word ʿajamī simply means anything written > in a non-Arabic language with Arabic script. Africa is certainly not the > only place where that term has been used. It is also the case that Arab

Re: [NTG-context] Ajami script

2023-01-01 Thread BPJ via ntg-context
It's a bit confusing because the word ʿajamī simply means anything written in a non-Arabic language with Arabic script. Africa is certainly not the only place where that term has been used. It is also the case that Arabic script has been used to write West African languages for very

Re: [NTG-context] extra hyphen in underscore hyphenation

2022-12-08 Thread Pablo Rodriguez via ntg-context
es] \starttext \startTEXpage[offset=1em, width=4em] \hsize\zeropoint\tt \hyphenatedword{legibility-legible} \stopTEXpage \stoptext Results are the same with "\mainlanguage[es]" or "\mainlanguage[nl]". If "\mainlanguage" is placed after "\setuplanguage"

Re: [NTG-context] Why are my captions overlapping next text in combinations?

2022-11-26 Thread Wolfgang Schuster via ntg-context
Joel via ntg-context schrieb am 25.11.2022 um 23:25: I have some combinations used throughout my document like this: \starttext \startcombination[4*2]             {%  \framed[width=.25\textwidth, height=.25\textwidth]{}%  }{%                 \strut word \\ \thinrule\hairline\hairline

[NTG-context] Why are my captions overlapping next text in combinations?

2022-11-25 Thread Joel via ntg-context
I have some combinations used throughout my document like this: \starttext   \startcombination[4*2]            {%                 \framed[width=.25\textwidth, height=.25\textwidth]{}%             }{%                 \strut word \\ \thinrule\hairline\hairline

Re: [NTG-context] About macro numberstriped ()

2022-10-01 Thread Fabrice Couvreur via ntg-context
-context@ntg.nl> a écrit : > Am 28.09.22 um 15:29 schrieb Hans Hagen via ntg-context: > > On 9/28/2022 3:11 PM, Fabrice Couvreur via ntg-context wrote: > >> PS : What is the exact meaning of the word "blobs" because my English > >> is average ? > > in or

Re: [NTG-context] About macro numberstriped ()

2022-09-28 Thread Henning Hraban Ramm via ntg-context
Am 28.09.22 um 15:29 schrieb Hans Hagen via ntg-context: On 9/28/2022 3:11 PM, Fabrice Couvreur via ntg-context wrote: PS : What is the exact meaning of the word "blobs" because my English is average ? in order to get 'lines' you need to fill the two opposing corners

Re: [NTG-context] About macro numberstriped ()

2022-09-28 Thread Hans Hagen via ntg-context
On 9/28/2022 3:11 PM, Fabrice Couvreur via ntg-context wrote: Hi Hans, Thank you for this solution which is an approach that I did not know. Fabrice PS : What is the exact meaning of the word "blobs" because my English is average ? in order to get 'lines' you need to f

Re: [NTG-context] About macro numberstriped ()

2022-09-28 Thread Fabrice Couvreur via ntg-context
Hi Hans, Thank you for this solution which is an approach that I did not know. Fabrice PS : What is the exact meaning of the word "blobs" because my English is average ? Le mar. 27 sept. 2022 à 22:04, Hans Hagen via ntg-context < ntg-context@ntg.nl> a écrit : > On 9/27/20

Re: [NTG-context] Hyphenation in multi-language projects

2022-09-14 Thread Steffen Wolfrum via ntg-context
alent to the Plain TeX >> command "\discretionary{-}{}{}", so >> >> \replaceword[hyphenations][steffen][steff{-}{}{}en] >> >> acts just like "steff\-en". TeX won't otherwise hyphenate a word with >> discretionaries, so this means that &quo

Re: [NTG-context] Hyphenation in multi-language projects

2022-09-14 Thread Denis Maier via ntg-context
to a > discretionary. The discretionary hyphen "\-" is equivalent to the Plain TeX > command "\discretionary{-}{}{}", so > >\replaceword[hyphenations][steffen][steff{-}{}{}en] > > acts just like "steff\-en". TeX won't otherwise hyphenat

Re: [NTG-context] Hyphenation in multi-language projects

2022-09-13 Thread Max Chernoff via ntg-context
uot;\-" is equivalent to the Plain TeX command "\discretionary{-}{}{}", so \replaceword[hyphenations][steffen][steff{-}{}{}en] acts just like "steff\-en". TeX won't otherwise hyphenate a word with discretionaries, so this means that

Re: [NTG-context] String substitution using regular expressions and backreferences

2022-08-26 Thread Hans Hagen via ntg-context
. Second is that the processing function would have to be called for every XML element to capture the replacement. My original post asked about applying regex word substitution in a ConTeXt way, such as: \definereplacement[SubstMac][ match={Mc([A-Z].*)}, replace={\Mac \\1} ] \definereplacement[Subst

Re: [NTG-context] String substitution using regular expressions and backreferences

2022-08-25 Thread Thangalin via ntg-context
called for every XML element to capture the replacement. My original post asked about applying regex word substitution in a ConTeXt way, such as: \definereplacement[SubstMac][ match={Mc([A-Z].*)}, replace={\Mac \\1} ] \definereplacement[SubstPostmeridian][ match={[Pp]\\.[Mm]\\.}, replace={\cap{pm}

[NTG-context] Suggestions for project structures, environment inheritance, local overrides

2022-08-17 Thread Denis Maier via ntg-context
ootly. Currently, my folder structure looks roughly like this : 2022 -- _assets -- article1 source md xml pdf html -- article2 etc. Usually, I receive Word files that get transformed via pandoc to markdown, polished, and from there to XML. HTML is produced via XSLT, PD

[NTG-context] Keep the right margin in [nothyphenated, flushleft] columns

2022-08-12 Thread Marcin Ciura via ntg-context
://live.contextgarden.net/cgi-bin/result.cgi?id=UnSfnS Best regards, Marcin \setupalign[nothyphenated,flushleft] \starttext \startitemize[n,nowhite,columns,two] % The word '(boków' sticks through the right % margin of the left column. \item {\bf Wielokąt} to figura na płaszczyźnie, której brzeg sk

Re: [NTG-context] Forbid footnotes from splitting across pages

2022-08-03 Thread Hamid,Idris via ntg-context
] suppresses it. Endnotes are evil 🙂 But the reason for this is that I'm converting to WORD using Abobe and NitroPDF, and I'm trying to make things as easy for the editor of the book as easy as possible. The conversion will look right but the dozens of footnotes will, of course, be un

Re: [NTG-context] Workshop at FrOSCon

2022-07-09 Thread Hans Hagen via ntg-context
ation - Hello word What would you cover? Project structure? Style creation? In my experience, most participants will know LaTeX, i.e. you must tell them to forget everything they believe to know about TeX ;P Oh, and don’t tell them that ConTeXt LMTX is much, much faster than any LaTeX, because tha

Re: [NTG-context] Workshop at FrOSCon

2022-07-09 Thread Henning Hraban Ramm via ntg-context
Am 09.07.22 um 19:27 schrieb Henning Hraban Ramm via ntg-context: Am 09.07.22 um 17:48 schrieb juh+ntg-context--- via ntg-context: My workshop was accepted. What shall I cover? It's a workshop for beginners? - Installation - Hello word What would you cover? Project structure? Style cre

Re: [NTG-context] Workshop at FrOSCon

2022-07-09 Thread Henning Hraban Ramm via ntg-context
Am 09.07.22 um 17:48 schrieb juh+ntg-context--- via ntg-context: My workshop was accepted. What shall I cover? It's a workshop for beginners? - Installation - Hello word What would you cover? Project structure? Style creation? In my experience, most participants will know LaTeX, i.e. you

Re: [NTG-context] Workshop at FrOSCon

2022-07-09 Thread juh+ntg-context--- via ntg-context
lines were extended. I'll keep you updated. My workshop was accepted. What shall I cover? It's a workshop for beginners? - Installation - Hello word What would you cover? Project structure? Style creation? I think one part will be: Where to find documentation? Any hints appreciat

Re: [NTG-context] error with sbl bibliography on latest LMTX

2022-07-09 Thread Joey McCollum via ntg-context
punctelse % why is this necessary? For some reason, \btx_sbl_doifendswithpunctelse is not recognized within the footnote environment... \def\currentbtxcitealternative{footnote} \def\currentbtxcategory{\btxfield{category}} \def\currentbtxloctext{\btxparameter{loctext}} \def\currentbtxaltloctext{\bt

[NTG-context] error with sbl bibliography on latest LMTX

2022-07-08 Thread Henning Hraban Ramm via ntg-context
teraction[state=start] \starttext superior typographic output \cite[lefttext={e.g.}][taraborelli:beauty]. Therefore, the {\TEX}book mentions that the word \quotation{shel\noligature{ff}ul} should indeed be rendered without the ff-ligature \cite[righttext={p.~19}][knuth:texbook]. \placelis

Re: [NTG-context] Malfunctioning of syllabic partitioning of words in Spanish

2022-07-06 Thread Max Chernoff via ntg-context
I am writing a document in Spanish and I notice that the syllable partitioning of words does not conform to the rules of the language. And so, for example, the word "limitarse" is partitioned as "lim-itarse" (the correct one is "li-mi-tar-se"), "colores&quo

[NTG-context] Malfunctioning of syllabic partitioning of words in Spanish

2022-07-06 Thread Joaquín Ataz López via ntg-context
I am writing a document in Spanish and I notice that the syllable partitioning of words does not conform to the rules of the language. And so, for example, the word "limitarse" is partitioned as "lim-itarse" (the correct one is "li-mi-tar-se"), "colores&quo

Re: [NTG-context] Two minor questions

2022-06-07 Thread Stefan Nedeljkovic via ntg-context
I updated the files on Drive. Please see line >> > 19, the last word "and". It is clearly out of alignment with the gid. >> > I tested the alignment in MP and it should work, ie 2 characters are >> > indeed one grid cell (semms from the fact that IBM Plex Mon

Re: [NTG-context] Two minor questions

2022-06-07 Thread Stefan Nedeljkovic via ntg-context
y much Wolfgang! But, there is still something weird > > going on with the font. I updated the files on Drive. Please see line > > 19, the last word "and". It is clearly out of alignment with the gid. > > I tested the alignment in MP and it should work, ie 2 characters a

Re: [NTG-context] Two minor questions

2022-06-07 Thread Wolfgang Schuster via ntg-context
Stefan Nedeljkovic schrieb am 07.06.2022 um 07:25: Thank you very much Wolfgang! But, there is still something weird going on with the font. I updated the files on Drive. Please see line 19, the last word "and". It is clearly out of alignment with the gid. I tested the alignment in

Re: [NTG-context] Two minor questions

2022-06-07 Thread Stefan Nedeljkovic via ntg-context
there is still something weird going on > with the font. I updated the files on Drive. Please see line 19, the last > word "and". It is clearly out of alignment with the gid. I tested the > alignment in MP and it should work, ie 2 characters are indeed one grid > cell (semms fr

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] it will

Re: [NTG-context] Two minor questions

2022-06-06 Thread Stefan Nedeljkovic via ntg-context
Thank you very much Wolfgang! But, there is still something weird going on with the font. I updated the files on Drive. Please see line 19, the last word "and". It is clearly out of alignment with the gid. I tested the alignment in MP and it should work, ie 2 characters are indeed one

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

2022-06-06 Thread Thangalin via ntg-context
Here's a short example (version 2022.05.11 11:36): \setuplanguage[en][goodies={lang-en.llg}] \starttext % Expected: no ligature; actual: as expected wolfish % Expected: no ligatures; actual: ligature wolfing wolfin' wolfin’ \stoptext __

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

2022-06-06 Thread Denis Maier via ntg-context
-context] Contractions in ligature suppression word list Thanks for the response, Bruce. 1) The file you attached doesn't include the word "wolfing", nor "wolfin". I assume they need to be The suffixes section accounts for this. Wolfing and wolfish both suppress th

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

2022-06-06 Thread Thangalin via ntg-context
Thanks for the response, Bruce. 1) The file you attached doesn't include the word "wolfing", nor "wolfin". > I assume they need to be The suffixes section accounts for this. Wolfing and wolfish both suppress the ligature correctly. I removed the comma separator

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

2022-06-06 Thread Bruce Horrocks via ntg-context
in’, > ing > ]], > > See https://wiki.contextgarden.net/Ligatures#Word_suppression for an example > usage. > > Thank you! > I'm probably missing something here but... 1) The file you attached doesn't include the word "wolfing", nor &quo

[NTG-context] Contractions in ligature suppression word list

2022-06-05 Thread Thangalin via ntg-context
Attached are tweaked endings for words like "wolf" to include contracted endings, but they are being ignored. This makes for a minor inconsistency: wolfing -- no ligature wolfish -- no ligature wolfin -- no ligature (incorrect spelling, though) wolfin' -- ligature Any ideas? I tried addin

Re: [NTG-context] How to include a file with table data within a table?

2022-05-29 Thread Wolfgang Schuster via ntg-context
]\tablewordis{%     \NC \NC \NC\NR  \NC #1 \NC #2 \NC\NR } ...then placing that in test2.tex, e.g.: \tablewordis{my word}{my definition} I get the error: " The file ended when scanning an argument." Before the update, this code worked fine. How can I \input a file while inside a table en

Re: [NTG-context] How to include a file with table data within a table?

2022-05-29 Thread Joel via ntg-context
>      \NC \NC \NC\NR >      \NC #1 \NC #2 \NC\NR > } > > ...then placing that in test2.tex, e.g.: > > \tablewordis{my word}{my definition} > > I get the error: " The file ended when scanning an argument." > > Before the update, this code worked fine.

Re: [NTG-context] How to include a file with table data within a table?

2022-05-29 Thread Henning Hraban Ramm via ntg-context
arlier in the document... \define[2]\tablewordis{%     \NC \NC \NC\NR     \NC #1 \NC #2 \NC\NR } ...then placing that in test2.tex, e.g.: \tablewordis{my word}{my definition} I get the error: " The file ended when scanning an argument." Before the update, this code worked fine. How ca

[NTG-context] How to include a file with table data within a table?

2022-05-29 Thread Joel via ntg-context
est2.tex, e.g.: \tablewordis{my word}{my definition} I get the error: " The file ended when scanning an argument." Before the update, this code worked fine. How can I \input a file while inside a table environment, as above? I have a document that has 100s of these inputs in my code

[NTG-context] \placenotes ends up in wrong place when mixing one- and two- column layouts.

2022-05-10 Thread Zhichu Chen via ntg-context
vince the Board of a journal to consider ConTeXt as an additional option. I want to make a module before I say anything. Right now I have this title problem. The journal requires the titles to be CAPITALISED, except for the acronyms. I'm currently using backticks`...`to wrap it and replace

Re: [NTG-context] Is there a "smart" capitalisation implementation?

2022-05-08 Thread Hans Hagen via ntg-context
the acronyms. I'm currently using backticks`...`to wrap it and replace it with\egroup ...\WORD\bgroup{} with lpeg. This kinda works, but that's so ugly. Besides, the actual story is that I also want to add markdown as an option, so the backticks actually have meanings. I also check

[NTG-context] Is there a "smart" capitalisation implementation?

2022-05-07 Thread Zhichu via ntg-context
.` to wrap it and replace it with \egroup ...\WORD\bgroup{} with lpeg. This kinda works, but that's so ugly. Besides, the actual story is that I also want to add markdown as an option, so the backticks actually have meanings. I also checked the typo-cap.lua file to get a clue. But I used

Re: [NTG-context] How do I define a smallcaps font?

2022-04-25 Thread Joel via ntg-context
t;      \definetypeface[garamond]                  >   [mm][math][modern][default] > \stoptypescript > > \starttext > >      This is regular text. > >      {\smallcaps This should be in smallcaps.} > >      {\WORD This should be regular text, but capitalized, not r

Re: [NTG-context] How do I define a smallcaps font?

2022-04-24 Thread Henning Hraban Ramm via ntg-context
is should be in smallcaps.}     {\WORD This should be regular text, but capitalized, not really smallcaps.} \stoptext SerifCaps etc. works with the traditional \sc, don’t know about \smallcaps. Are you sure your fonts are found? mtxrun --script fonts --list --all --pattern=EBGaramond If your r

[NTG-context] How do I define a smallcaps font?

2022-04-24 Thread Joel via ntg-context
peface[garamond]                    [ss][sans][garamond][default]     \definetypeface[garamond]                    [mm][math][modern][default] \stoptypescript \starttext     This is regular text.     {\smallcaps This should be in smallcaps.}     {\WORD This should be regular text, but capitalized, not r

[NTG-context] Why can I no longer place \input inside table after update?

2022-04-23 Thread Joel via ntg-context
Term} \NC {\bf Definition} \NC\NR". I also tried defining a macro earlier in the document... \define[2]\tablewordis{%     \NC \NC \NC\NR     \NC #1 \NC #2 \NC\NR } ...then placing that in test2.tex, e.g.: \tablewordis{my word}{my definition} I get the error: " The file ended when scann

Re: [NTG-context] Word wrap of 'part' titles

2022-04-18 Thread Bruce Horrocks via ntg-context
> On 18 Apr 2022, at 22:10, Wolfgang Schuster via ntg-context > wrote: > > Bruce Horrocks via ntg-context schrieb am 18.04.2022 um 22:46: >> In the MWE below the 'part' title is centred but on one line only and, >> because it is a long title, the beginning and end are lost off the sides of >

[NTG-context] How to create a more human-readable syntax for displaying workbook activities?

2022-04-18 Thread Joel via ntg-context
he workbook activity "Activity B". The problem comes in that some activities have varied versions. Just as an example, "Activity C might be a crossword puzzle in some chapters, but a word search in other chapters. My poor solution has been to use registercyclist: \define\altCa{pri

Re: [NTG-context] Word wrap of 'part' titles

2022-04-18 Thread Aditya Mahajan via ntg-context
On Mon, 18 Apr 2022, Wolfgang Schuster via ntg-context wrote: > Bruce Horrocks via ntg-context schrieb am 18.04.2022 um 22:46: > > In the MWE below the 'part' title is centred but on one line only and, > because it is a long title, the beginning and end are lost off the sides of > the page. > > >

Re: [NTG-context] Word wrap of 'part' titles

2022-04-18 Thread Wolfgang Schuster via ntg-context
Bruce Horrocks via ntg-context schrieb am 18.04.2022 um 22:46: In the MWE below the 'part' title is centred but on one line only and, because it is a long title, the beginning and end are lost off the sides of the page. If it were a 'chapter' title then I could insert '\\' to cause a line break

[NTG-context] Word wrap of 'part' titles

2022-04-18 Thread Bruce Horrocks via ntg-context
In the MWE below the 'part' title is centred but on one line only and, because it is a long title, the beginning and end are lost off the sides of the page. If it were a 'chapter' title then I could insert '\\' to cause a line break at that point. However this does not seem to work for 'part'.

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

2022-04-15 Thread Jeong Dal via ntg-context
ng. > >> Thanks to Luis and Bruce for their suggestions. >> Best Wishes >> Keith McKay > > — > Bruce Horrocks > Hampshire, UK > > > > -- > > Message: 4 > Date: Wed, 13 Apr 2022 07:37:58 +053

Re: [NTG-context] Proper formatting of itemized bullets in ConTeXt

2022-04-12 Thread śrīrāma via ntg-context
ay' is to use \citem (comma item) and \pitem (period > item) as required. cleaned up the example – %% start example \def\citem{\item\AfterPar{\hspace[-normal],}\GetPar} \def\pitem{\item\AfterPar{\hspace[-normal].}\GetPar} \defineitemgroup [pitemize] [command=\Word] \

Re: [NTG-context] Proper formatting of itemized bullets in ConTeXt

2022-04-12 Thread śrīrāma via ntg-context
pace[-normal].}\GetPar} \defineitemgroup [pitemize] [command=\Word,numberconversion=words] \starttext \startpitemize[n] \citem first item \citem second item \citem third item \pitem fourth item \stoppitemize

Re: [NTG-context] Proper formatting of itemized bullets in ConTeXt

2022-04-12 Thread śrīrāma via ntg-context
xample \defineitemgroup [pitemize] [command=\Word] \define\citem{% \incrementnumber[itemgroup:pitemize]% \sym{\symbol[\currentitemgroupsymbol]}% \groupedcommand{}{,}% } \define\pitem{% \incrementnumber[itemgroup:pitemize]% \sym{\symbol[\currentitemgroupsymbol]}%

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

2022-04-02 Thread A A via ntg-context
-spell-check-package-for-latex> > post > suggests using *\loadspellchecklist. *However, on of the arguments to > this command includes a text file listing - and brace yourself - *all of > the correctly spelled words*. I find this both an amusing and tragic > proposition, since I b

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

2022-04-02 Thread Alain Delmotte via ntg-context
all of the correctly spelled words. I find this both an amusing and tragic proposition, since I basically need to spellcheck based on every word in a given language. What options are out there for someone who would like to

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

2022-04-02 Thread A A via ntg-context
ourself - *all of the correctly spelled words*. I find this both an amusing and tragic proposition, since I basically need to spellcheck based on *every word in a given language.* What options are out there for someone who would like to do serious spellchecking using ConTeXt on Windows platform, u

Re: [NTG-context] new upload / more math

2022-04-01 Thread Willi Egger via ntg-context
a_1 \NC b_1 \NC c_1 \NR >>> \NC a_2 \NC b_2 \NC c_2 \NR >>> \NC a_3 \NC b_3 \NC c_3 \NR >>> \stopxıɹʇɐɯ >>> \stopformula >>> for rotation matrices. This was demanded for some advanced math >>> courses that Mikael teaches. It might inspire use

Re: [NTG-context] new upload / more math

2022-04-01 Thread jdh via ntg-context
that suits their own obscure but nevertheless interesting > > math. > > At some point we realized that, with (also) scientific publishers > > (of math journals) moving to MS Word and Indesign, we operate in a > > rather peculiar niche and the fact that we use an upgraded and

Re: [NTG-context] new upload / more math

2022-04-01 Thread Henning Hraban Ramm via ntg-context
users to come up with demands that suits their own obscure but nevertheless interesting math. At some point we realized that, with (also) scientific publishers (of math journals) moving to MS Word and Indesign, we operate in a rather peculiar niche and the fact that we use an upgraded and more

[NTG-context] new upload / more math

2022-04-01 Thread Hans Hagen via ntg-context
users to come up with demands that suits their own obscure but nevertheless interesting math. At some point we realized that, with (also) scientific publishers (of math journals) moving to MS Word and Indesign, we operate in a rather peculiar niche and the fact that we use an upgraded and more

Re: [NTG-context] Force a hyphenation

2022-03-16 Thread Henning Hraban Ramm via ntg-context
Am 16.03.22 um 16:48 schrieb Willi Egger via ntg-context: Hi, at the moment I am dealing with a German text. Although I have \mainlanguage[de] in the preamble the word 'des Eiweißes' is hyphenated as 'des Eiwei-ßes'. Of course this should be 'des Eiweis-ses'. Ho

Re: [NTG-context] Force a hyphenation

2022-03-16 Thread Thomas A. Schmitz via ntg-context
tg-context wrote: Hi, at the moment I am dealing with a German text. Although I have \mainlanguage[de] in the preamble the word 'des Eiweißes' is hyphenated as 'des Eiwei-ßes'. Of course this should be 'des Eiweis-ses'. How can I make sure that ConTeXt is hyphena

Re: [NTG-context] Force a hyphenation

2022-03-16 Thread Hans Hagen via ntg-context
On 3/16/2022 4:48 PM, Willi Egger via ntg-context wrote: Hi, at the moment I am dealing with a German text. Although I have \mainlanguage[de] in the preamble the word 'des Eiweißes' is hyphenated as 'des Eiwei-ßes'. Of course this should be 'des Eiweis-ses'. Ho

[NTG-context] Force a hyphenation

2022-03-16 Thread Willi Egger via ntg-context
Hi, at the moment I am dealing with a German text. Although I have \mainlanguage[de] in the preamble the word 'des Eiweißes' is hyphenated as 'des Eiwei-ßes'. Of course this should be 'des Eiweis-ses'. How can I make sure that ConTeXt is hyphenating this

Re: [NTG-context] help with facing page image

2022-03-07 Thread jbf via ntg-context
e{10}{ \startchapter[title={Chapter \convertnumber{word}{\recurselevel}}] \input knuth \ifnum\headnumber[chapter]=5 {\bfd five} \fi \blank \input tufte \blank \input ward \blank \ifnum\recurselevel=5 \page \i

Re: [NTG-context] help with facing page image

2022-03-07 Thread jbf via ntg-context
mpty]} \stopsetups \setuphead [chapter] [page=yes, before=\directsetup{chapter:before}, aftersection=\directsetup{chapter:after}] \starttext \dorecurse{10}{ \startchapter[title={Chapter \convertnumber{word}{\recurselevel}}] \input knuth \ifnum\h

Re: [NTG-context] help with facing page image

2022-03-06 Thread śrīrāma via ntg-context
e{10}{ \startchapter[title={Chapter \convertnumber{word}{\recurselevel}}] \input knuth \ifnum\headnumber[chapter]=5 {\bfd five} \fi \blank \input tufte \blank \input ward \blank \ifnum\recurselevel=5 \page \input zapf

Re: [NTG-context] help with facing page image

2022-03-06 Thread jbf via ntg-context
{\page[empty]} \stopsetups \setuphead [chapter] [page=yes, before=\directsetup{chapter:before}, aftersection=\directsetup{chapter:after}] \starttext \dorecurse{10}{ \startchapter[title={Chapter \convertnumber{word}{\recurselevel}}] \input knuth

Re: [NTG-context] help with facing page image

2022-03-06 Thread śrīrāma via ntg-context
\startchapter[title={Chapter \convertnumber{word}{\recurselevel}}] \input knuth \blank \input tufte \blank \input ward \blank \ifnum\recurselevel=5 \page \input zapf \input zapf \fi \stopchapter } \stopte

Re: [NTG-context] help with facing page image

2022-03-06 Thread śrīrāma via ntg-context
\startsetups chapter:after \doifoddpageelse{} {\page[empty]} \stopsetups \setuphead [chapter] [page=yes, before=\directsetup{chapter:before}, aftersection=\directsetup{chapter:after}] \starttext \dorecurse{10}{ \startchapter[title={Chapter \convertnumber{word}{\recu

Re: [NTG-context] Transliteration

2022-02-03 Thread Hans Hagen via ntg-context
sliteration tables ["foo"] = "oof" and such and there is in the next version also an exception mechanism that permits clone a transliteration and add exceptions There is another issue if one wants to use a dropcap and the rest of that first word, and several following wo

[NTG-context] Transliteration

2022-02-03 Thread Ivan Pešić via ntg-context
ng the patterns for Serbian cyrillic and latin. There is another issue if one wants to use a dropcap and the rest of that first word, and several following words are to be typeset in small caps. If that first letter is Љ (or other two letters that transliterate as digraphs), then the second letter

Re: [NTG-context] sorting for particular sub entries to register

2022-02-01 Thread jbf via ntg-context
ulian, How about using the keys in every instance? \setupregister[index][n=1,method={zc,pc,zm,pm,uc},style=WORD] \defineprocessor[special][style=italic] \starttext P\index[Plenary+periti]{Plenary Council+{\it periti} (experts)} B\index[Plenary+beriti]{Plenary Council+{\it beriti} (experts)} A\in

Re: [NTG-context] sorting for particular sub entries to register

2022-01-31 Thread Robert via ntg-context
d I have many instances, > 40 or more in some cases). However, I did not ask for a 'simple' solution, > just a solution! Thank you. > > Julian > > On 1/2/22 11:09, Adam Reviczky wrote: >> Hi Julian, >> >> How about using the keys in every i

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