Re: [NTG-context] [t-rst] inclusion into Minimals, i. e. installation using `./first-setup.sh --extras='t-rst'`

2011-05-07 Thread Mojca Miklavec
Then it would call the VCS to checkout the tip (or latest tag or whatever). Each should have a “.install.lua” in the base dir containing instructions about where the files should go. (Best thing is, probably, that no compilation is necessary because everything’s plain text.) A local register

Re: [NTG-context] Dolly's Underware ?

2011-03-28 Thread Hans Hagen
On 28-3-2011 8:07, Steffen Wolfrum wrote: No, not necessarily. Just run the same file (see below) with MkII: Dolly with Underware, fine. well, mkii is not a reference for this and mkiv shres no register code with it; also, you can consider the fact that mkii does not ignore faulty entries

Re: [NTG-context] Dolly's Underware ?

2011-03-28 Thread Steffen Wolfrum
Am 28.03.2011 um 21:26 schrieb Hans Hagen: On 28-3-2011 8:07, Steffen Wolfrum wrote: No, not necessarily. Just run the same file (see below) with MkII: Dolly with Underware, fine. well, mkii is not a reference for this and mkiv shres no register code with it; also, you can consider

[NTG-context] post_linebreak_filter in context

2011-02-25 Thread Patrick Gundlach
/11960/how-to-register-a-callback-in-context) Thanks Patrick ___ If your question is of interest to others as well, please add an entry to the Wiki! maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo

Re: [NTG-context] [t-vim] Line numbers

2011-02-25 Thread Hans Hagen
to implement, since the complete directory tree has to be scanned to find xyz-externalfilter-abc-X.___ remains. However you can register to-be-cleaned-up temp files with luatex.registertempfile(name) (namespace might change at some point) Hans

Re: [NTG-context] post_linebreak_filter in context

