Re: [NTG-context] Broken Nightly 2012.03.02

2012-03-04 Thread Jaroslav Hajtmar
Hello Kip. I do not know whether it will be something, but try increasing the memory in some parts of texmf.cnf file. I once enlarged in ConTeXt in TeXlive pool_size.context = 200 Good Luck. Jaroslav At the same time are any values in texmf.cnt this: buf_size.context = 400

[NTG-context] ruby module

2012-03-04 Thread S Barmeier
Is it possible to place the ruby text in a margin? This would allow me to keep line spacing decently tight and also prevent the reader from only reading the annotation. How can one change the font size of the annotation and is there a way to keep it fixed, not being scaled according to the font

Re: [NTG-context] Broken Nightly 2012.03.02

2012-03-04 Thread Wolfgang Schuster
Am 04.03.2012 um 02:49 schrieb Kip Warner: Hey list, While attempting to compile my book, I get the following error: $ context Source/Handbook.tex --purgeresult ... graphics invalid region for 'tbg:1' ! TeX capacity exceeded, sorry [input stack size=1]. argument \next

Re: [NTG-context] \inmargin

2012-03-04 Thread S Barmeier
I had a look at the garden reference of \setupinmargin. Trying to set width=70mm, I get no change. The default seems to be bold and aligned right. Changing the style works, but trying to align inner/left also has no effect. Any help? Thank you, Severin

Re: [NTG-context] ruby module

2012-03-04 Thread Wolfgang Schuster
Am 04.03.2012 um 10:11 schrieb S Barmeier: Is it possible to place the ruby text in a margin? No. This would allow me to keep line spacing decently tight and also prevent the reader from only reading the annotation. This can be added but then you need a symbol (or something else) to see to

Re: [NTG-context] \inmargin

2012-03-04 Thread Wolfgang Schuster
Am 04.03.2012 um 10:39 schrieb S Barmeier: I had a look at the garden reference of \setupinmargin. Trying to set width=70mm, I get no change. \setuplayout [backspace=8cm, leftmargin=7cm, cutspace=2cm, width=middle] \starttext \inmargin{\input ward } \input knuth \stoptext The

[NTG-context] is it possible to have first and last line numbers from page?

2012-03-04 Thread Pablo Rodríguez
I have asked this question before (more than twice), after I found no answer in the ConTeXt reference manual, the wiki or the mailing list. I wanted to be able to have in the headers the first and last line number from page. This feature is extremely useful when typesetting some kinds of poetry.

Re: [NTG-context] is it possible to have first and last line numbers from page?

2012-03-04 Thread Wolfgang Schuster
Am 04.03.2012 um 11:20 schrieb Pablo Rodríguez: I have asked this question before (more than twice), after I found no answer in the ConTeXt reference manual, the wiki or the mailing list. I wanted to be able to have in the headers the first and last line number from page. This feature is

Re: [NTG-context] is it possible to have first and last line numbers from page?

2012-03-04 Thread Pablo Rodríguez
On 03/04/2012 12:04 PM, Wolfgang Schuster wrote: Am 04.03.2012 um 11:20 schrieb Pablo Rodríguez: I wanted to be able to have in the headers the first and last line number from page. This feature is extremely useful when typesetting some kinds of poetry. [...] Is that possible to achieve

Re: [NTG-context] ruby module

2012-03-04 Thread S Barmeier
Is it possible to place the ruby text in a margin? No. This would allow me to keep line spacing decently tight and also prevent the reader from only reading the annotation. This can be added but then you need a symbol (or something else) to see to which word the annotation refers. I'm

Re: [NTG-context] is it possible to have first and last line numbers from page?

2012-03-04 Thread Wolfgang Schuster
Am 04.03.2012 um 13:15 schrieb Pablo Rodríguez: On 03/04/2012 12:04 PM, Wolfgang Schuster wrote: Am 04.03.2012 um 11:20 schrieb Pablo Rodríguez: I wanted to be able to have in the headers the first and last line number from page. This feature is extremely useful when typesetting some

[NTG-context] ruby overhang

2012-03-04 Thread S Barmeier
\usemodule[ruby] \setupruby[overhang=start] \starttext foo \ruby{bar}{foo bar baz} baz \stoptext end,yes,auto all give overhang=none. Am I doing something wrong? Severin ___ If your question is of interest to others

Re: [NTG-context] is it possible to have first and last line numbers from page?

2012-03-04 Thread Pablo Rodríguez
On 04/03/12 14:44, Wolfgang Schuster wrote: Am 04.03.2012 um 13:15 schrieb Pablo Rodríguez: [...] If you allow me one more question: is showing the numbers on the same page they refer to beyond the limits of TeX/LuaTeX? I'm asking this to know whether such a feature could be implemented some

Re: [NTG-context] Broken Nightly 2012.03.02

2012-03-04 Thread Kip Warner
On Sun, 2012-03-04 at 09:52 +0100, Jaroslav Hajtmar wrote: Hello Kip. I do not know whether it will be something, but try increasing the memory in some parts of texmf.cnf file. I once enlarged in ConTeXt in TeXlive pool_size.context = 200 Good Luck. Jaroslav Thanks Jaroslav. It sounds

[NTG-context] Referencing a definition

2012-03-04 Thread Kip Warner
Hey list, I have a definition, like so... \startdefinition[definition:Foo]{Foo} Definition of foo here... \stopdefinition I'd like to reference it in the same way I would a section like \in{section}[Node]. How can I do the same with a definition such that it will typeset a clickable section

Re: [NTG-context] ruby overhang

2012-03-04 Thread Wolfgang Schuster
Am 04.03.2012 um 15:43 schrieb S Barmeier: \usemodule[ruby] \setupruby[overhang=start] \starttext foo \ruby{bar}{foo bar baz} baz \stoptext end,yes,auto all give overhang=none. Am I doing something wrong? You need also “align=center” because by default the base text is stretched (with

[NTG-context] Including command output

2012-03-04 Thread Kip Warner
Hey list, I'd like to include the output of a command. I am using the following to define the command, \def\BazaarRevision{\cldcontext{os.resultofbzr revno | tr -d '\\n'}} and the following to use the output of the command, \BazaarRevision A concern I have is whether this command is executed

[NTG-context] Itemize Prefixes

2012-03-04 Thread Kip Warner
Hey list, I'd like an itemized list using the following format... Article I ... Article II ... Article III ... ...and so on. I've tried defining the behaviour with... \defineenumeration[article] [location=top, text=Article, between=\blank, before=\blank, after=\blank]

Re: [NTG-context] Including command output

2012-03-04 Thread Aditya Mahajan
On Sun, 4 Mar 2012, Kip Warner wrote: Hey list, I'd like to include the output of a command. I am using the following to define the command, \def\BazaarRevision{\cldcontext{os.resultofbzr revno | tr -d '\\n'}} and the following to use the output of the command, \BazaarRevision A concern I

Re: [NTG-context] Itemize Prefixes

2012-03-04 Thread Aditya Mahajan
On Sun, 4 Mar 2012, Kip Warner wrote: Hey list, I'd like an itemized list using the following format... Article I ... Article II ... Article III ... ...and so on. I've tried defining the behaviour with... \defineenumeration[article] [location=top, text=Article, between=\blank,

[NTG-context] TOC: alternative=c not working?

2012-03-04 Thread Procházka Lukáš Ing . - Pontex s . r . o .
Hello, the following sample doesn't give the dotted style (#.# Name page) of the TOC - dots are missing: t-TOC.mkiv \setupcombinedlist[content][alternative=c] \starttext \completecontent \page \section{Sec} \subsection{SSec} \subsubsection{SSSec} \input