Re: [NTG-context] ctags and ConTeXt

2007-02-25 Thread Aditya Mahajan
On Sun, 11 Feb 2007, Aditya Mahajan wrote: > Hi, > > I am wondering how others manage a large list of reference labels in > ConTeXt. I use Vim as an editor and it supports ctags. ctags is a > utility that is basically for supporting tags in programs (initially > only for C, and hence the name), bu

Re: [NTG-context] texfont aborts with charisSIL

2007-02-25 Thread Ulf Martin
Henning Haeske schrieb: > Ok... unfortunately I need this font. Can you/anyone tell me, how to add this > font in the actual context, so that it can be used together with xetex? \definetypeface[TypeFace][rm][Xserif][Charis SIL] \setupbodyfont[TypeFace, 10pt] got this from http://wiki.contextga

Re: [NTG-context] Strange lucida bright math issue

2007-02-25 Thread Helin Gai
I did a bit more research.. It seems that the file "special.map" is interfering... Here's the log: (/usr/local/texlive/2007/texmf-dist/tex/context/base/type-buy.tex)) kpathsea: Running mktextfm lbmo mkdir: ././Users/Colin/.texlive2007/texmf-var/fonts/tfm: Permission denied mktextfm: mktexdir /User

[NTG-context] Strange lucida bright math issue

2007-02-25 Thread Helin Gai
Hi all, After upgrading to TeXLive 2007, I'm experiencing a strange issue with Lucida Bright. It seems that none of the math font is working. The system keeps reporting "TFM file can't be found" even though it's there. The normal text (nonmath) -- roman/sans serif, etc., is working. What can I do

Re: [NTG-context] Math Sets (ConTeXt port of braket.sty)

2007-02-25 Thread Aditya Mahajan
On Sun, 25 Feb 2007, Zulkifli Hidayat wrote: >> >> Hi, >> >> I find myself writing a lot of probability expressions where I want >> the delimiters to scale automatically, and | (conditional sign) to >> scale automatically, and the spacing around | to be correct. In LaTeX, >> I used to use braket p

Re: [NTG-context] texfont aborts with charisSIL

2007-02-25 Thread Henning Haeske
Hi Hans, thanks for the reply. > hm, so mktexlsr was aborted cq. ls-r was messed up for some reason? strange ...can you explain this «cq» and «ls-r» for a context-newbie like me? > > Did I missed a step or is texfont obsolete? > > no, but soon you won't need it anymore (xetex supports open type

Re: [NTG-context] how to use \startformula inside textext(...)?

2007-02-25 Thread Mojca Miklavec
On 2/25/07, Aditya Mahajan wrote: > On Sun, 25 Feb 2007, Mojca Miklavec wrote: > > > Hello, > > > > How can I do something similar to this? > > > > \starttext > > \startMPcode > > draw textext("\startformula" & "\sum_{i=0}^N i^2" & "\stopformula"); > > \stopMPcode > > \stoptext > > I could not get

Re: [NTG-context] Fonts, typescripts and math ??

