ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Baseline and framed
@ 2016-07-06 11:37 Fabrice Couvreur
  2016-07-06 13:03 ` Hans Hagen
  0 siblings, 1 reply; 5+ messages in thread
From: Fabrice Couvreur @ 2016-07-06 11:37 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 515 bytes --]

Hello,
In the manual, there is the macro below.
Why the word "Matrice" is not on the same baseline as the number "1" ?
thank you,
Fabrice

\unexpanded\def\HeadTitle#1#2%
  {\hbox to \hsize \bgroup
   \setupframed[height=1cm,offset=0.5em,frame=on]
   \framed[width=fit,align=left]{\darkred#1}%

\framed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
    \egroup}

\setuphead
   [chapter]
   [command=\HeadTitle]

\starttext

\startchapter
  [title={Matrice}]


\stopchapter

\stoptext

[-- Attachment #1.2: Type: text/html, Size: 1005 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Baseline and framed
  2016-07-06 11:37 Baseline and framed Fabrice Couvreur
@ 2016-07-06 13:03 ` Hans Hagen
  2016-07-06 14:24   ` Fabrice Couvreur
  0 siblings, 1 reply; 5+ messages in thread
From: Hans Hagen @ 2016-07-06 13:03 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 7/6/2016 1:37 PM, Fabrice Couvreur wrote:
>
> Hello,
> In the manual, there is the macro below.
> Why theword "Matrice" is not on the same baseline as the number "1" ?
> thank you,
> Fabrice
>
> \unexpanded\def\HeadTitle#1#2%
>   {\hbox to \hsize \bgroup
>    \setupframed[height=1cm,offset=0.5em,frame=on]
>    \framed[width=fit,align=left]{\darkred#1}%
>
> \framed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
>     \egroup}
>
> \setuphead
>    [chapter]
>    [command=\HeadTitle]
>
> \starttext
>
> \startchapter
>   [title={Matrice}]
>
>
> \stopchapter
>
> \stoptext

fonts and such ... better use:

\unexpanded\def\HeadTitle#1#2%
   {\hbox to \hsize \bgroup
    \inframed[width=fit,align=left]{\darkred#1}%
 
\inframed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
    \egroup}

-----------------------------------------------------------------
                                           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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Baseline and framed
  2016-07-06 13:03 ` Hans Hagen
@ 2016-07-06 14:24   ` Fabrice Couvreur
  2016-07-06 21:22     ` Fabrice Couvreur
  0 siblings, 1 reply; 5+ messages in thread
From: Fabrice Couvreur @ 2016-07-06 14:24 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 2357 bytes --]

Thank you Hans, the code would be :

