[NTG-context] Mark IV with TL2010 pretest

2010-09-02 Thread Abdulrahman Al-Abdulsalam
Hello,

I am installing TL2010 pretest and wonder whether ConTeXt Mark IV runs out
of the box or there are certain setup procedures to go. Also I would be
grateful if someone can point to a good reading resource for how to get
opentype fonts  going with the ConTeXt's LuaTeX engine.

Thanks in advance.

-- 
Abdulrahman Al-Abdulsalam
Colleges of Applied Science - Oman
___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Mark IV with TL2010 pretest

2010-09-02 Thread Taco Hoekwater

On 09/01/2010 04:01 PM, Abdulrahman Al-Abdulsalam wrote:

Hello,

I am installing TL2010 pretest and wonder whether ConTeXt Mark IV runs
out of the box or there are certain setup procedures to go.


There is a wiki page specifically for TL 2010 (pretest)

  http://wiki.contextgarden.net/TeX_Live_2010

There is also a wiki page on fonts in luatex, but it is a little
disorganized from the looks of it:

  http://wiki.contextgarden.net/Fonts_in_LuaTeX

Best wishes,
Taco

___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] extra row at the end of matrix

2010-09-02 Thread Aditya Mahajan

On Thu, 2 Sep 2010, Chen Shen wrote:


The matrix from the following example has an extra row at the end.

=
\starttext
\startformula
 A = \startmatrix[left={\left(\,},right={\,\right)}]
  \NC 1 \NC 2 \NR
  \NC 3 \NC 4 \NR
 \stopmatrix
\stopformula
\stoptext
=

I am using mkiv version:
 MTXrun | current version: 2010.07.30 11:35
 This is LuaTeX, Version beta-0.62.0-2010082314

Removing the last \NR fixes the problem, but this is certainly different
from the previous mkiv/mkii behavior.
I wonder this is an intended change, or is it a bug ?


This is a bug.

Aditya
___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] mathbold greek letters

2010-09-02 Thread Chen Shen
Hi all,

First I admit that I've never understood the typescript part of ConTeXt...
I've been using the following recipe for boldmath.
The latin letters appears fine in bold italic font, but the greek letters do
not appear.
---
\definetypeface [boldmath] [mm] [boldmath] [latin-modern] [modern]
[encoding=texnansi]
\setupbodyfont[10pt]

\starttext
$a b c \alpha \beta \phi$

$\bi a b c \alpha \beta \phi$
\stoptext
---

Looking at the log file, I found the following error message:

---
Missing character: There is no α (U+03B1) in font LMMath10-Regular!
Missing character: There is no α (U+03B1) in font LMMath10-Regular!
Missing character: There is no β (U+03B2) in font LMMath10-Regular!
Missing character: There is no β (U+03B2) in font LMMath10-Regular!
Missing character: There is no ϕ (U+03D5) in font LMMath10-Regular!
---

Apologize for dumb questions.
I wonder why LMMath Regular is looked-up here, I thought we should be
looking-up LMMathItalic10-Bold?

Thanks a lot.

regards,
ShenChen
___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] mathbold greek letters

2010-09-02 Thread Aditya Mahajan

On Thu, 2 Sep 2010, Chen Shen wrote:


Hi all,

First I admit that I've never understood the typescript part of ConTeXt...
I've been using the following recipe for boldmath.
The latin letters appears fine in bold italic font, but the greek letters do
not appear.
---
\definetypeface [boldmath] [mm] [boldmath] [latin-modern] [modern]
[encoding=texnansi]
\setupbodyfont[10pt]

\starttext
$a b c \alpha \beta \phi$

$\bi a b c \alpha \beta \phi$
\stoptext
---

Looking at the log file, I found the following error message:

---
Missing character: There is no α (U+03B1) in font LMMath10-Regular!
Missing character: There is no α (U+03B1) in font LMMath10-Regular!
Missing character: There is no β (U+03B2) in font LMMath10-Regular!
Missing character: There is no β (U+03B2) in font LMMath10-Regular!
Missing character: There is no ϕ (U+03D5) in font LMMath10-Regular!
---


Are you using MkIV? If so, an easier solution will be to use an opentype 
math font, like xits or cambria or asana math. Then you can simply use


$\bf a \alpha$

to get bold math.

Aditya___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] mathbold greek letters

2010-09-02 Thread Chen Shen
Yes I use mkiv. Thanks for the hint. Will try opentype fonts later.

shenchen


On Thu, Sep 2, 2010 at 2:49 PM, Aditya Mahajan adit...@umich.edu wrote:

 On Thu, 2 Sep 2010, Chen Shen wrote:

  Hi all,

 First I admit that I've never understood the typescript part of ConTeXt...
 I've been using the following recipe for boldmath.
 The latin letters appears fine in bold italic font, but the greek letters
 do
 not appear.
 ---
 \definetypeface [boldmath] [mm] [boldmath] [latin-modern] [modern]
 [encoding=texnansi]
 \setupbodyfont[10pt]

 \starttext
 $a b c \alpha \beta \phi$

 $\bi a b c \alpha \beta \phi$
 \stoptext
 ---

 Looking at the log file, I found the following error message:

 ---
 Missing character: There is no α (U+03B1) in font LMMath10-Regular!
 Missing character: There is no α (U+03B1) in font LMMath10-Regular!
 Missing character: There is no β (U+03B2) in font LMMath10-Regular!
 Missing character: There is no β (U+03B2) in font LMMath10-Regular!
 Missing character: There is no ϕ (U+03D5) in font LMMath10-Regular!
 ---


 Are you using MkIV? If so, an easier solution will be to use an opentype
 math font, like xits or cambria or asana math. Then you can simply use

 $\bf a \alpha$

 to get bold math.

 Aditya

 ___
 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  : http://www.pragma-ade.nl / http://tex.aanhet.net
 archive  : http://foundry.supelec.fr/projects/contextrev/
 wiki : http://contextgarden.net

 ___


