Re: [NTG-context] How to define a new font style using \definefontstyle?

2017-01-30 Thread Hans Hagen

On 1/30/2017 9:12 AM, Antoine Cailliau wrote:

No one? Is there a documentation somewhere or an example I could refer to?

Thanks in advance,

Antoine

On 23 January 2017 at 12:48, Antoine Cailliau mailto:antoinecaill...@gmail.com>> wrote:

Hi,

I'm trying to declare a new font style. I declare it
with \definefontstyle [sx] [sx] but the compilation fails when I use
\sx in my document.



easier:

\starttypescript [sans] [myriadpro]
% \definefontsynonym [SansSemiExtended] 
[file:MyriadPro-SemiExt.otf][features=default]
\definefontsynonym [Sans]   [name:dejavusans] 
[features=default]
\definefontsynonym [SansBold]   [name:dejavusansbold] 
[features=default]
\definefontsynonym [SansItalic] [name:dejavusansitalic] 
[features=default]
\definefontsynonym [SansBoldItalic] 
[name:dejavusansbolditalic][features=default]

\stoptypescript

\definetypeface  [source] [ss] [sans] [myriadpro]
\definetypeface  [source] [mm] [math] [modern]

\setupbodyfont[pagella]

\starttext

{\source\ss ABCDEFGHIJKLM\par
NOPQRSTUVWXYZ\par
abcdefghijklm\par
nopqrstuvwxyz\par
1234567890}

\stoptext


I found an older message from 2009 similar to my issue but with
public solution. May be some private response from Hans Hagen is
missing?
(https://mailman.ntg.nl/pipermail/ntg-context/2009/043067.html
)

Here is a minimal example:

\definefontstyle [sx] [sx]
\definetypeface  [source] [sx] [semiextended] [myriadpro] [optical]

\starttypescript [semiextended] [optical] [size]
  \definebodyfont [11pt] [sx] [tf=SansSemiExtended sa 1]
\stoptypescript

\starttypescript [semiextended] [myriadpro]
\definefontsynonym [SansSemiExtended] [file:MyriadPro-SemiExt.otf]
[features=default]
\stoptypescript

\starttext

{\sx ABCDEFGHIJKLM\par
NOPQRSTUVWXYZ\par
abcdefghijklm\par
nopqrstuvwxyz\par
1234567890}

\stoptext

Thanks for your help,

Antoine C.




___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___




--

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___

Re: [NTG-context] Basic question

2017-01-30 Thread Otared Kavian
Hi John,

If you have updated your ConTeXt tree, you should issue the following command 
(only once…)

texexec --make —all

in order to create again the mkii format. Then you can say

texexec myfile.tex

in order to typeset the file myfile.tex

Best regards: OK

> On 30 Jan 2017, at 17:55, John Culleton  wrote:
> 
> I have a bunch of old files that were probably created for Mark II. What
> is the current command for running Mark II instead of Mark IV?
> -- 
> John Culleton
> Wexfordpress
> Book design and indexing.
> 
> 
> ___
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___

[NTG-context] Basic question

2017-01-30 Thread John Culleton
I have a bunch of old files that were probably created for Mark II. What
is the current command for running Mark II instead of Mark IV?
-- 
John Culleton
Wexfordpress
Book design and indexing.


___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___

Re: [NTG-context] Title without the parentheses

2017-01-30 Thread Otared Kavian
Hi Fabrice,

In order to have the box aligned with the text, it is enough to use the  \lower 
command as in the exmaple below.
Best regards: Otared K.

%% begin
\startuniqueMPgraphic{MyShape}
path p ; 
p := unitsquare xscaled \overlaywidth yscaled \overlayheight ;
pickup pencircle scaled \overlaylinewidth ;
fill p withcolor \MPcolor{\overlaycolor} ;
draw p withcolor \MPcolor{\overlaylinecolor} ;
\stopuniqueMPgraphic
\setuplayout[grid=yes]
\defineoverlay[MyBackgroundLayer][\uniqueMPgraphic{MyShape}]

