Re: [NTG-context] bold math

2009-03-27 Thread Boštjan Vesnicer
Thanks, Aditya. I have the same question for calligraphic and doublestroke symbols. Bostjan On Fri, Mar 27, 2009 at 4:17 PM, Aditya Mahajan wrote: > On Fri, 27 Mar 2009, Bostjan Vesnicer wrote: > > Hi, >> >> what is the current (preferred) way of using math bold symbols. >> > > For MKII, defi

[NTG-context] \startalign + \boldsymbol weird behavior

2009-03-29 Thread Boštjan Vesnicer
Hi, I've noticed a weird behavior using \boldsymbol within \startalign \stopalign. Please see the attached minimal example. MKII version 2009.03.13 17:35 Bostjan minimal.tex Description: TeX document ___ If your qu

Re: [NTG-context] [MP] labels of points on a circle

2009-10-19 Thread Boštjan Vesnicer
Hi Dalyoung, You can try to adapt the following snippet: numeric i; pickup pencircle scaled 4pt; for i = 1 upto 10: z[i] = dir(uniformdeviate 360); drawdot z[i] scaled 4cm; label(decimal(i), z[i] scaled 4.3cm); endfor; Best regards, Bostjan On Mon, Oct 19, 2009 at 2:48

Re: [NTG-context] Page Numbering Hell

2009-10-25 Thread Boštjan Vesnicer
Alan, for me it is actually very obvious an easy to understand the situation about missing documentation. In my opinion there are a couple of reasons for that: - The gurus don't have time to write the documentation since they have more important things to do, i.e. implementing features. - Document

Re: [NTG-context] \label equivalent in a section?

2009-10-29 Thread Boštjan Vesnicer
\section[intro]{Introduction} On Thu, Oct 29, 2009 at 5:06 PM, Pau wrote: > Hello, > > how do I "translate" > > > \section{Introduction} > \label{intro} > > In Section \ref{intro}, we show an example of labelling > -

Re: [NTG-context] labelling again: tables? And captions?

2009-10-30 Thread Boštjan Vesnicer
> how can I add a label and a caption to a table? http://wiki.contextgarden.net/Floating_Objects ___ 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] equivalent of \substack

2009-12-09 Thread Boštjan Vesnicer
See http://dl.contextgarden.net/myway/mathalign.pdf On Wed, Dec 9, 2009 at 1:11 PM, wrote: > hi, > > is there an equivalent of \substack, or how could i get multiline-limits for > math operators? > > tobias > ___ > I

Re: [NTG-context] MathTime Lite fonts for free

2009-12-17 Thread Boštjan Vesnicer
Do the typescripts for the MathTime fonts exist? On Wed, Dec 16, 2009 at 9:12 PM, Wolfgang Schuster wrote: > FYI, > > http://www.texdev.net/2009/12/16/mathtime-lite-fonts-for-free/ > > Wolfgang > > ___ > If your quest

Re: [NTG-context] Blank at beginning of page

2010-01-19 Thread Boštjan Vesnicer
On 18.1.2010 13:40, Philipp Gesang wrote: \showframe \starttext \blank[5*big] Some text. \stoptext \dontleavehmode \blank[5*big] See http://wiki.contextgarden.net/A_Very_Simple_Cover_Page for explanation. Bostjan __

Re: [NTG-context] MetaPost Animation

2010-04-16 Thread Boštjan Vesnicer
Hi Troy Here is a simple solution: \def\MyGraphics#1{% \startMPcode path p,q; p:=fullcircle scaled 72; L:=length p; N:=20; q:=subpath (0,#1/N*L) of p; draw q withcolor red; fill fullcircle scaled 3 shifted point length q of q withcolor blue; setbounds currentpicture to unitsquare shifted (-0.5,-0

Re: [NTG-context] MetaPost Animation

2010-04-16 Thread Boštjan Vesnicer
> > If I have two different \startMPcode ... \stopMPcode sections, is > there a way (perhaps it does this by default) to have the variables > stored in the first block available in the second block? In pure > MetaPost, I can do > > numeric a:=4; > beginfig(1); >label(decimal(a),origin); > endf