2007-02-25 Thread Aditya Mahajan
On Sun, 25 Feb 2007, [EMAIL PROTECTED] wrote: > Hi, > > The following used to work > > \usetypescript[modern][default] > \usetypescript[times][ec] You do not need the above two lines. > \definetypeface[MyFace][rm][serif][times][default][encoding=ec] > \definetypeface[MyFace][mm][math][modern][de

Re: [NTG-context] texfont aborts with charisSIL

2007-02-25 Thread Hans Hagen
Henning Haeske wrote: > Hi, > > after my first installation was successful I am trying to install the latest > IPA-font from SIL (Charis - > http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=IPAhome#Charis ). > > I followed the instruction from the wiki: > http://wiki.contextgarden.net/

Re: [NTG-context] Feature request for font-ini

2007-02-25 Thread Hans Hagen
Aditya Mahajan wrote: > On Fri, 23 Feb 2007, Hans Hagen wrote: > > >> Aditya Mahajan wrote: >> >>> Hi Hans, >>> >>> Can the following be added to font-ini? >>> >>> \definealternativestyle [\v!boldsans,\v!sansbold] [\bf\ss] [] >>> >>> Writing >>> >>> \setuphead [section,subject] [textstyle

Re: [NTG-context] No TOC and other lists with \setuparranging

2007-02-25 Thread Piotr Kopszak
On Sun, Feb 25, 2007 at 03:39:29PM +0100, Wolfgang Schuster wrote: > On Sat, 24 Feb 2007 22:36:57 +0100 > Piotr Kopszak <[EMAIL PROTECTED]> wrote: > > > Hello list, > > > > The following gives me TOC and list of defined heads called > > przepis at the end of the file: > > > > Hi Piotr, > > yo

Re: [NTG-context] installationproblem with context-distribution: xetex not working

2007-02-25 Thread Hans Hagen
Henning Haeske wrote: > Thanks, > > it is working after I copied the relevant files from my texmf-fonts/ into > the texmf-local/ folder. > > The disjunction into the different texmf-... folders: > > texmf/ > texmf-local/... > texmf-font/ > texmf-extra/... > texmf-linux/ > > is

Re: [NTG-context] simplecolumns

2007-02-25 Thread Hans Hagen
Hans van der Meer wrote: > \simplecolumns have served me well. However, it seems a bit shy to > respond to \setupcolumns (although in file page-mul.tex the definition > of \setupcolumns preceeds that of \startsimplecolumns). > For example, the following typesets 2 columns instead of 4; to set 4

Re: [NTG-context] how to use \startformula inside textext(...)?

2007-02-25 Thread Sanjoy Mahajan
> draw textext("\startformula" & "\sum_{i=0}^N i^2" & "\stopformula"); I'm always a bit scared of textext, but here's how I do what I think you are trying to do (get limits underneath) using btex..etex: label(btex $\displaystyle{\sum_{i=0}^N i^2}$ etex, origin); Hopefully the same works in tex

Re: [NTG-context] No TOC and other lists with \setuparranging

2007-02-25 Thread Willi Egger
Hi, If you compile a document with page arrangement within the tex file, you need to run this file first without the \setuparranging command. After this you should insert the \setuparranging command and run texexec a SINGLE time. This is normal behaviour of Context. It is related to overwr

Re: [NTG-context] how to use \startformula inside textext(...)?

2007-02-25 Thread Aditya Mahajan
On Sun, 25 Feb 2007, Mojca Miklavec wrote: > Hello, > > How can I do something similar to this? > > \starttext > \startMPcode > draw textext("\startformula" & "\sum_{i=0}^N i^2" & "\stopformula"); > \stopMPcode > \stoptext I could not get the usual tricks to work here (place in a vbox or framed)

Re: [NTG-context] FYI

2007-02-25 Thread Aditya Mahajan
On Sun, 25 Feb 2007, Nikolai Weibull wrote: > On 2/25/07, Idris Samawi Hamid <[EMAIL PROTECTED]> wrote: >> Info for the gang: >> >> http://slashdot.org/comments.pl?sid=223940&threshold=1&commentsort=0&mode=thread&pid=18135068#18135322 >> >> (last paragraph) >> >> This does not affect me or many of

[NTG-context] how to use \startformula inside textext(...)?

2007-02-25 Thread Mojca Miklavec
Hello, How can I do something similar to this? \starttext \startMPcode draw textext("\startformula" & "\sum_{i=0}^N i^2" & "\stopformula"); \stopMPcode \stoptext Thanks a lot, Mojca ___ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/

Re: [NTG-context] No TOC and other lists with \setuparranging

2007-02-25 Thread Wolfgang Schuster
On Sat, 24 Feb 2007 22:36:57 +0100 Piotr Kopszak <[EMAIL PROTECTED]> wrote: > Hello list, > > The following gives me TOC and list of defined heads called > przepis at the end of the file: > Hi Piotr, you need the option "pdfarrange" for texexec. texexec --pdfarrange yourfile.tex Wolfgang >

[NTG-context] Fonts, typescripts and math ??

2007-02-25 Thread w . neimeijer
Hi, The following used to work \usetypescript[modern][default] \usetypescript[times][ec] \definetypeface[MyFace][rm][serif][times][default][encoding=ec] \definetypeface[MyFace][mm][math][modern][default][encoding=ec] \setupbodyfont[MyFace,10pt] \starttext $\dot{x}, \ddot{y}$. $\bar{z}, \Delta z$.

Re: [NTG-context] Limitation on natural tables.

2007-02-25 Thread Wolfgang Schuster
On Sat, 24 Feb 2007 19:11:58 -0500 "John R. Culleton" <[EMAIL PROTECTED]> wrote: > The fancy tricks one can to with Natural Tables seem to work within > the body of the table where I don't need them but fail in the header > area where I do need them. > > This example, takein from the wiki, work

[NTG-context] How to put float caption header in margin?

2007-02-25 Thread Robin Kirkham
Hi all, How can I put the header part only of a float caption (i.e., the "Figure 6" bit) in the left margin (so as to match \setupheads [alternative=inmargin]), but leaving the caption text part in the normal place? Robin ___ ntg-context mailing li

Re: [NTG-context] FYI

2007-02-25 Thread Nikolai Weibull
On 2/25/07, Idris Samawi Hamid <[EMAIL PROTECTED]> wrote: > Info for the gang: > > http://slashdot.org/comments.pl?sid=223940&threshold=1&commentsort=0&mode=thread&pid=18135068#18135322 > > (last paragraph) > > This does not affect me or many of us but it's good to know the vibes out > there. All

Re: [NTG-context] Natural table header limitation.

2007-02-25 Thread Peter Rolf
JOHN CULLETON wrote: > The fancy tricks one can to with Natural Tables seem to work within > the body of the table where I don't need them but fail in the header > area where I do need them. > > This example, takein from the wiki, works (of course.) > > \setupTABLE[row][odd][background=color,ba