\define[1]\MyExoCommand{%
\lower\strutdepth\hbox{\startframed
[background=MyBackgroundLayer,
frame=off,
%   width=3cm,
align=flushleft,
backgroundcolor=darkred]
{\white Exercice #1}
\stopframed}
}
\defineenumeration[ex]
[text=,
title=yes,
titleleft=,
titleright=,
width=fit,
alternative=top,
number=yes,
numbercommand=\MyExoCommand]


\showgrid
\starttext

\startex{Pour tous les candidats \hfill 5 points}
  \input ward
\stopex

\stoptext
%% end

> On 29 Jan 2017, at 23:04, Fabrice Couvreur  
> wrote:
> 
> Hello Kavian,
> Thank you for your answer, it's good for the parentheses. For the command, I 
> found only this which does not exactly answer what I want to do.
> Fabrice
> 
> \defineenumeration
>   [ex]
>   [text={Exercice},
>headcommand=\EXFRAME,
>titleleft=,
>titleright=,
>title=yes,
>width=fit,
>numberconversionset=ACCONVERSION,
>alternative=top,
>number=yes]
> 
> 2017-01-29 12:02 GMT+01:00 Otared Kavian  >:
> Hi Fabrice,
> 
> To suppress the parentheses in the title, you can use the keys titleleft and 
> titleright as in the following:
> 
> \defineenumeration
>   [ex]
>   [text=Exercice,
>title=yes,
>titleleft=,
>titleright=,
>width=fit,
>numberconversionset=ACCONVERSION,
>alternative=top,
>number=yes]
> 
> In order to put the word « Exercice » in the frame you should define a 
> special command, for instance \MyTextCommand and the say text = \MyTextCommand
> 
> Best regrads: OK
> 
>> On 29 Jan 2017, at 09:07, Fabrice Couvreur > > wrote:
>> 
>> Hello,
>> I would like a title without the parentheses and the text "Exercice" in the 
>> frame with the number.
>> Thank you.
>> Fabrice
>> 
>> \defineframed
>>   [EXFRAME]
>>   [frame=off,
>>offset=0pt,
>>location=low,
>>width=\struttotal,
>>background=color,
>>backgroundcolor=darkred,
>>foregroundcolor=white,
>>forgroundstyle=bold]
>> 
>> \defineprocessor[ACPROCESSOR][command=\EXFRAME]
>> \defineconversionset[ACCONVERSION][][ACPROCESSOR->n]
>> 
>> \defineenumeration
>>   [ex]
>>   [text=Exercice,
>>title=yes,
>>width=fit,
>>numberconversionset=ACCONVERSION,
>>alternative=top,
>>number=yes]
>> 
>> \starttext
>> 
>> \startex{Pour tous les candidats \hfill 5 points}
>>   \input ward
>> \stopex
>> 
>> \stoptext
> 
> 
> ___
> 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://context.aanhet.net 
> archive  : https://bitbucket.org/phg/context-mirror/commits/ 
> 
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___

Re: [NTG-context] Title without the parentheses

2017-01-30 Thread Otared Kavian
Hi Fabrice,

Below you have an example which may help you to achieve what you want, but in 
the example I am sending there is an issue with the alignment of the title.
I could not solve the issue, sorry…

Best regards: Otared K.

%% begin example boxed-title.tex
\startuniqueMPgraphic{MyShape}
path p ; 
p := unitsquare xscaled \overlaywidth yscaled \overlayheight ;
pickup pencircle scaled \overlaylinewidth ;
fill p withcolor \MPcolor{\overlaycolor} ;
draw p withcolor \MPcolor{\overlaylinecolor} ;
\stopuniqueMPgraphic

\defineoverlay[MyBackgroundLayer][\uniqueMPgraphic{MyShape}]

\define[1]\MyExoCommand{%
\startframed
[background=MyBackgroundLayer,
frame=off,
width=3cm,
backgroundcolor=darkred]
{\white Exercice #1}
\stopframed
}
\defineenumeration[ex]
[text=,
title=yes,
titleleft=,
titleright=,
width=fit,
alternative=top,
number=yes,
numbercommand=\MyExoCommand]


\showgrid
\starttext

\startex{Pour tous les candidats \hfill 5 points}
  \input ward
\stopex

\stoptext
%% end example boxed-title.tex


> On 29 Jan 2017, at 23:04, Fabrice Couvreur  
> wrote:
> 
> Hello Kavian,
> Thank you for your answer, it's good for the parentheses. For the command, I 
> found only this which does not exactly answer what I want to do.
> Fabrice
> 
> \defineenumeration
>   [ex]
>   [text={Exercice},
>headcommand=\EXFRAME,
>titleleft=,
>titleright=,
>title=yes,
>width=fit,
>numberconversionset=ACCONVERSION,
>alternative=top,
>number=yes]
> 
> 2017-01-29 12:02 GMT+01:00 Otared Kavian  >:
> Hi Fabrice,
> 
> To suppress the parentheses in the title, you can use the keys titleleft and 
> titleright as in the following:
> 
> \defineenumeration
>   [ex]
>   [text=Exercice,
>title=yes,
>titleleft=,
>titleright=,
>width=fit,
>numberconversionset=ACCONVERSION,
>alternative=top,
>number=yes]
> 
> In order to put the word « Exercice » in the frame you should define a 
> special command, for instance \MyTextCommand and the say text = \MyTextCommand
> 
> Best regrads: OK
> 
>> On 29 Jan 2017, at 09:07, Fabrice Couvreur > > wrote:
>> 
>> Hello,
>> I would like a title without the parentheses and the text "Exercice" in the 
>> frame with the number.
>> Thank you.
>> Fabrice
>> 
>> \defineframed
>>   [EXFRAME]
>>   [frame=off,
>>offset=0pt,
>>location=low,
>>width=\struttotal,
>>background=color,
>>backgroundcolor=darkred,
>>foregroundcolor=white,
>>forgroundstyle=bold]
>> 
>> \defineprocessor[ACPROCESSOR][command=\EXFRAME]
>> \defineconversionset[ACCONVERSION][][ACPROCESSOR->n]
>> 
>> \defineenumeration
>>   [ex]
>>   [text=Exercice,
>>title=yes,
>>width=fit,
>>numberconversionset=ACCONVERSION,
>>alternative=top,
>>number=yes]
>> 
>> \starttext
>> 
>> \startex{Pour tous les candidats \hfill 5 points}
>>   \input ward
>> \stopex
>> 
>> \stoptext
> 
> 
> ___
> 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://context.aanhet.net 
> archive  : https://bitbucket.org/phg/context-mirror/commits/ 
> 
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___

Re: [NTG-context] How to define a new font style using \definefontstyle?

2017-01-30 Thread Antoine Cailliau
No one? Is there a documentation somewhere or an example I could refer to?

Thanks in advance,

Antoine

On 23 January 2017 at 12:48, Antoine Cailliau 
wrote:

> Hi,
>
> I'm trying to declare a new font style. I declare it with \definefontstyle
> [sx] [sx] but the compilation fails when I use \sx in my document.
>
> I found an older message from 2009 similar to my issue but with public
> solution. May be some private response from Hans Hagen is missing? (
> https://mailman.ntg.nl/pipermail/ntg-context/2009/043067.html)
>
> Here is a minimal example:
>
> \definefontstyle [sx] [sx]
> \definetypeface  [source] [sx] [semiextended] [myriadpro] [optical]
>
> \starttypescript [semiextended] [optical] [size]
>   \definebodyfont [11pt] [sx] [tf=SansSemiExtended sa 1]
> \stoptypescript
>
> \starttypescript [semiextended] [myriadpro]
> \definefontsynonym [SansSemiExtended] [file:MyriadPro-SemiExt.otf]
> [features=default]
> \stoptypescript
>
> \starttext
>
> {\sx ABCDEFGHIJKLM\par
> NOPQRSTUVWXYZ\par
> abcdefghijklm\par
> nopqrstuvwxyz\par
> 1234567890}
>
> \stoptext
>
> Thanks for your help,
>
> Antoine C.
>
>
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___