[NTG-context] Tex capacity exceeded...

2022-03-17 Thread jbf via ntg-context
Thanks Hans, and Rik. Perhaps I need to take a much closer look at this file to see if I have created some grouping issues. The removal of the .tuc file is a very handy tip that I hadn't thought of, and I assume it is associated with the way Hans put it, namely, 'looks like you load the same

Re: [NTG-context] TeX capacity exceeded.... but....

2022-03-17 Thread Rik Kabel via ntg-context
On 2022-03-17 18:14, jbf via ntg-context wrote: I'd like to understand what is happening in this particular instance: While playing with a suggestion to a recent request (re \currentlistentrynumber etc.) I suddenly got a compiling error: TeX capacity exceeded, sorry [file=2000]. I returned

Re: [NTG-context] TeX capacity exceeded.... but....

2022-03-17 Thread Hans Hagen via ntg-context
On 3/17/2022 11:14 PM, jbf via ntg-context wrote: I'd like to understand what is happening in this particular instance: While playing with a suggestion to a recent request (re \currentlistentrynumber etc.) I suddenly got a compiling error: TeX capacity exceeded, sorry [file=2000]. I

[NTG-context] TeX capacity exceeded.... but....

2022-03-17 Thread jbf via ntg-context
I'd like to understand what is happening in this particular instance: While playing with a suggestion to a recent request (re \currentlistentrynumber etc.) I suddenly got a compiling error: TeX capacity exceeded, sorry [file=2000]. I returned everything to how it was before I was trying out

Re: [NTG-context] TeX capacity exceeded

2021-05-19 Thread Hans Hagen
On 5/19/2021 6:49 PM, Thomas A. Schmitz wrote: On 19.05.21 18:34, Hans Hagen wrote: Can you check the latest upload? You should be able to go way higher. Yes, with 2021.05.19 18:22, the file compiles again in lmtx! I'm also trying your suggestions for improving the Lua code and rethinking

Re: [NTG-context] TeX capacity exceeded

2021-05-19 Thread Thomas A. Schmitz
On 19.05.21 18:34, Hans Hagen wrote: Can you check the latest upload? You should be able to go way higher. Yes, with 2021.05.19 18:22, the file compiles again in lmtx! I'm also trying your suggestions for improving the Lua code and rethinking my tables for analyzing the vocabulary. Thank

Re: [NTG-context] TeX capacity exceeded

2021-05-19 Thread Hans Hagen
On 5/17/2021 11:43 PM, Thomas A. Schmitz wrote: Hi all, I have a rather large (almost 120,000 lines) xml file, processing pulls in another large xml file. The project compiles under mkiv; with lmtx, I get tex error   > tex error on line 8 in file : TeX capacity exceeded, sorry

Re: [NTG-context] TeX capacity exceeded

2021-05-18 Thread Hans Hagen
On 5/17/2021 11:43 PM, Thomas A. Schmitz wrote: Is texmfcnf.lua still the configuration file I need to look at for this kind of problem? Which variable could I change? Normally not needed but this is the section for luatex: ["luatex.errorline"] =250, -- no need to change

Re: [NTG-context] TeX capacity exceeded

2021-05-18 Thread Hans Hagen
On 5/17/2021 11:43 PM, Thomas A. Schmitz wrote: Hi all, I have a rather large (almost 120,000 lines) xml file, processing pulls in another large xml file. The project compiles under mkiv; with lmtx, I get tex error   > tex error on line 8 in file : TeX capacity exceeded, sorry

[NTG-context] TeX capacity exceeded

2021-05-17 Thread Thomas A. Schmitz
Hi all, I have a rather large (almost 120,000 lines) xml file, processing pulls in another large xml file. The project compiles under mkiv; with lmtx, I get tex error > tex error on line 8 in file : TeX capacity exceeded, sorry [reference count=32767] \reallanguagetag just twenty

[NTG-context] TeX capacity exceeded - in Lua block - why?

2015-07-16 Thread Procházka Lukáš Ing . - Pontex s . r . o .
Hello, why this code: \def\GG{\ifmmode G_G\else$\GG$\fi} \starttext \GG $\GG$ % OK \startitemize[][] \sym{\GG} \GG % OK \stopitemize \startluacode context.startitemize() context.sym([[\GG]]) context(Abc) context.stopitemize() \stopluacode \stoptext

Re: [NTG-context] TeX capacity exceeded - in Lua block - why?

