Re: [NTG-context] ConTeXt equivalent of \newmcodes@

2015-04-27 Thread Hans Hagen
On 4/27/2015 12:13 AM, Maggyero wrote: Dear list members, What is the ConTeXt equivalent of the LaTeX function \newmcodes@ defined in the AMSopn package (this function is used inside \DeclareMathOperator and \operatorname and has the effect of resetting text-mode punctuation characters such as

[NTG-context] Changing coversion of formulas

2015-04-27 Thread Aditya Mahajan
Hi, How does one change the numberconversion for math formulas? The old method: \setupformulas[numberconversion=set 1] \starttext \placeformula \startformula E = mc^2 \stopformula \stoptext does not appear to work. Thanks, Aditya

Re: [NTG-context] Changing coversion of formulas

2015-04-27 Thread Hans Hagen
On 4/27/2015 11:24 AM, Aditya Mahajan wrote: Hi, How does one change the numberconversion for math formulas? The old method: \setupformulas[numberconversion=set 1] \starttext \placeformula \startformula E = mc^2 \stopformula \stoptext does not appear to work.

[NTG-context] ConTeXt equivalent of \newmcodes@

2015-04-27 Thread Maggyero
\definemathcommand[xyz][nolop]{\text{fancy-function-name'*.:}} The problem with this solution is that the font of the operator becomes the normal text font whereas I want to use the standard math upright font (so \mfunction + \kern\zeropoint + \newmathcodes is the way to go). For instance with

Re: [NTG-context] ConTeXt equivalent of \newmcodes@

2015-04-27 Thread Hans Hagen
On 4/27/2015 9:14 PM, Maggyero wrote: Does \definemathcommand [xyz] [nolop] {xyz} do what you want? Not really if, instead of xyz, I want a name with hyphens, quotes, stars or colons. Compare the output of \definemathcommand[xyz][nolop]{fancy-function-name'*.:} in ConTeXt with the output of

Re: [NTG-context] System fonts not loading

2015-04-27 Thread Hans Hagen
On 4/26/2015 11:57 PM, Mica Semrick wrote: Hello, I seem to be having some trouble getting the system fonts to load from my Debian Jessie system. I'm using: mica@box:~/Working$ context -version mtx-context | ConTeXt Process Management 0.61 mtx-context | mtx-context | main context

[NTG-context] ConTeXt equivalent of \newmcodes@

2015-04-27 Thread Maggyero
do you have an example of usage Yes, I am trying to create the command \operatorname in ConTeXt. I know that in LaTeX \operatorname{xyz} is equivalent to \mathop{\newmcodes@\kern\z@\operator@font xyz}\csname nolimits@\endcsname} according to the AMSopn package (

Re: [NTG-context] Changing coversion of formulas

2015-04-27 Thread Aditya Mahajan
On Mon, 27 Apr 2015, Hans Hagen wrote: On 4/27/2015 11:24 AM, Aditya Mahajan wrote: Hi, How does one change the numberconversion for math formulas? The old method: \setupformulas[numberconversion=set 1] \starttext \placeformula \startformula E = mc^2 \stopformula \stoptext does not

Re: [NTG-context] Changing coversion of formulas

2015-04-27 Thread Wolfgang Schuster
Am 27.04.2015 um 15:23 schrieb Aditya Mahajan adit...@umich.edu: On Mon, 27 Apr 2015, Hans Hagen wrote: On 4/27/2015 11:24 AM, Aditya Mahajan wrote: Hi, How does one change the numberconversion for math formulas? The old method: \setupformulas[numberconversion=set 1] \starttext

[NTG-context] Obtaining font-related binaries

2015-04-27 Thread david.boerschl...@juno.com
How do I obtain the font-related binaries mentioned on http://wiki.contextgarden.net/ConTeXt_Standalone/Contents ??? David Boerschlein (214) 412-3275 home office land (585) 278-4687 cell www.linkedin.com/in/davidboerschlein Old

Re: [NTG-context] ConTeXt equivalent of \newmcodes@

2015-04-27 Thread Aditya Mahajan
On Mon, 27 Apr 2015, Maggyero wrote: do you have an example of usage Yes, I am trying to create the command \operatorname in ConTeXt. I know that in LaTeX \operatorname{xyz} is equivalent to \mathop{\newmcodes@\kern\z@\operator@font xyz}\csname nolimits@\endcsname} I also know that there is

Re: [NTG-context] Changing coversion of formulas

2015-04-27 Thread Aditya Mahajan
On Mon, 27 Apr 2015, Wolfgang Schuster wrote: Am 27.04.2015 um 15:23 schrieb Aditya Mahajan adit...@umich.edu: On Mon, 27 Apr 2015, Hans Hagen wrote: On 4/27/2015 11:24 AM, Aditya Mahajan wrote: Hi, How does one change the numberconversion for math formulas? The old method:

Re: [NTG-context] Obtaining font-related binaries

2015-04-27 Thread Wolfgang Schuster
Am 27.04.2015 um 15:53 schrieb david.boerschl...@juno.com: How do I obtain the font-related binaries mentioned on http://wiki.contextgarden.net/ConTeXt_Standalone/Contents ??? They come with the normal installation of the context suite but you don’t need them when you want to use a font

Re: [NTG-context] Changing coversion of formulas

2015-04-27 Thread Aditya Mahajan
On Mon, 27 Apr 2015, Aditya Mahajan wrote: On Mon, 27 Apr 2015, Wolfgang Schuster wrote: Am 27.04.2015 um 15:23 schrieb Aditya Mahajan adit...@umich.edu: On Mon, 27 Apr 2015, Hans Hagen wrote: On 4/27/2015 11:24 AM, Aditya Mahajan wrote: Hi, How does one change the numberconversion for

Re: [NTG-context] Obtaining font-related binaries

2015-04-27 Thread Hans Hagen
On 4/27/2015 3:53 PM, david.boerschl...@juno.com wrote: How do I obtain the font-related binaries mentioned on http://wiki.contextgarden.net/ConTeXt_Standalone/Contents ??? by installing tex live (they are not needed for mkiv) Hans

[NTG-context] \lfloor, \rfloor, \lceil, \rceil vanish with \big, \Big, \bigg, \Bigg and their left and right variants

2015-04-27 Thread Maggyero
Mr Hagen, is it the expected behaviour? \starttext The delimiters are correctly displayed: \startformula \left\lfloor \frac{x}{y}\right\rfloor \stopformula The delimiters vanish: \startformula \Bigl\lfloor \frac{x}{y}\Bigr\rfloor \stopformula \stoptext Maggyero

[NTG-context] caption alignment with floats in the margin

2015-04-27 Thread Brian R. Landy
Hi, I am trying to place some floats in the margin and noticed that the caption gets centered instead of following my specification to flushleft. If the float is in the main body it is ok. . I have a small example below. I tested with 2015.04.18 14:41. Is there a way to fix the alignment?

[NTG-context] Windows console message from utf-8 source

2015-04-27 Thread Pablo Rodriguez
Dear list, I have the following minimal example: \starttext \message{En español usamos acentuación} \stoptext Saved as utf-8, Linux displays the message fine. (I guess MacOS X would do the same.) The problem is the standard console in Windows. It requires IBM codepage 850

Re: [NTG-context] Windows console message from utf-8 source

2015-04-27 Thread luigi scarso
On Mon, Apr 27, 2015 at 6:29 PM, Pablo Rodriguez oi...@gmx.es wrote: Dear list, I have the following minimal example: \starttext \message{En español usamos acentuación} \stoptext Saved as utf-8, Linux displays the message fine. (I guess MacOS X would do the same.) The

Re: [NTG-context] System fonts not loading

2015-04-27 Thread Mica Semrick
Hi Hans, That did not seems to solve the problem. I'll assume there is a problem elsewhere with my system, unless there is anything else I can try. It is strange, as this worked before when Debian Jessie was still testing. Thanks, Mica On 04/27, Hans Hagen wrote: On 4/26/2015 11:57 PM, Mica

Re: [NTG-context] Windows console message from utf-8 source

2015-04-27 Thread Pablo Rodriguez
On 04/27/2015 07:48 PM, luigi scarso wrote: On Mon, Apr 27, 2015 at 6:29 PM, Pablo Rodriguez wrote: [...] Is there any way to display the content of the \message above as cp850 from a utf-8 source? What happen when you use Lucida Console as font ? Many thanks for your help, Luigi. As far

Re: [NTG-context] Windows console message from utf-8 source

2015-04-27 Thread Hans Hagen
On 4/27/2015 7:48 PM, luigi scarso wrote: On Mon, Apr 27, 2015 at 6:29 PM, Pablo Rodriguez oi...@gmx.es mailto:oi...@gmx.es wrote: Dear list, I have the following minimal example: \starttext \message{En español usamos acentuación} \stoptext Saved as

Re: [NTG-context] Windows console message from utf-8 source

2015-04-27 Thread Pablo Rodriguez
On 04/27/2015 08:09 PM, Hans Hagen wrote: On 4/27/2015 6:29 PM, Pablo Rodriguez wrote: [...] Is there any way to display the content of the \message above as cp850 from a utf-8 source? choose a font that has the glyphs and run chcp 65001 Many thanks for your reply, Hans. I thought chcp

Re: [NTG-context] Windows console message from utf-8 source

2015-04-27 Thread Hans Hagen
On 4/27/2015 6:29 PM, Pablo Rodriguez wrote: Dear list, I have the following minimal example: \starttext \message{En español usamos acentuación} \stoptext Saved as utf-8, Linux displays the message fine. (I guess MacOS X would do the same.) The problem is the standard console

[NTG-context] ConTeXt equivalent of \newmcodes@

2015-04-27 Thread Maggyero
Does \definemathcommand [xyz] [nolop] {xyz} do what you want? Not really if, instead of xyz, I want a name with hyphens, quotes, stars or colons. Compare the output of \definemathcommand[xyz][nolop]{fancy-function-name'*.:} in ConTeXt with the output of