ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Some problems with a new style for the sections
@ 2014-05-04 11:21 Fabrice Couvreur
  2014-05-04 17:17 ` Wolfgang Schuster
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fabrice Couvreur @ 2014-05-04 11:21 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Hi,
I encounter two problems :
- Section numbers are not red ;
- Calling the second section does not cause the creation of a new paragraph.
Regards,
Fabrice

\setupcolors[state=start]
\def\MySectionCommand#1#2%
  {\framed
     [frame=off,
      width=\textwidth,
      align={right},
      background=color,
      backgroundcolor=lightgray]
     {#1\quad#2}}

\setuphead[section][command=\MySectionCommand,numbercolor=red]

\setupbodyfont[palatino,12pt]

\starttext

\MySectionCommand{A.}{Définitions}
\input knuth
\MySectionCommand{1.}{Propriétés}
\input knuth

[-- Attachment #1.2: Type: text/html, Size: 1189 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: Some problems with a new style for the sections
  2014-05-04 11:21 Some problems with a new style for the sections Fabrice Couvreur
@ 2014-05-04 17:17 ` Wolfgang Schuster
  2014-05-04 17:37 ` Darksair
  2014-05-04 18:56 ` Rik Kabel
  2 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Schuster @ 2014-05-04 17:17 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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


Am 04.05.2014 um 13:21 schrieb Fabrice Couvreur <fabrice1.couvreur@gmail.com>:

> Hi, 
> I encounter two problems : 
> - Section numbers are not red ; 
> - Calling the second section does not cause the creation of a new paragraph. 

You have to use the \section command in your text.

Wolfgang


[-- Attachment #1.2: Type: text/html, Size: 1175 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: Some problems with a new style for the sections
  2014-05-04 11:21 Some problems with a new style for the sections Fabrice Couvreur
  2014-05-04 17:17 ` Wolfgang Schuster
@ 2014-05-04 17:37 ` Darksair
  2014-05-04 18:56 ` Rik Kabel
  2 siblings, 0 replies; 5+ messages in thread
From: Darksair @ 2014-05-04 17:37 UTC (permalink / raw)
  To: ntg-context

You need to use \section to type a section head.  Also I think you are
better off with \define[2]\MySectionCommand.  Using \def issues some
errors.

On Sun, May 04, 2014 at 01:21:16PM +0200, Fabrice Couvreur wrote:
> Hi,
> I encounter two problems :
> - Section numbers are not red ;
> - Calling the second section does not cause the creation of a new paragraph.
> Regards,
> Fabrice
> 
> \setupcolors[state=start]
> \def\MySectionCommand#1#2%
>   {\framed
>      [frame=off,
>       width=\textwidth,
>       align={right},
>       background=color,
>       backgroundcolor=lightgray]
>      {#1\quad#2}}
> 
> \setuphead[section][command=\MySectionCommand,numbercolor=red]
> 
> \setupbodyfont[palatino,12pt]
> 
> \starttext
> 
> \MySectionCommand{A.}{Définitions}
> \input knuth
> \MySectionCommand{1.}{Propriétés}
> \input knuth

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


-- 
Darksair
http://darksair.org/
http://twitter.com/#!/MetroWind | http://about.me/darksair
http://www.last.fm/user/Darksair
___________________________________________________________________________________
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: Some problems with a new style for the sections
  2014-05-04 11:21 Some problems with a new style for the sections Fabrice Couvreur
  2014-05-04 17:17 ` Wolfgang Schuster
  2014-05-04 17:37 ` Darksair
@ 2014-05-04 18:56 ` Rik Kabel
  2014-05-05  9:04   ` Fabrice
  2 siblings, 1 reply; 5+ messages in thread
From: Rik Kabel @ 2014-05-04 18:56 UTC (permalink / raw)
  To: ntg-context


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

On 2014-05-04 07:21, Fabrice Couvreur wrote:
> Hi,
> I encounter two problems:
> - Section numbers are not red ;
> - Calling the second section does not cause the creation of a new 
> paragraph.
> Regards,
> Fabrice
>
> \setupcolors[state=start]
> \def\MySectionCommand#1#2%
>   {\framed
>      [frame=off,
>       width=\textwidth,
>       align={right},
>       background=color,
>       backgroundcolor=lightgray]
>      {#1\quad#2}}
>
> \setuphead[section][command=\MySectionCommand,numbercolor=red]
>
> \setupbodyfont[palatino,12pt]
>
> \starttext
>
> \MySectionCommand{A.}{Définitions}
> \input knuth
> \MySectionCommand{1.}{Propriétés}
> \input knuth
>
I think you want ownnumber (in addition to the previously mentioned 
\section).

    \setupcolors[state=start]
    \define[2]\MySectionCommand
       {\framed
          [frame=off,
           width=\textwidth,
           align={right},
           background=color,
           backgroundcolor=lightgray]
          {#1.\quad#2}}

    \setuphead[section][command=\MySectionCommand,ownnumber=yes,numbercolor=red]

    \setupbodyfont[palatino,12pt]

    \starttext

    \placecontent

    \section{A}{Définitions}
    \input knuth

    \section{1}{Propriétés}
    \input knuth

    \section{2}{Propriétés}
    \input knuth

    \section{3}{Propriétés}
    \input knuth

    \section{B}{Définitions}
    \input knuth

    \section{1}{Propriétés}
    \input knuth

    \section{2}{Propriétés}
    \input knuth

    \stoptext



-- 
Rik Kabel

[-- Attachment #1.2: Type: text/html, Size: 3724 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: Some problems with a new style for the sections
  2014-05-04 18:56 ` Rik Kabel
@ 2014-05-05  9:04   ` Fabrice
  0 siblings, 0 replies; 5+ messages in thread
From: Fabrice @ 2014-05-05  9:04 UTC (permalink / raw)
  To: ntg-context


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

Hi,
Sorry, I posted a little too fast for my question I found the answer 
here<http://wiki.contextgarden.net/Titles>http://wiki.contextgarden.net/Titles. 
Nevertheless, thank you for your response speed.
As I said before, I slowly migrates to ConTeXt (which I love!), Without 
abandoning LaTeX, which explains my confusion in the use of the command.
Regards,
Fabrice

[-- Attachment #1.2: Type: text/html, Size: 1633 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:[~2014-05-05  9:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-04 11:21 Some problems with a new style for the sections Fabrice Couvreur
2014-05-04 17:17 ` Wolfgang Schuster
2014-05-04 17:37 ` Darksair
2014-05-04 18:56 ` Rik Kabel
2014-05-05  9:04   ` Fabrice

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).