Re: [NTG-context] Some short questions

2010-04-29 Thread R. Bastian
On Thu, 29 Apr 2010 07:41:52 +0200 Antoine Cailliau antoinecaill...@gmail.com scribit: Hi, I'm looking for two specific tricks: First, declaring one (and only one) page as empty. I mean with no footer/header texts. This is for my cover page, and some page left intentionnaly blank.

Re: [NTG-context] Some short questions

2010-04-29 Thread Wolfgang Schuster
Am 29.04.10 07:41, schrieb Antoine Cailliau: Hi, I'm looking for two specific tricks: First, declaring one (and only one) page as empty. I mean with no footer/header texts. This is for my cover page, and some page left intentionnaly blank. \page[empty] or \starttextmakeup

[NTG-context] bibliography overprinting and out of order

2010-04-29 Thread Michael Saunders
For example, with this .bbl file: \setuppublicationlist[samplesize={Gob06},totalnumber=3] \startpublication[k=siBrochure,t=techreport, a={{Gobel}},y=2006, n=1,s=Gob06] \author[]{E.}[E.]{}{Gobel} \pubyear{2006} \title{The international system of units} \pubname{Organisation Intergouvernementale

Re: [NTG-context] Why page is breaking after combined itemize list?

2010-04-29 Thread Jaroslav Hajtmar
I forgot furnish, that first itemize list is twocolumn (or threecolumn etc.) Jaroslav Dne 29.4.2010 7:17, Jaroslav Hajtmar napsal(a): Hi, all. I want make enumeration list as per: 1. a) b) 2. a) b) etc. When I use: \startitemize[n,columns] \item \startitemize[a][stopper=)] \item

Re: [NTG-context] Some short questions

2010-04-29 Thread Antoine Cailliau
Hi, First, declaring one (and only one) page as empty. I mean with no footer/header texts. This is for my cover page, and some page left intentionnaly blank. \page[empty] or \starttextmakeup \stoptextmakeup Second, I want to change the layout (margin, textwidth, etc) of a

[NTG-context] table of contents

2010-04-29 Thread Marius
Hello, There must be two tables of contents in my document, one in a native language and the other in english. In LaTeX I made new commands \enchapter, \ensection, etc., which I use just after the \chapter or \section command. How do I make such commands in ConTeXt, so that these commands just

Re: [NTG-context] bibliography overprinting and out of order

2010-04-29 Thread Taco Hoekwater
Michael Saunders wrote: For example, with this .bbl file: ...I get 3 and 2 printing out on top of each other (text overprinting Not here, looks fine. text), and out of order. I'd like the references to be alphabetical (so you can find them by looking in the bibliography),

Re: [NTG-context] table of contents

2010-04-29 Thread Wolfgang Schuster
Am 29.04.10 12:12, schrieb Marius: Hello, There must be two tables of contents in my document, one in a native language and the other in english. In LaTeX I made new commands \enchapter, \ensection, etc., which I use just after the \chapter or \section command. How do I make such commands in

Re: [NTG-context] table of contents

2010-04-29 Thread Marius
Thank you, Wolfgang for the example. I can't believe this is so simple in ConTeXt. I added this example to wiki. http://wiki.contextgarden.net/Table_of_Contents On Thu, Apr 29, 2010 at 1:19 PM, Wolfgang Schuster schuster.wolfg...@googlemail.com wrote: Am 29.04.10 12:12, schrieb Marius: Hello,

Re: [NTG-context] How to use musical symbols from a font

2010-04-29 Thread Vyatcheslav Yatskovsky
Hi, Thanks, Willi, for the idea, but I cannot get it to work. My version of the script \starttext \definefontsynonym[Wingdings][Wingdings.ttf] \definesymbol[box][\getglyph{Wingdings}{\char113}] %\def\Check% % {{\tfa\symbol[box]}} \symbol[box] \stoptext gives the following error (I have

Re: [NTG-context] table of contents

2010-04-29 Thread Marius
One more question regarding the table of contents. I have looked in the wiki and manuals and can't figure out how to enable entries for \title, \subject, \subsubject ... in the table of contents? Thanks, Marius ___ If

Re: [NTG-context] requesting multipass

2010-04-29 Thread Philipp Gesang
On 2010-04-27 23:47:03, Hans Hagen wrote: On 27-4-2010 11:09, Philipp Gesang wrote: On 2010-04-2720:02:27, Hans Hagen wrote: On 27-4-2010 5:04, Philipp Gesang wrote: Hi all, how do I trigger another pass? \starttext test \startluacode jobvariables.tobesaved.MyPersonalChecksum

Re: [NTG-context] How to use musical symbols from a font

2010-04-29 Thread Willi Egger
Apparently the font is not found. So make sure that TeX can find the font. Probably you need to check whether the OSFONTDIR is set correctly. Otherwise copy the to a place e.g. texmf-local en run luatools --generate. I hop this helps. Willi On 29 Apr 2010, at 21:53, Vyatcheslav Yatskovsky

Re: [NTG-context] right aligned footnote

2010-04-29 Thread Honza Pohanka
Thanks for the answer, but it does not work. I tried MKII and MKIV. Text is still on the left. min example \setupoutput[pdftex] \starttext \setupfootnotes[location=page] \setupnotedefinition[footnote][location=right,align=flushright] a\footnotetext{blabla} b\footnotetext{bububu} \stoptext

Re: [NTG-context] How to use musical symbols from a font

2010-04-29 Thread Vyatcheslav Yatskovsky
A-ha! The solution that file name should be wingding.ttf versus wingdings.ttf. OSFONTDIR is ok, my installer sets it properly :) Thanks for help. works perfectly. I only cannot understand what the following do: \def\Check% {{\tfa\symbol[box]}} Apparently the font is not found. So make

[NTG-context] Referencing a Figure

2010-04-29 Thread Troy Henderson
I am trying to reference a figure, and the results are not as expected. Here is my snippet. \placefigure[fig:myfigure]{A beautiful circle}{ \startMPcode draw fullcircle scaled 72; \stopMPcode } Isn't Figure \in[fig:myfigure] beautiful? When this code renders, the text says Isn't

Re: [NTG-context] Referencing a Figure

2010-04-29 Thread Aditya Mahajan
On Thu, 29 Apr 2010, Troy Henderson wrote: I am trying to reference a figure, and the results are not as expected. Here is my snippet. \placefigure[fig:myfigure]{A beautiful circle}{ \placefigure[][fig:myfigure]{...}{...} \startMPcode draw fullcircle scaled 72; \stopMPcode }

Re: [NTG-context] Referencing a Figure

2010-04-29 Thread Troy Henderson
Beautiful. Thanks. ___ 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/ntg-context webpage :