2011-02-25 Thread Hans Hagen
? first put the function in some namespace, like: moduledata.mystuff = { } moduledata.mystuff.show_hyph = show_hyph then register it in the finalizer group (which is the post_linebreak stuff) nodes.tasks.appendaction(finalizers,after,moduledata.mystuff.show_hyph) (before and after are subgroups

Re: [NTG-context] [t-vim] Line numbers

2011-02-23 Thread Aditya Mahajan
posted earlier in the thread and execute context --purgeall afterwards, the files t-externalfilter-CON-0.tmp.md5 and t.tex.md5 still remain. You are right. Only the .tmp files are removed. @Hans: Can I somehow register temporary files that will be later removed by `context --purgeall`? Aditya

Re: [NTG-context] Learning LuaTeX : Invoice

2011-02-22 Thread luigi scarso
and Hennings code has also a example at the end. Yes I've seen -- register invoice items userdata.RegisterAmountItem(Some introductional text, 0) -- just text userdata.RegisterTimeItem(Learn \\LUATEX, 2.5) userdata.RegisterTimeItem(Do some calculations in \\CONTEXT, 3.5 + 7) userdata.RegisterAmountItem

Re: [NTG-context] Learning LuaTeX : Invoice

2011-02-22 Thread Henning Hraban Ramm
-- register invoice items userdata.RegisterAmountItem(Some introductional text, 0) -- just text userdata.RegisterTimeItem(Learn \\LUATEX, 2.5) userdata.RegisterTimeItem(Do some calculations in \\CONTEXT, 3.5 + 7) userdata.RegisterAmountItem(Donations to Open Source projects, 99) -- lump sum

Re: [NTG-context] changing title of register displayed with \completeregistername

2011-02-09 Thread Wolfgang Schuster
Am 09.02.2011 um 08:46 schrieb Daniel Lyons: Hi, I'm trying to get a register to show a title other than the name of the register in the code, and not having much luck. For example, \defineregister[pgtype][pgtypes] \completepgtype produces a page with the title Pgtype, when I'd

[NTG-context] (again) wrong page with \finishregisterentry

2011-02-08 Thread Steffen Wolfrum
Hi, when \finishregisterentry is set within a paragraph then the lastrealpage gets the value from the page where this respective parapgraph starts. (In the example below it is 4 instead of 5.) That is quite sad when you have long paragraphs. How can I set a register range telling me

[NTG-context] changing title of register displayed with \completeregistername

2011-02-08 Thread Daniel Lyons
Hi, I'm trying to get a register to show a title other than the name of the register in the code, and not having much luck. For example, \defineregister[pgtype][pgtypes] \completepgtype produces a page with the title Pgtype, when I'd like it to say PostgreSQL Types instead. (Also

[NTG-context] wrong page with \finishregisterentry

2011-01-30 Thread Steffen Wolfrum
Hi, when \finishregisterentry is set within a paragraph then the lastrealpage gets the value from the page where this respective parapgraph starts. (In the example below it is 4 instead of 5.) That is quite sad when you have long paragraphs. How can I set a register range telling me

Re: [NTG-context] \setupinterlinespace questions

2011-01-16 Thread Wolfgang Schuster
between lines while \setupinterlinespace[big] use these value and multiplies it by the factor “1.5”. When you place a register (e.g. your bibliography) context goes back to the fixed value for the interlinespace and the factor is ignored. When you want the bigger linedistance for your whole document

Re: [NTG-context] \setupinterlinespace questions

2011-01-16 Thread Florian Wobbe
] use these value and multiplies it by the factor “1.5”. When you place a register (e.g. your bibliography) context goes back to the fixed value for the interlinespace and the factor is ignored. Thanks for the explanation, I didn't know that the scale factor is ignored in the bibliography

Re: [NTG-context] Module Namespaces

2010-12-06 Thread Hans Hagen
On 29-11-2010 7:17, Wolfgang Schuster wrote: Am 18.11.2010 um 19:33 schrieb luigi scarso: I just want to register my namespace(s) to be sure to avoid conflicts not only for modules but also for lua code Good idea and it’s not a problem to reserve „lscarso“ for you but i ask myself which

Re: [NTG-context] Module Namespaces

2010-11-29 Thread Wolfgang Schuster
Am 18.11.2010 um 19:33 schrieb luigi scarso: I just want to register my namespace(s) to be sure to avoid conflicts not only for modules but also for lua code Good idea and it’s not a problem to reserve „lscarso“ for you but i ask myself which of these tables are available for users: userdata

Re: [NTG-context] Module Namespaces

2010-11-29 Thread Wolfgang Schuster
Am 18.11.2010 um 19:33 schrieb luigi scarso: I just want to register my namespace(s) to be sure to avoid conflicts not only for modules but also for lua code Good idea and it’s not a problem to reserve „lscarso“ for you but i ask myself which of these tables (luat-ini.lua) are available

Re: [NTG-context] Module Namespaces

2010-11-29 Thread Philipp Gesang
Hi all, On 2010-11-29 19:17:00, Wolfgang Schuster wrote: Am 18.11.2010 um 19:33 schrieb luigi scarso: I just want to register my namespace(s) to be sure to avoid conflicts not only for modules but also for lua code Good idea and it’s not a problem to reserve „lscarso“ for you but i

Re: [NTG-context] Trying to move from LaTeX to MKIV in MikTeX (Mojca Miklavec)

2010-11-23 Thread barney schwartz
! ! LuaTeX error ...ata/Roaming/MiKTeX/2.9/tex/context/base/font-def.lua:539: attempt to index field 'parameters' (a nil value) stack traceback: ...ata/Roaming/MiKTeX/2.9/tex/context/base/font-def.lua:539: in function 'register' ...ata/Roaming/MiKTeX/2.9/tex/context/base/font-ctx.lua:387: in function

Re: [NTG-context] XML pretty printer?

2010-11-21 Thread Hans Hagen
(so this targets at luigi) and can mix lua code with documentation. The second one is used by myself when documenting xml code and uses the built in parser. Now, additional pretty printers can be plugged in as well (there is a register function for that) and can have names not starting with v

Re: [NTG-context] index sort question

2010-11-19 Thread Jano Kula
in the register (according to what you want), not speaking about others, so you could get Z G I E A N L ... as an alphabet, and nobody would find anything. Jano On 11/18/2010 10:50 PM, Horacio Suarez wrote: hello all In a index, is there a way to sort the items inside a letter not alphabetically, I

Re: [NTG-context] Ugly bug with TikZ in recent ConTeXt MKIV

2010-11-18 Thread Mojca Miklavec
some magic tikz variable (or shared register) that does not get reset? I have no clue either, but this has never been a problem before and it still works perfectly in both pdfTeX and XeTeX. So something really looks suspicious on the MKIV part. I would love to help debugging, but I have zero

[NTG-context] Module Namespaces

2010-11-18 Thread luigi scarso
Nice http://wiki.contextgarden.net/Module_Namespaces Can I register lscarso[a-zA-Z]* ? -- luigi ___ 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] Module Namespaces

2010-11-18 Thread Philipp Gesang
On 2010-11-18 10:13:07, luigi scarso wrote: Nice http://wiki.contextgarden.net/Module_Namespaces Can I register lscarso[a-zA-Z]* ? Maybe we should consider an auction; in the future this could get as busy as trading domain names. Philipp -- luigi

Re: [NTG-context] Ugly bug with TikZ in recent ConTeXt MKIV

2010-11-18 Thread Hans Hagen
example. I have no clue ... maybe some magic tikz variable (or shared register) that does not get reset? I have no clue either, but this has never been a problem before and it still works perfectly in both pdfTeX and XeTeX. So something really looks suspicious on the MKIV part. After some

Re: [NTG-context] Module Namespaces

2010-11-18 Thread Wolfgang Schuster
Am 18.11.2010 um 10:13 schrieb luigi scarso: Nice http://wiki.contextgarden.net/Module_Namespaces Can I register lscarso[a-zA-Z]* ? Why? The obvious method is to use the same name for the namespace as you use for your module name or the command names, e.g. the fancybreak module has

Re: [NTG-context] Module Namespaces

2010-11-18 Thread luigi scarso
On Thu, Nov 18, 2010 at 7:08 PM, Wolfgang Schuster schuster.wolfg...@googlemail.com wrote: Am 18.11.2010 um 10:13 schrieb luigi scarso: Nice http://wiki.contextgarden.net/Module_Namespaces Can I register lscarso[a-zA-Z]* ? Why? The obvious method is to use the same name for the namespace

[NTG-context] Updating to Beta Builds of ConTeXt / LuaTeX from tlcontrib breaks MacTeX

2010-11-16 Thread Andrew Starks
and `simplefonts` as the method. `mtxrun` never has anything in its list of fonts (`mtxrun --script fonts --list --all --pattern=*` or any conceivable variation) and most font choices don't register at all, or in the odd case of Palatino, result in garbage text. I have my `OSFONTS` variable set

Re: [NTG-context] Updating to Beta Builds of ConTeXt / LuaTeX from tlcontrib breaks MacTeX

2010-11-16 Thread Mojca Miklavec
conceivable variation) and most font choices don't register at all, or in the odd case of Palatino, result in garbage text. I have my `OSFONTS` variable set to `/Library/Fonts`. But alas, for another question. I only post it here in case the two issues are related. Thanks everyone! UPDATE