___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] ConTeXt Minimals: some statistics of usage

2010-09-02 Thread Mojca Miklavec
Hello,

As I have promised some time ago here is some raw statistics from the
last month (older statistics is not kept on server):

There are 29917 different jobs.
There are 379 different IP numbers.
Bytes sent: 14,451,171,433

The following numbers represent unique IP numbers that have tried to
download minimals for a specific platform:

platform linux: 94
platform linux-64: 85
platform osx-64: 68
platform mswin: 65
platform osx-intel: 48
platform osx-ppc: 15
platform freebsd-amd64: 3
platform freebsd: 1

Mojca
___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] ConTeXt Minimals: some statistics of usage

2010-09-02 Thread Hans Hagen

On 2-9-2010 2:18, Mojca Miklavec wrote:

Hello,

As I have promised some time ago here is some raw statistics from the
last month (older statistics is not kept on server):

There are 29917 different jobs.
There are 379 different IP numbers.
Bytes sent: 14,451,171,433

The following numbers represent unique IP numbers that have tried to
download minimals for a specific platform:

platform linux: 94
platform linux-64: 85
platform osx-64: 68
platform mswin: 65
platform osx-intel: 48
platform osx-ppc: 15


linux   : 179  48%
osx : 131  35%
windows :  65  17%

32 bit : 222   60%
64 bit : 153   40%

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Wiki: Tables Overview: What table macros are deprecated?

2010-09-02 Thread Henning Hraban Ramm

Am 2010-09-02 um 00:51 schrieb Paul Menzel:


I was reading up about tables and found the overview in the Wiki [1]
with the following remark.

   Not each provides everything you may need, and the older ones
   are deprecated. [1]

Could someone please clarify which macros are deprecated or which are
the recommended or supported/still developed ones. This question is  
also

asked on the discussion page.


tabulate and TABLE are recommended. table and tables are deprecated  
(but TABLE suports most of table's syntax). linetable is experimental  
(don't know if it's supported on MkIV).



Greetlings from Lake Constance!
Hraban
---
http://www.fiee.net/texnique/
http://wiki.contextgarden.net
https://www.cacert.org (I'm an assurer)



smime.p7s
Description: S/MIME cryptographic signature
___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] ConTeXt Minimals: some statistics of usage

2010-09-02 Thread Henning Hraban Ramm

Am 2010-09-02 um 14:27 schrieb Hans Hagen:


On 2-9-2010 2:18, Mojca Miklavec wrote:

Hello,

As I have promised some time ago here is some raw statistics from the
last month (older statistics is not kept on server):

There are 29917 different jobs.
There are 379 different IP numbers.
Bytes sent: 14,451,171,433

The following numbers represent unique IP numbers that have tried to
download minimals for a specific platform:

platform linux: 94
platform linux-64: 85
platform osx-64: 68
platform mswin: 65
platform osx-intel: 48
platform osx-ppc: 15


linux   : 179  48%
osx : 131  35%
windows :  65  17%

32 bit : 222   60%
64 bit : 153   40%


You can count osx-intel as 64 bit, too. I didn't check if luaTeX is  
64bit on OSX, though...


Greetlings from Lake Constance!
Hraban
---
http://www.fiee.net/texnique/
http://wiki.contextgarden.net
https://www.cacert.org (I'm an assurer)



smime.p7s
Description: S/MIME cryptographic signature
___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Wiki: Tables Overview: What table macros are deprecated?

2010-09-02 Thread John Culleton
On Thursday 02 September 2010 12:59:35 Henning Hraban Ramm wrote:
 Am 2010-09-02 um 00:51 schrieb Paul Menzel:
  I was reading up about tables and found the overview in the Wiki
  [1] with the following remark.
 
 Not each provides everything you may need, and the older
  ones are deprecated. [1]
 
  Could someone please clarify which macros are deprecated or which
  are the recommended or supported/still developed ones. This
  question is also
  asked on the discussion page.

 tabulate and TABLE are recommended. table and tables are deprecated
 (but TABLE suports most of table's syntax). linetable is
 experimental (don't know if it's supported on MkIV).


 Greetlings from Lake Constance!

I use the table macros that come with TeXsis instead. 
-- 
John Culleton
Wexford Press
Create Book Covers with Scribus
Printable E-book 38 pages $5.95
http://www.booklocker.com/books/4055.html
___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] TABLE border width for row

2010-09-02 Thread Jan Pohanka

Hello,

is it possible to increase border width of single row (or column) without  
affecting inner (between cell) borders using TABLE macro?


On the wiki, there is a solution for wider border around whole table using  
additional \framed, would work something similar for single row?



\setupTABLE[r][2][rulethickness=2pt]
\bTABLE
 \bTR
   \bTD \eTD  \bTD \eTD  \bTD \eTD
 \eTR

 \bTR
   \bTD \eTD  \bTD \eTD  \bTD \eTD
 \eTR


 \bTR
   \bTD \eTD  \bTD \eTD  \bTD \eTD
 \eTR
\eTABLE


best regards
Jan

--
Tato zpráva byla vytvořena převratným poštovním klientem Opery:  
http://www.opera.com/mail/

___
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  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___