2015-07-16 Thread Procházka Lukáš Ing . - Pontex s . r . o .
Hello, On Thu, 16 Jul 2015 11:03:05 +0200, luigi scarso luigi.sca...@gmail.com wrote: \def\GG{\ifmmode G_G\else$\GG$\fi} means define the macro \GG as G_G if mmmod is true, else as \GG It's clear that you always are in a situation where mmod is true, then \GG is replaced with G_G Well, I

Re: [NTG-context] TeX capacity exceeded - in Lua block - why?

2015-07-16 Thread Hans Hagen
On 7/16/2015 10:55 AM, Procházka Lukáš Ing. - Pontex s. r. o. wrote: Hello, On Thu, 16 Jul 2015 10:27:48 +0200, Hans Hagen pra...@wxs.nl wrote: On 7/16/2015 10:20 AM, Procházka Lukáš Ing. - Pontex s. r. o. wrote: Hello, why this code: \def\GG{\ifmmode G_G\else$\GG$\fi} because in

Re: [NTG-context] TeX capacity exceeded - in Lua block - why?

2015-07-16 Thread Hans Hagen
On 7/16/2015 12:13 PM, Procházka Lukáš Ing. - Pontex s. r. o. wrote: Hello, On Thu, 16 Jul 2015 11:03:05 +0200, luigi scarso luigi.sca...@gmail.com wrote: \def\GG{\ifmmode G_G\else$\GG$\fi} means define the macro \GG as G_G if mmmod is true, else as \GG It's clear that you always are in a

Re: [NTG-context] TeX capacity exceeded - in Lua block - why?