\unexpanded\def\HeadTitle#1#2%
  {\hbox to \hsize \bgroup
   \hfill
   \setupframed[offset=0.5em,frame=off]
   \inframed[width=fit,align=left,frame=off]{\darkred#1}%

\inframed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
   \egroup}

Thank you Hans, the code would be:
Could I ask you how to have the chapter number is like the
http://www.pragma-ade.nl/general/manuals/cont-enp.pdf book?
This is a macro Metafun but I do not quite understand the mechanism.
thank you,
Fabrice

2016-07-06 15:03 GMT+02:00 Hans Hagen <pragma@wxs.nl>:

> On 7/6/2016 1:37 PM, Fabrice Couvreur wrote:
>
>>
>> Hello,
>> In the manual, there is the macro below.
>> Why theword "Matrice" is not on the same baseline as the number "1" ?
>> thank you,
>> Fabrice
>>
>> \unexpanded\def\HeadTitle#1#2%
>>   {\hbox to \hsize \bgroup
>>    \setupframed[height=1cm,offset=0.5em,frame=on]
>>    \framed[width=fit,align=left]{\darkred#1}%
>>
>>
>> \framed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
>>     \egroup}
>>
>> \setuphead
>>    [chapter]
>>    [command=\HeadTitle]
>>
>> \starttext
>>
>> \startchapter
>>   [title={Matrice}]
>>
>>
>> \stopchapter
>>
>> \stoptext
>>
>
> fonts and such ... better use:
>
> \unexpanded\def\HeadTitle#1#2%
>   {\hbox to \hsize \bgroup
>    \inframed[width=fit,align=left]{\darkred#1}%
>
>
> \inframed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
>    \egroup}
>
> -----------------------------------------------------------------
>                                           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://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
>
> ___________________________________________________________________________________

[-- Attachment #1.2: Type: text/html, Size: 4477 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Baseline and framed
  2016-07-06 14:24   ` Fabrice Couvreur
@ 2016-07-06 21:22     ` Fabrice Couvreur
  2016-07-06 22:11       ` Fabrice Couvreur
  0 siblings, 1 reply; 5+ messages in thread
From: Fabrice Couvreur @ 2016-07-06 21:22 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1.1: Type: text/plain, Size: 3645 bytes --]

I wish the chapter title on right of the page. The numbering of the chapters is
fixed at 0, why ?
thank you,
Fabrice


​
\unexpanded\def\HeadTitle#1#2%
  {\vbox \bgroup
   \setupframed[offset=0.5em,frame=off]
   \inframed[width=fit,align=right]{#1}%
   \inframed[width=fit,align=right]{#2}%
   \egroup}


\startusableMPgraphic{chapter}
      picture r ;
      r := image ( graphictext
        \MPstring{chapter}
        scaled 3pt
        withfillcolor \MPcolor{lightgray}
        withpen pencircle scaled 1pt ; ) ;
      draw r ;
    \stopusableMPgraphic

\unexpanded\def\processMPheadnumber#1%
  {\setMPtext{chapter}{\bf#1}
   \useMPgraphic{chapter}}

\setuphead
   [chapter]
   [command=\HeadTitle,
    numbercommand=\processMPheadnumber{\currentheadnumber}]

\starttext

\startchapter
  [title={Séries statistiques à deux variables}]


\stopchapter

\startchapter
  [title={Matrice}]


\stopchapter

\startchapter
  [title={Graphe}]


\stopchapter

\stoptext


2016-07-06 16:24 GMT+02:00 Fabrice Couvreur <fabrice1.couvreur@gmail.com>:

> Thank you Hans, the code would be :
>
> \unexpanded\def\HeadTitle#1#2%
>   {\hbox to \hsize \bgroup
>    \hfill
>    \setupframed[offset=0.5em,frame=off]
>    \inframed[width=fit,align=left,frame=off]{\darkred#1}%
>
> \inframed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
>    \egroup}
>
> Thank you Hans, the code would be:
> Could I ask you how to have the chapter number is like the
> http://www.pragma-ade.nl/general/manuals/cont-enp.pdf book?
> This is a macro Metafun but I do not quite understand the mechanism.
> thank you,
> Fabrice
>
> 2016-07-06 15:03 GMT+02:00 Hans Hagen <pragma@wxs.nl>:
>
>> On 7/6/2016 1:37 PM, Fabrice Couvreur wrote:
>>
>>>
>>> Hello,
>>> In the manual, there is the macro below.
>>> Why theword "Matrice" is not on the same baseline as the number "1" ?
>>> thank you,
>>> Fabrice
>>>
>>> \unexpanded\def\HeadTitle#1#2%
>>>   {\hbox to \hsize \bgroup
>>>    \setupframed[height=1cm,offset=0.5em,frame=on]
>>>    \framed[width=fit,align=left]{\darkred#1}%
>>>
>>>
>>> \framed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
>>>     \egroup}
>>>
>>> \setuphead
>>>    [chapter]
>>>    [command=\HeadTitle]
>>>
>>> \starttext
>>>
>>> \startchapter
>>>   [title={Matrice}]
>>>
>>>
>>> \stopchapter
>>>
>>> \stoptext
>>>
>>
>> fonts and such ... better use:
>>
>> \unexpanded\def\HeadTitle#1#2%
>>   {\hbox to \hsize \bgroup
>>    \inframed[width=fit,align=left]{\darkred#1}%
>>
>>
>> \inframed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
>>    \egroup}
>>
>> -----------------------------------------------------------------
>>                                           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://tex.aanhet.net
>> archive  : http://foundry.supelec.fr/projects/contextrev/
>> wiki     : http://contextgarden.net
>>
>> ___________________________________________________________________________________
>
>
>

[-- Attachment #1.1.2: Type: text/html, Size: 6376 bytes --]

[-- Attachment #1.2: Number-0.png --]
[-- Type: image/png, Size: 7589 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Baseline and framed
  2016-07-06 21:22     ` Fabrice Couvreur
@ 2016-07-06 22:11       ` Fabrice Couvreur
  0 siblings, 0 replies; 5+ messages in thread
From: Fabrice Couvreur @ 2016-07-06 22:11 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1.1: Type: text/plain, Size: 4092 bytes --]

The following macro places the title right

\unexpanded\def\HeadTitle#1#2%
  {\framed
    [frame=off,
    width=broad,
    align={broad,nothyphenated,left}]
    {#1\blank#2}}

2016-07-06 23:22 GMT+02:00 Fabrice Couvreur <fabrice1.couvreur@gmail.com>:

> I wish the chapter title on right of the page. The numbering of the
> chapters is fixed at 0, why ?
> thank you,
> Fabrice
>
>
> ​
> \unexpanded\def\HeadTitle#1#2%
>   {\vbox \bgroup
>    \setupframed[offset=0.5em,frame=off]
>    \inframed[width=fit,align=right]{#1}%
>    \inframed[width=fit,align=right]{#2}%
>    \egroup}
>
>
> \startusableMPgraphic{chapter}
>       picture r ;
>       r := image ( graphictext
>         \MPstring{chapter}
>         scaled 3pt
>         withfillcolor \MPcolor{lightgray}
>         withpen pencircle scaled 1pt ; ) ;
>       draw r ;
>     \stopusableMPgraphic
>
> \unexpanded\def\processMPheadnumber#1%
>   {\setMPtext{chapter}{\bf#1}
>    \useMPgraphic{chapter}}
>
> \setuphead
>    [chapter]
>    [command=\HeadTitle,
>     numbercommand=\processMPheadnumber{\currentheadnumber}]
>
> \starttext
>
> \startchapter
>   [title={Séries statistiques à deux variables}]
>
>
> \stopchapter
>
> \startchapter
>   [title={Matrice}]
>
>
> \stopchapter
>
> \startchapter
>   [title={Graphe}]
>
>
> \stopchapter
>
> \stoptext
>
>
> 2016-07-06 16:24 GMT+02:00 Fabrice Couvreur <fabrice1.couvreur@gmail.com>:
>
>> Thank you Hans, the code would be :
>>
>> \unexpanded\def\HeadTitle#1#2%
>>   {\hbox to \hsize \bgroup
>>    \hfill
>>    \setupframed[offset=0.5em,frame=off]
>>    \inframed[width=fit,align=left,frame=off]{\darkred#1}%
>>
>> \inframed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
>>    \egroup}
>>
>> Thank you Hans, the code would be:
>> Could I ask you how to have the chapter number is like the
>> http://www.pragma-ade.nl/general/manuals/cont-enp.pdf book?
>> This is a macro Metafun but I do not quite understand the mechanism.
>> thank you,
>> Fabrice
>>
>> 2016-07-06 15:03 GMT+02:00 Hans Hagen <pragma@wxs.nl>:
>>
>>> On 7/6/2016 1:37 PM, Fabrice Couvreur wrote:
>>>
>>>>
>>>> Hello,
>>>> In the manual, there is the macro below.
>>>> Why theword "Matrice" is not on the same baseline as the number "1" ?
>>>> thank you,
>>>> Fabrice
>>>>
>>>> \unexpanded\def\HeadTitle#1#2%
>>>>   {\hbox to \hsize \bgroup
>>>>    \setupframed[height=1cm,offset=0.5em,frame=on]
>>>>    \framed[width=fit,align=left]{\darkred#1}%
>>>>
>>>>
>>>> \framed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
>>>>     \egroup}
>>>>
>>>> \setuphead
>>>>    [chapter]
>>>>    [command=\HeadTitle]
>>>>
>>>> \starttext
>>>>
>>>> \startchapter
>>>>   [title={Matrice}]
>>>>
>>>>
>>>> \stopchapter
>>>>
>>>> \stoptext
>>>>
>>>
>>> fonts and such ... better use:
>>>
>>> \unexpanded\def\HeadTitle#1#2%
>>>   {\hbox to \hsize \bgroup
>>>    \inframed[width=fit,align=left]{\darkred#1}%
>>>
>>>
>>> \inframed[width=fit,align=right,leftframe=on,rulethickness=4pt,framecolor=darkred]{#2}%
>>>    \egroup}
>>>
>>> -----------------------------------------------------------------
>>>                                           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://tex.aanhet.net
>>> archive  : http://foundry.supelec.fr/projects/contextrev/
>>> wiki     : http://contextgarden.net
>>>
>>> ___________________________________________________________________________________
>>
>>
>>
>

[-- Attachment #1.1.2: Type: text/html, Size: 7139 bytes --]

[-- Attachment #1.2: Number-0.png --]
[-- Type: image/png, Size: 7589 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-07-06 22:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-06 11:37 Baseline and framed Fabrice Couvreur
2016-07-06 13:03 ` Hans Hagen
2016-07-06 14:24   ` Fabrice Couvreur
2016-07-06 21:22     ` Fabrice Couvreur
2016-07-06 22:11       ` Fabrice Couvreur

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).