Re: [NTG-context] Updating to Beta Builds of ConTeXt / LuaTeX from tlcontrib breaks MacTeX

2010-11-16 Thread Andrew Starks
=*` or any conceivable variation) and most font choices don't register at all, or in the odd case of Palatino, result in garbage text. I have my `OSFONTS` variable set to `/Library/Fonts`. But alas, for another question. I only post it here in case the two issues are related. Thanks everyone

Re: [NTG-context] register sorting

2010-11-04 Thread Steffen Wolfrum
Hi Hans, I tested all the combinations that Jano set up (see below) and additionally tried the same, but used ch instead of uc. But none of these runs gave this sorting result: East Prussia Eastern enlargement East-West Institute I would would sort it this way, but maybe I am simply wrong?

[NTG-context] register sorting

2010-10-29 Thread Steffen Wolfrum
Hi, I just installed todays beta and I am not sure if regoster sorting is working properly. Eg. I modify (see below) the example from tricky-002.tex and I would like to achieve ... accession Action Plan association But none of the four methods (before, after, first, last) gives this result!!

Re: [NTG-context] register sorting

2010-10-29 Thread Jano Kula
Hi Steffen, On 10/29/2010 10:39 PM, Steffen Wolfrum wrote: Hi, I just installed todays beta and I am not sure if regoster sorting is working properly. Eg. I modify (see below) the example from tricky-002.tex and I would like to achieve ... accession Action Plan association But none of the

Re: [NTG-context] Fwd: register broken on steffens machine

2010-10-12 Thread Hans Hagen
On 12-10-2010 1:10, Steffen Wolfrum wrote: Hi Taco, as it calls itself LuaTeX error ... maybe you could have a look at it and hopefully confirm that error? ! LuaTeX error text/tex/texmf-context/tex/context/base/sort-ini.lua:106: attempt to compare nil with number stack traceback:

Re: [NTG-context] Fwd: register broken on steffens machine

2010-10-12 Thread Steffen Wolfrum
Am 12.10.2010 um 13:18 schrieb Hans Hagen: btw, this is related to the somewhat weird feature of setting index entries at the end - i might remove that feature if it keeps interfering - When I have to deal with documents that were written in MSWord and export them to eg. TEI XML, it looks

Re: [NTG-context] register broken in latest beta!

2010-10-12 Thread Steffen Wolfrum
Am 12.10.2010 um 13:18 schrieb Hans Hagen: On 12-10-2010 1:10, Steffen Wolfrum wrote: Hi Taco, as it calls itself LuaTeX error ... maybe you could have a look at it and hopefully confirm that error? ! LuaTeX error text/tex/texmf-context/tex/context/base/sort-ini.lua:106:

[NTG-context] register broken in latest beta!

2010-10-11 Thread Steffen Wolfrum
Hi, todays beta gives an error with this test (taken from strc-reg.kmiv at line 35): \starttext \placeregister[index] test \index{aa} test \startregister[index][x]{bb} test \page test \page test \page test \stopregister[index][x] \stoptext ! LuaTeX error

Re: [NTG-context] register broken on steffens machine

2010-10-11 Thread Hans Hagen
On 11-10-2010 6:50, Steffen Wolfrum wrote: system error on line 8 in file index_ff.tex: LuaTeX error runs ok here ... maybe delete the tuc file helps? I found three invalid characters (form feed?) in strc-reg.mkiv: at line 549, 568, 632. indeed ff and there are probably lots of

Re: [NTG-context] change register entry separator

2010-10-08 Thread Jano Kula
Hello Hans, On 10/01/2010 11:20 PM, Hans Hagen wrote: On 1-10-2010 12:02, Jano Kula wrote: Hi, any way to change register entry and subentry separator from + to something else? Preferably to kanji character, so I'm sure it will not appear in the text. Entries and subentries are autoflushed

[NTG-context] Verbatim: Pascal pretty printer

2010-10-02 Thread Stefan Müller
) absolute, abstract, alias, assembler, cdecl, cppdecl, default, export, external, far, far16, forward, index, local, name, near, nostackframe, oldfpccall, override, pascal, private, protected, public, published, read, register, reintroduce, safecall, softfloat, stdcall

Re: [NTG-context] change register entry separator

2010-10-01 Thread Hans Hagen
On 1-10-2010 12:02, Jano Kula wrote: Hi, any way to change register entry and subentry separator from + to something else? Preferably to kanji character, so I'm sure it will not appear in the text. Entries and subentries are autoflushed, so it can be really anything. Other way around: I

[NTG-context] change register entry separator

2010-09-30 Thread Jano Kula
Hi, any way to change register entry and subentry separator from + to something else? Preferably to kanji character, so I'm sure it will not appear in the text. Entries and subentries are autoflushed, so it can be really anything. Other way around: I substitute + with PLUS in index terms

Re: [NTG-context] bug with columnsets in projects

2010-09-29 Thread Steffen Wolfrum
22 % 23 \startbackmatter 24 %\component register 25 \stopbackmatter 26 \stopproduct inserted text } to be read again \endgroup l.21 \stopbodymatter ? This is with MkIV. If I would use columns instead of columnsets

Re: [NTG-context] bug with columnsets in projects

2010-09-29 Thread Steffen Wolfrum
teil_4 20 %\component teil_5 21 \stopbodymatter 22 % 23 \startbackmatter 24 %\component register 25 \stopbackmatter 26 \stopproduct inserted text } to be read again \endgroup l.21 \stopbodymatter ? This is with MkIV

[NTG-context] realpage in register

2010-09-28 Thread Steffen Wolfrum
Hi, I want to set up a register that shows the number of userpage and the number of realpage (used in pdf numbering). I was thinking of something like ... \def\BothPageNumbers#1 {#1 (\realpageno[#1])} \setupregister[index][pagecommand=\BothPageNumbers] ... only, I don't know how to address

Re: [NTG-context] realpage in register

2010-09-28 Thread luigi scarso
On Tue, Sep 28, 2010 at 12:37 PM, Steffen Wolfrum cont...@st.estfiles.de wrote: Hi, I want to set up a register that shows the number of userpage and the number of realpage (used in pdf numbering). I was thinking of something like ... \def\BothPageNumbers#1 {#1 (\realpageno[#1

Re: [NTG-context] jump to PDF page

2010-09-28 Thread Steffen Wolfrum
to realpage number 6? This would be the last missing step to solve all my register problems!!! Steffen ___ 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] jump to PDF page

2010-09-28 Thread Steffen Wolfrum
it for building my own register by hand: when I have Stichwort 6 and I want add the link it would be great to say: Stichwort 6 (\goto{6}[page(6)]) ... with 6 being #1 in a pagecommand, of course. Steffen ___ If your question

Re: [NTG-context] jump to PDF page

2010-09-28 Thread Hans Hagen
need it for building my own register by hand: when I have Stichwort 6 and I want add the link it would be great to say: Stichwort 6 (\goto{6}[page(6)]) ... with 6 being #1 in a pagecommand, of course. you can add this to lpdf-ano.lua and then use realpage(123) function specials.realpage(var

Re: [NTG-context] jump to PDF page

2010-09-28 Thread Steffen Wolfrum
Am 28.09.2010 um 14:41 schrieb Hans Hagen: On 28-9-2010 2:28, Steffen Wolfrum wrote: I need it for building my own register by hand: when I have Stichwort 6 and I want add the link it would be great to say: Stichwort 6 (\goto{6}[page(6)]) ... with 6 being #1 in a pagecommand

Re: [NTG-context] jump to PDF page

2010-09-28 Thread Hans Hagen
On 28-9-2010 3:27, Steffen Wolfrum wrote: Am 28.09.2010 um 14:41 schrieb Hans Hagen: On 28-9-2010 2:28, Steffen Wolfrum wrote: I need it for building my own register by hand: when I have Stichwort 6 and I want add the link it would be great to say: Stichwort 6 (\goto{6}[page(6

Re: [NTG-context] jump to PDF page

2010-09-28 Thread Hans Hagen
On 28-9-2010 4:13, Hans Hagen wrote: On 28-9-2010 3:27, Steffen Wolfrum wrote: Am 28.09.2010 um 14:41 schrieb Hans Hagen: On 28-9-2010 2:28, Steffen Wolfrum wrote: I need it for building my own register by hand: when I have Stichwort 6 and I want add the link it would be great to say

Re: [NTG-context] jump to PDF page

2010-09-28 Thread Steffen Wolfrum
Am 28.09.2010 um 16:38 schrieb Hans Hagen: On 28-9-2010 4:13, Hans Hagen wrote: On 28-9-2010 3:27, Steffen Wolfrum wrote: Am 28.09.2010 um 14:41 schrieb Hans Hagen: On 28-9-2010 2:28, Steffen Wolfrum wrote: I need it for building my own register by hand: when I have Stichwort 6 and I

Re: [NTG-context] \definenamespace and module setup (was: Info about creating modules for beginners.)

2010-09-27 Thread Philipp Gesang
all, it’s not wikipedia; can’t hurt to have some real information.) I think it has to be up to the maintainer of module to register it on the wiki. If the module is orphaned, a regular user should be fine as well. The wiki page is written with mkiv in mind only. Now, should the module list extend

Re: [NTG-context] Tagged register

2010-09-27 Thread Hans Hagen
On 26-9-2010 8:49, Steffen Wolfrum wrote: argument \t!registerpagerange i'll fix this - Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands

Re: [NTG-context] HowUgly setupregister

2010-09-27 Thread Hans Hagen
On 26-9-2010 10:45, Steffen Wolfrum wrote: Hi, in MkII I used for formatting the index-register a command=\HowUgly \def\HowUgly#1{\doHowUgly#1\relax} \def\doHowUgly#1#2\relax{\iffirstregisterentry{\crlf \crlf $\backslash$blank[biggerblank]$\backslash$hangIndex$\{\backslash$bf #1$\}$}#2

[NTG-context] Tagged register

2010-09-26 Thread Steffen Wolfrum
the combination of a tagged pdf with collapsed register ...) Steffen === ! Undefined control sequence. system error on line 26 in file Ohnee-Titel.tex: Undefined control sequence ... 16 \starttext 17 \placeregister[index][compress=yes] \blank[2*big] 18 \page 19

[NTG-context] HowUgly setupregister

2010-09-26 Thread Steffen Wolfrum
Hi, in MkII I used for formatting the index-register a command=\HowUgly \def\HowUgly#1{\doHowUgly#1\relax} \def\doHowUgly#1#2\relax{\iffirstregisterentry{\crlf \crlf $\backslash$blank[biggerblank]$\backslash$hangIndex$\{\backslash$bf #1$\}$}#2\else#1#2\fi} In MkIV

[NTG-context] urgent help needed (registers)

2010-09-26 Thread Steffen Wolfrum
Hi, I need to shape a index register as shown in this sample page: http://werksatz.com/attachments/index_sample.pdf - the entries should be like \hangafter=1\hangindent=10pt\parindent0pt - also the subentries (like in itemize: the - stands out) - and the indicator should be the first character

Re: [NTG-context] Fonts

2010-09-10 Thread Peter Schorsch
I have to agree to Andreas... i just updated to the actual beta (for the math examples). Now mtxrun answers with following statement: ...text/tex/texmf-context/tex/context/base/font-otp.lua:512: attempt to call field 'register' (a nil value

[NTG-context] polish sorting

2010-08-18 Thread Philipp Gesang
ea.first_lower and not eb.first_lower then return -1 else return 0 end else return basicsort(ea.m, eb.m) end else -- complex variant, used in register (multiple words) local result = 0 for i=1

Re: [NTG-context] 4th ConTeXt Meeting, update

2010-08-02 Thread Patrick Gundlach
Am 02.08.2010 um 19:04 schrieb Hans Hagen: On 2-8-2010 6:52, Alan BRASLAU wrote: That is unfair for those *unable* to attend. Hey you *do* attend ... (and you can leak info as no one will check it) I had to sign an NDA before I was allowed to register Why may he leak any news

Re: [NTG-context] 4th ConTeXt Meeting, update

2010-08-02 Thread Hans Hagen
to register Why may he leak any news? :) We have different rooms with different levels of security and you may enter them all -) Hans - Hans Hagen | PRAGMA ADE Ridderstraat

Re: [NTG-context] \stretched in chapter titles in MKII

2010-07-06 Thread Tom
\determineheadnumber and \currentheadnumber work. It appears to me that \determineheadnumber places the chapter number in a register and \currentheadnumber retrieves that value. I tried inserting \numstr before \currentheadnumber. That converts the chapter number to text and doesn't mess up the TOC

[NTG-context] reminder: early-bid registration for the 4th ConTeXt Meeting

2010-05-24 Thread Jano Kula
those who are sure to come, please, do register and pay the fee within the next week (till May 31, 2010), if possible. Those who are still in doubts can drop an email to us, so we can count you in as a potential participants. Thank you and see you in Brejlov, Hans, Jano, Pavel Taco

Re: [NTG-context] Register interaction (page references) [mkIV]

2010-05-20 Thread Hans Hagen
On 18-5-2010 4:13, Thomas Floeren wrote: \setupinteraction[state=start] \startsectionblockenvironment[bodypart] \setupuserpagenumber[number=1] \stopsectionblockenvironment \starttext \startfrontmatter \page[dummy] \page[dummy] \stopfrontmatter \startbodymatter \page[dummy]

[NTG-context] Register interaction (page references) [mkIV]

2010-05-18 Thread Thomas Floeren
Hi, when I place an interactive register in mkIV, and then in the PDF click the pagenumber (in the index), it takes me to the wrong page; it seems to go to the absolute pdf page number(?). Example: \setupinteraction[state=start] \startsectionblockenvironment[bodypart

Re: [NTG-context] tooltips and glossary

2010-05-06 Thread Hans Hagen
meer aan Engels). Like many other ConTeXt command, users can define their own series of indexing, which pluses the default \index series are called register. That's the most remarkable thing I've read today. Maybe I need to be more clear. A glossary is like a little dictionary in the back

Re: [NTG-context] tooltips and glossary

2010-05-04 Thread Michael Saunders
register. That's the most remarkable thing I've read today. Maybe I need to be more clear. A glossary is like a little dictionary in the back of a book that defines the specialized words and phrases that the book uses that might not be known to the general reader. Here is a definition of glossary

Re: [NTG-context] tooltips and glossary

2010-05-04 Thread Willi Egger
seems to require commands that need a lot of redundant arguments. It also contains this gem: Like many other ConTeXt command, users can define their own series of indexing, which pluses the default \index series are called register. That's the most remarkable thing I've read today. Maybe

Re: [NTG-context] RSFS Font

2010-04-14 Thread Troy Henderson
-def.lua:539: attempt to index field 'parameters' (a nil value) stack traceback: ...mals/tex/texmf-context/tex/context/base/font-def.lua:539: in function 'register' ...mals/tex/texmf-context/tex/context/base/font-ctx.lua:386: in function 'command_2' main ctx instance:1: in main

Re: [NTG-context] RSFS Font

2010-04-14 Thread Otared Kavian
/font-def.lua:539: in function 'register' ...mals/tex/texmf-context/tex/context/base/font-ctx.lua:386: in function 'command_2' main ctx instance:1: in main chunk. \lowleveldefinefont ...lax , \relativefontid )} \edef \somefontspec

[NTG-context] missing \xmlflushsetups?

2010-04-05 Thread Hans van der Meer
I thought one can register various setups and then when setting up the processing of the root tag call them into being with: \xmlregisteredsetups (according to the docs applies all global setups to the current document) But doing this as in: \startxmlsetups xml:doc:roottag

[NTG-context] tlig not active in register

2010-03-17 Thread Piotr Kopszak
Dear list, I'd love to provide a minimal example but before I figure out how to do that a short question: I'm using the same font in the body text and registers: Jannon Text, tex ligatures via fontfeatures work in the body text but not in registers in page scopes. Any ideas? Piotr --

Re: [NTG-context] tlig not active in register

2010-03-17 Thread Piotr Kopszak
Is there a simple way to force replacing of double hyphen by a unicode en dash in registers? P. 2010/3/17 Piotr Kopszak kops...@gmail.com: Dear list, I'd love to provide a minimal example but before I figure out how to do that a  short question: I'm using the same font in the body text and

Re: [NTG-context] tlig not active in register

2010-03-17 Thread Hans Hagen
On 17-3-2010 19:30, Piotr Kopszak wrote: Is there a simple way to force replacing of double hyphen by a unicode en dash in registers? can you make a test file that shows the problem -

Re: [NTG-context] tlig not active in register

2010-03-17 Thread Piotr Kopszak
Here it is, for archives only, as the bug is no longer there with today's minimals. I noticed it with context version of 2009.09.25 23:52. Evidently time to update. \setupregister[index][pagestyle=\it] \usetypescript[iwona] \switchtobodyfont[iwona] \starttext first \index[first]{first item}

[NTG-context] using xml setup in another one

2010-03-09 Thread Hans van der Meer
\xmlsetsetup{dvd}{% % these are not to be ignored dvd|state|datadirectory|}{xml:case:*} \stopxmlsetups \xmlregistersetup{xml:case:casesetups} % register this setup and another one useable for general inclusion: \startxmlsetups xml:common:commonsetups

[NTG-context] problems with \enabletrackers[resolvers.locating]

2010-03-04 Thread luigi scarso
%% %%# egrep trackers\.reg *|perl -ne 'if(s/.*trackers\.register\(([^]+)/$1/){print \\enabletrackers[$1]\n}' -|sort|uniq %% \enabletrackers[afm.features] \enabletrackers[afm.indexing] \enabletrackers[afm.loading] \enabletrackers[asciimath.mapping] \enabletrackers[backend.detail] \enabletrackers

Re: [NTG-context] Wiki page

2010-02-20 Thread Marius
I don't know what is wrong, but I can't register to the wiki. It always writes that Login error: Incorrect or missing confirmation code. I wrote the answer to the question (75 minus 5) times roman 'X' as DCC. http://wiki.contextgarden.net/index.php?title=Special:UserLogintype=signupreturnto

Re: [NTG-context] Wiki page

2010-02-20 Thread luigi scarso
On Sat, Feb 20, 2010 at 12:24 PM, Marius mariau...@gmail.com wrote: I don't know what is wrong, but I can't register to the wiki. It always writes that Login error: Incorrect or missing confirmation code. I wrote the answer to the question (75 minus 5) times roman 'X' as DCC. try

Re: [NTG-context] Can not register the callback functions in MkIV

2010-02-19 Thread Yanrui Li
2010/2/19 Yanrui Li liyanrui...@gmail.com Hi, Now it seems that we have not allowed to register the callback functions since beta 2010.02.18. For example: \startluacode local old_pre_linebreak_filter = callback.find ('pre_linebreak_filter') local function my_pre_linebreak_filter (head

Re: [NTG-context] Can not register the callback functions in MkIV

2010-02-19 Thread Hans Hagen
On 19-2-2010 13:21, Yanrui Li wrote: 2010/2/19 Yanrui Liliyanrui...@gmail.com Hi, Now it seems that we have not allowed to register the callback functions since beta 2010.02.18. For example: \startluacode local old_pre_linebreak_filter = callback.find ('pre_linebreak_filter') local

[NTG-context] Can not register the callback functions in MkIV

2010-02-18 Thread Yanrui Li
Hi, Now it seems that we have not allowed to register the callback functions since beta 2010.02.18. For example: \startluacode local old_pre_linebreak_filter = callback.find ('pre_linebreak_filter') local function my_pre_linebreak_filter (head, groupcode) if old_pre_linebreak_filter

[NTG-context] Alphabetical order in register

2009-11-27 Thread Gerhard Kugler
Hello, the German umlauts are not sorted correctly in a register. How can I change their positions? Gerhard -- Gerhard Kugler Psychotherapeut Bensheim (Germany) http://www.psychotherapie-kugler.de ___ If your

Re: [NTG-context] Alphabetical order in register

2009-11-27 Thread Piotr Kopszak
Did you remember about \language[de] in the preamble? 2009/11/27, Gerhard Kugler pra...@psychotherapie-kugler.de: Hello, the German umlauts are not sorted correctly in a register. How can I change their positions? Gerhard -- Gerhard Kugler Psychotherapeut Bensheim (Germany) http

Re: [NTG-context] Sort register (index) by Bible book

2009-11-20 Thread berend
Taco == Taco Hoekwater t...@elvenkind.com writes: Taco You could pre-assign a zero-padded number to each book Taco (Genesis=001, Exodus=002), and use that number inside the Taco square brackets. Right, but that would be extremely annoying to type in all the time :-) I'm looking for

Re: [NTG-context] Sort register (index) by Bible book

2009-11-20 Thread Hans Hagen
ber...@pobox.com wrote: Taco == Taco Hoekwater t...@elvenkind.com writes: Taco You could pre-assign a zero-padded number to each book Taco (Genesis=001, Exodus=002), and use that number inside the Taco square brackets. Right, but that would be extremely annoying to type in all the

Re: [NTG-context] Sort register (index) by Bible book

2009-11-20 Thread Taco Hoekwater
ber...@pobox.com wrote: Taco == Taco Hoekwater t...@elvenkind.com writes: Taco You could pre-assign a zero-padded number to each book Taco (Genesis=001, Exodus=002), and use that number inside the Taco square brackets. Right, but that would be extremely annoying to type in all the

Re: [NTG-context] Sort register (index) by Bible book

2009-11-17 Thread Jelle Huisman
On 17/11/2009 07:48, Taco Hoekwater wrote: Using \index[Samuel 1 1:1]{1 Samuel 1:1} Should change the sort order. Untested, though. He probably wants to get Genesis before Exodus (etc.) instead. So would it be possible to tell the index mechanism to sort certain items in an arbitrary

Re: [NTG-context] Sort register (index) by Bible book

2009-11-17 Thread Taco Hoekwater
Jelle Huisman wrote: On 17/11/2009 07:48, Taco Hoekwater wrote: Using \index[Samuel 1 1:1]{1 Samuel 1:1} Should change the sort order. Untested, though. He probably wants to get Genesis before Exodus (etc.) instead. So would it be possible to tell the index mechanism to sort

[NTG-context] Sort register (index) by Bible book

2009-11-16 Thread berend
Hi All, I'm typesetting a book that has a register of Bible verses. I like to order them by Bible book as per the order the books are customarily listed. The index is created like \index{1 Samuel 1:1} and retrieved with \placeindex, so that's all standard. Are there any tools to sort this index

Re: [NTG-context] Sort register (index) by Bible book

2009-11-16 Thread Taco Hoekwater
ber...@pobox.com wrote: Hi All, I'm typesetting a book that has a register of Bible verses. I like to order them by Bible book as per the order the books are customarily listed. The index is created like \index{1 Samuel 1:1} and retrieved with \placeindex, so that's all standard

[NTG-context] \blank with dimen (mkiv)

2009-10-26 Thread Peter Rolf
Hi, donno if this is a bug or a feature. If I use \blank with a dimen register, I get [..] context/base/type-otf.tex (r:/tex/texmf-context/tex/context/base/type-otf.mkiv)) bodyfont: 12pt rm is loaded language: language en is active systems : begin file test at line 4

[NTG-context] How do you position/move a MPgraphic?

2009-10-25 Thread Daniel Bundzik
want to move somecolorcircle below sometext) Naturally, I have read Metafun and tried shifted (x,y), \definelayer, \setlayer, register, \setMPlayer, \getMPlayer... In general, if you have defined two or more MPgraphics how do you position them (In my case somebackground is fixed while

Re: [NTG-context] references to footnotes are broken in mkiv

2009-10-25 Thread Thomas A. Schmitz
On Oct 22, 2009, at 11:33 PM, Hans Hagen wrote: i'll fix this (we just need to register this ref class) it will be possible to nil the stoppers for those numbers in an upcoming release, so you have to live with it for the moment. Hans Hi Hans, thanks for fixing this! There still

Re: [NTG-context] references to footnotes are broken in mkiv

2009-10-22 Thread Hans Hagen
: \starttext \startitemize[n] \item[one] One \item Two \stopitemize In item \in[one]. \stoptext (Works in mkii, but not in mkiv) i'll fix this (we just need to register this ref class) it will be possible to nil the stoppers for those numbers in an upcoming release, so you have to live

Re: [NTG-context] Fwd: Re: First report on use

2009-09-17 Thread Alain Delmotte
installation. Then, it's safe. Vyatcheslav I think the GUI installer is writing in the register and this could interfere with the normal MikTeX/(La)TeX/TeXnicCenter system. If I understood well when I was at EuroTeX. I'll have another look. Thanks, Alain Vyatcheslav Yatskovsky a écrit

[NTG-context] Fwd: Re: First report on use

2009-09-16 Thread Vyatcheslav Yatskovsky
It will not interfere if you uncheck Set env. vars globally option during installation. Then, it's safe. Vyatcheslav I think the GUI installer is writing in the register and this could interfere with the normal MikTeX/(La)TeX/TeXnicCenter system. If I understood well when I was at EuroTeX

<    1   2   3   4   5   6   7   8   9   >