2015-07-16 Thread Hans Hagen
On 7/16/2015 12:13 PM, Procházka Lukáš Ing. - Pontex s. r. o. wrote: This seems to be best solution - exactly what I wanted to achieve: \def\GG{\mathematics{G_G}}. compare these two: \def\GG{\ifmmode G_G\else$\GG$\fi} \starttext \edef\x{\GG} \stoptext and \unexpanded\def\GG{\ifmmode

Re: [NTG-context] TeX capacity exceeded - in Lua block - why?

2015-07-16 Thread luigi scarso
On Thu, Jul 16, 2015 at 10:55 AM, Procházka Lukáš Ing. - Pontex s. r. o. l...@pontex.cz wrote: Hello, On Thu, 16 Jul 2015 10:27:48 +0200, Hans Hagen pra...@wxs.nl wrote: On 7/16/2015 10:20 AM, Procházka Lukáš Ing. - Pontex s. r. o. wrote: Hello, why this code: \def\GG{\ifmmode

Re: [NTG-context] TeX capacity exceeded - in Lua block - why?

2015-07-16 Thread Hans Hagen
On 7/16/2015 10:20 AM, Procházka Lukáš Ing. - Pontex s. r. o. wrote: Hello, why this code: \def\GG{\ifmmode G_G\else$\GG$\fi} because in math mode \GG expands \GG which expands \GG maybe you mean: \def\GG{\ifmmode G_G\else$GG$\fi} \starttext \GG $\GG$ % OK

Re: [NTG-context] TeX capacity exceeded - in Lua block - why?

2015-07-16 Thread Procházka Lukáš Ing . - Pontex s . r . o .
Hello, On Thu, 16 Jul 2015 10:27:48 +0200, Hans Hagen pra...@wxs.nl wrote: On 7/16/2015 10:20 AM, Procházka Lukáš Ing. - Pontex s. r. o. wrote: Hello, why this code: \def\GG{\ifmmode G_G\else$\GG$\fi} because in math mode \GG expands \GG which expands \GG I want to just pass

Re: [NTG-context] TeX capacity exceeded - in Lua block - why?

2015-07-16 Thread luigi scarso
On Thu, Jul 16, 2015 at 12:13 PM, Procházka Lukáš Ing. - Pontex s. r. o. l...@pontex.cz wrote: Hello, On Thu, 16 Jul 2015 11:03:05 +0200, luigi scarso luigi.sca...@gmail.com wrote: \def\GG{\ifmmode G_G\else$\GG$\fi} means define the macro \GG as G_G if mmmod is true, else as \GG It's

Re: [NTG-context] TeX capacity exceeded, sorry (was: mkiv: 'extras' option in cite command = error)

2011-07-22 Thread Taco Hoekwater
On 07/22/2011 12:33 AM, Christian wrote: system tex error on line 1 in file example.mkiv: TeX capacity exceeded, sorry [ ... 1 \setupbibtex[database=example] 2 \setuppublications[alternative=apa,refcommand=data] 3 \starttext 4 Let's test adding specific page numbers in the

Re: [NTG-context] TeX capacity exceeded, sorry (was: mkiv: 'extras' option in cite command = error)

2011-07-22 Thread Christian
system tex error on line 1 in file example.mkiv: TeX capacity exceeded, sorry [ ... 1 \setupbibtex[database=example] 2 \setuppublications[alternative=apa,refcommand=data] 3 \starttext 4 Let's test adding specific page numbers in the cite 5

Re: [NTG-context] TeX capacity exceeded, sorry (was: mkiv: 'extras' option in cite command = error)

2011-07-22 Thread Thomas A. Schmitz
On 07/22/2011 12:22 PM, Christian wrote: How do I apply this patch? I changed (inserted the code above) saved C:\ConTeXt\tex\texmf-context\tex\context\base\bibl-tra.mkiv so that the lines 945–954 now look like this: Did you regenerate the format? Thomas

Re: [NTG-context] TeX capacity exceeded, sorry (was: mkiv: 'extras' option in cite command = error)

2011-07-22 Thread Christian
How do I apply this patch? I changed (inserted the code above) saved C:\ConTeXt\tex\texmf-context\tex\context\base\bibl-tra.mkiv so that the lines 945–954 now look like this: Did you regenerate the format? I did run mtxrun --generate context --generate luatools --generate and compiled

Re: [NTG-context] TeX capacity exceeded, sorry (was: mkiv: 'extras' option in cite command = error)

2011-07-22 Thread Wolfgang Schuster
Am 22.07.2011 um 15:03 schrieb Christian: How do I apply this patch? I changed (inserted the code above) saved C:\ConTeXt\tex\texmf-context\tex\context\base\bibl-tra.mkiv so that the lines 945–954 now look like this: Did you regenerate the format? I did run mtxrun --generate context

Re: [NTG-context] TeX capacity exceeded, sorry (was: mkiv: 'extras' option in cite command = error)

2011-07-22 Thread Christian
How do I apply this patch? I changed (inserted the code above) saved C:\ConTeXt\tex\texmf-context\tex\context\base\bibl-tra.mkiv so that the lines 945–954 now look like this: Did you regenerate the format? I did run mtxrun --generate context --generate luatools --generate

[NTG-context] TeX capacity exceeded, sorry (was: mkiv: 'extras' option in cite command = error)

2011-07-21 Thread Christian
Example files: ---example.bib--- @BOOK{Eijkhout1991, title = {\TeX\ by Topic. A \TeX nician's Reference}, publisher = {Addison-Wesley}, year = {1991}, author = {Victor Eijkhout}, address = {London}, keywords = {general}, } ---EOF--- ---example.mkiv---

Re: [NTG-context] TeX capacity exceeded

2008-06-03 Thread Taco Hoekwater
M.guravage wrote: Greetings, While updating my minimal ConTeXt instance from version 2008.01.28 to 2008.05.21, the pdftex formats failed to build with the error: ./texmf-linux/web2c/pdftex/cont-en.log:! TeX capacity exceeded, sorry [pattern memory=25]. Has anyone else experienced

[NTG-context] TeX capacity exceeded

2008-06-03 Thread M.guravage
Greetings, While updating my minimal ConTeXt instance from version 2008.01.28 to 2008.05.21, the pdftex formats failed to build with the error: ./texmf-linux/web2c/pdftex/cont-en.log:! TeX capacity exceeded, sorry [pattern memory=25]. Has anyone else experienced this, and can you suggest a

[NTG-context] 'TeX capacity exceeded' problem

2007-10-11 Thread Jeong Dalyoung
Dear all, Finally, luatools is working(gwTeX, Mac OSX 10.4). Following the instruction given by Thomas, I succeeded to run 'luatools --generate' but I got an error when I run 'luatools --ini --compile --verbose cont-en'. There is a memory problem for the languages. Following the suggestion,

Re: [NTG-context] 'TeX capacity exceeded' problem

2007-10-11 Thread Hans Hagen
Jeong Dalyoung wrote: Dear all, Finally, luatools is working(gwTeX, Mac OSX 10.4). Following the instruction given by Thomas, I succeeded to run 'luatools --generate' but I got an error when I run 'luatools --ini --compile --verbose cont-en'. There is a memory problem for the

Re: [NTG-context] TeX capacity exceeded with my macros

2006-12-18 Thread luigi scarso
On 12/15/06, Hans Hagen [EMAIL PROTECTED] wrote: luigi scarso wrote: I have a TeX capacity exceeded message. I think I'm doing too much, but before to try another way I would know if I should enlarge context. This macro is called ~ 70 000 times

[NTG-context] TeX capacity exceeded with my macros

2006-12-15 Thread luigi scarso
I have a TeX capacity exceeded message. I think I'm doing too much, but before to try another way I would know if I should enlarge context. This macro is called ~ 70 000 times \SetArtValue{1:330128:1007:336:1:d}{} PS No problem if none answer to this message.

Re: [NTG-context] TeX capacity exceeded with my macros

2006-12-15 Thread andrea valle
Luigi, I'm totally ignorant but I know for sure there are some messages on the list on the topic (one thread started by me). Maybe it could be helpful to check the archives? Best -a- On 15 Dec 2006, at 16:55, luigi scarso wrote: I have a TeX capacity exceeded message. I think I'm doing

Re: [NTG-context] TeX capacity exceeded with my macros

2006-12-15 Thread Hans Hagen
luigi scarso wrote: I have a TeX capacity exceeded message. I think I'm doing too much, but before to try another way I would know if I should enlarge context. This macro is called ~ 70 000 times \SetArtValue{1:330128:1007:336:1:d}{} PS No problem if none answer to this message.

Re: [NTG-context] TeX capacity exceeded with metafun

2006-03-14 Thread Hans Hagen
andrea valle wrote: Console is extremely slow in processing the file including the that is an os issue (maybe choose another font for your console) i have no speed problems on the windows and linux boxes Hans -

Re: [NTG-context] TeX capacity exceeded with metafun

2006-03-13 Thread Hans Hagen
andrea valle wrote: Thanks Hans So: 1. If I understand, I have to edit context.cnf, right? no, texmf.cnf ; context.tmf is an example of what i use here; (you can try copying context.fmf to you texmf-local/web2c path) 2. It may work, but non necessarily. It is thus possible that I

Re: [NTG-context] TeX capacity exceeded with metafun

2006-03-13 Thread andrea valle
Thanks Hans, I made some tweaking with values (quasi-randomly...). Console is extremely slow in processing the file including the MPGraphic (I thought many times it hanged, then letting it run without looking I discovered some minutes after that it was still working). Looking at the the

Re: [NTG-context] TeX capacity exceeded with metafun

2006-03-12 Thread andrea valle
Now, as far as I understand it seems that I have to edit texmf.cnf. In any case, I do not know in which way... Thanks! -a- On 12 Mar 2006, at 11:19, andrea valle wrote: Hi to all, I'm plotting 10,000 little squares thus exceeding TeX capacity. I was going to modify context.cnf

Re: [NTG-context] TeX capacity exceeded with metafun

2006-03-12 Thread Hans Hagen
andrea valle wrote: Now, as far as I understand it seems that I have to edit texmf.cnf. In any case, I do not know in which way... Thanks! -a- On 12 Mar 2006, at 11:19, andrea valle wrote: Hi to all, I'm plotting 10,000 little squares thus exceeding TeX capacity. I was

Re: [NTG-context] TeX capacity exceeded with metafun

2006-03-12 Thread andrea valle
Thanks Hans So: 1. If I understand, I have to edit context.cnf, right? 2. It may work, but non necessarily. It is thus possible that I cannot solve definitively the problem. How do I choose a clever number to set? 3. Ehm... No, I haven't regenerated the format. How can I do it? Thanks Best -a-

Re: [NTG-context] TeX capacity exceeded with metafun

2006-03-12 Thread andrea valle
I edited the file doubling the 3 values But in context.cnf I have: main_memory.context = 200 main_memory.mpost= 300 main_memory.metafun = 300 did you regenerate the formats? Then I ran: texexec --make (right?) But nothing changed Best -a-

[NTG-context] TeX capacity exceeded, sorry [PDF memory size

2005-06-13 Thread Alan Bowen
I had been processing a rather complicated set of pages successfully until late this morning. Now I get this (edited) error message: This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (format=cont-en 2005.6.10) 13 JUN 2005 13:34 entering extended mode

Re: [NTG-context] TeX capacity exceeded, sorry [PDF memory size

2005-06-13 Thread Hartmut Henkel
On Mon, 13 Jun 2005, Alan Bowen wrote: I had been processing a rather complicated set of pages successfully until late this morning. Now I get this (edited) error message: ! TeX capacity exceeded, sorry [PDF memory size (pdf_mem_size)=65536]. in file teTeX/share/texmf/web2c/texmf.cnf you can

Re: [NTG-context] TeX capacity exceeded, sorry [PDF memory size

2005-06-13 Thread Taco Hoekwater
Alan Bowen wrote: I had been processing a rather complicated set of pages successfully So, how may I increase pdf_mem_size and by how much should I do this? By editting texmf.cnf (enlarging or adding a pdf_mem_size setting) You can have a look at context.cnf for example settings:

Re: [NTG-context] TeX capacity exceeded, sorry [PDF memory size

2005-06-13 Thread Alan Bowen
Helmut and Taco Many thanks for the prompt solution to my pdf_mem_size problem. I added the line pdf_mem_size = 50 to texfm.cnf (after checking context.cnf) as instructed, and the file is now processing happily as it should. Very best, Alan On Jun 13, 2005, at 4:17 PM, Taco

[NTG-context] TeX capacity exceeded, sorry [save size=40000] error

2004-09-02 Thread Samuel Pelletier
Hi, I have a long (4333 lines) natural table document that refuse to compose. Initialy, I had an TeX capacity exceeded message for hash size but it seems that I figured how to bypass it by changing the texmf.cnf file. Now I have a ! TeX capacity exceeded, sorry [save size=4]. error and I

Re: [NTG-context] TeX capacity exceeded, sorry [save size=40000] error

2004-09-02 Thread Taco Hoekwater
Hi Samuel, On Thu, 2 Sep 2004 10:49:55 -0400, Samuel wrote: save_size= 15 % was 5 % for saving values It is not possible to make save_size larger than 4 in the current executables, no matter how hard you try (it is a compile-time limit in the web2c sources).

Re: [NTG-context] TeX capacity exceeded, sorry [save size=40000] error

2004-09-02 Thread Hans Hagen
Samuel Pelletier wrote: Hi, I have a long (4333 lines) natural table document that refuse to compose. Initialy, I had an TeX capacity exceeded message for hash size but it seems that I figured how to bypass it by changing the texmf.cnf file. since this is a multiple page table, can't you split

Re: [NTG-context] TeX capacity exceeded

2004-07-12 Thread Willi Egger
Hi, May be it is a good idea to look into the version of TEX and Context you use. you can change the memory assignments in the texmf.cnf (web2c directory of the TDS). In a tree, which might be a yaer old I found the following entries for ConTeXt. The reason for this old cnf file is, that in

[NTG-context] TeX capacity exceeded

2004-07-10 Thread jimarin
After some time off...back in charge... I have got this line from texexec when trying to put a logo in: ! TeX capacity exceeded, sorry [hash size=35000]. can the hash size be changed? thanks !! - Jose Ignacio Marín Alberdi Bayes Inference,

Re: [NTG-context] TeX capacity exceeded, sorry [hash size=35000]

2003-12-09 Thread Sytse Knypstra
As I got no solutions to this problem, my conclusion is that it is not possible to enlarge the hash size parameter in MikTeX. For serious work with ConTeXt I should therefore drop MikTeX and take e.g. the TeXLive distribution. Is this a valid conclusion? Sytse At 12/5/2003 10:43, I wrote: Hi,

Re: [NTG-context] TeX capacity exceeded, sorry [hash size=35000]

2003-12-09 Thread Mari Voipio
On Tue, 9 Dec 2003, Sytse Knypstra wrote: As I got no solutions to this problem, my conclusion is that it is not possible to enlarge the hash size parameter in MikTeX. Is this a valid conclusion? No. I've successfully done this once, but then I switched over to TeXLive for other reasons.

Re[2]: [NTG-context] TeX capacity exceeded in MikTeX

2003-09-29 Thread Giuseppe Bilotta
Monday, September 29, 2003 ^Nitram^ wrote: Hi, ! TeX capacity exceeded, sorry [hash size=35000]. In MiKTeX the file is miktex.ini, not texmf.cnf; you should find a hash_size= entry there. There was no entry like this ;( But I created it (and also hash_size_def) in section MikTeX,

Re: [NTG-context] TeX capacity exceeded in MikTeX

2003-09-29 Thread Hans Hagen
At 11:00 29/09/2003 +0200, you wrote: Hi, ! TeX capacity exceeded, sorry [hash size=35000]. In MiKTeX the file is miktex.ini, not texmf.cnf; you should find a hash_size= entry there. There was no entry like this ;( But I created it (and also hash_size_def) in section MikTeX, pdfeTeX... I

Re: [NTG-context] TeX capacity exceeded in MikTeX

2003-09-29 Thread walter kehowski
The likely problem is an error on your part: a mismatched parenthesis or some other difficult to find mistake that occassionally doesn't warn you until you see a TeX capacity exceeded.. message. You might have to go through the usual process of starting with a piece of your document, compiling it.

Re: [NTG-context] TeX capacity exceeded in MikTeX

2003-09-28 Thread Willi Egger
main_memory.mpost= 200 pool_size.mpost = 20 Willi - Original Message - From: ^Nitram^ [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, September 28, 2003 10:56 AM Subject: [NTG-context] TeX capacity exceeded in MikTeX Hi, I have the same problem as was reported