ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* About Chapter head definition and FunnyFrame
@ 2012-09-03  3:34 Jeong Dalyoung
  2012-09-03  4:35 ` Wolfgang Schuster
  0 siblings, 1 reply; 4+ messages in thread
From: Jeong Dalyoung @ 2012-09-03  3:34 UTC (permalink / raw)
  To: ntg-context

Dear all,

I have two questions.


1. I defined \Myheader and use it to shape the chapter head as following:


\def\Myheader#1#2{%
\framedtext
[width=\overlaywidth,
height=9\bodyfontsize,
background=color,
backgroundcolor=lightgray,
offset=2pt,
strut=no,
frame=off,
align={middle, middle}]
{
{\tfb 제 #1 장}
\blank[big]
{\sans #2} }}

\startsectionblockenvironment[bodypart]
\setupheadertexts[][{\tfx COUNTING}]
\setuppagenumber[number=1]
\setuppagenumbering[alternative={singlesided,doublesided},location={footer,right}]
\setuphead[chapter][command=\Myheader,before={\dontleavehmode\blank[2*big]},after={\blank[5*big]}, page=right]
\stopsectionblockenvironment

….

\chapter{The Addition Principle \crlf {\tfx Sum Rule}}

….

But it produces an error which  is 

…
! Argument of \Myheader has an extra }.

system       > tex > error on line 94 in file SumRule.tex
…

What is wrong in this code?

2. I used "funnyFrame" defined in the MetaFun book. It works fine except that it is left aligned. I'd like to put such a frame in the middle. But \startalignment[middle] didn't work.
Is there any way to make FunnyFrame center aligned?

Thank you for the reading.

Best regards,

Dalyoung
___________________________________________________________________________________
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] 4+ messages in thread

* Re: About Chapter head definition and FunnyFrame
  2012-09-03  3:34 About Chapter head definition and FunnyFrame Jeong Dalyoung
@ 2012-09-03  4:35 ` Wolfgang Schuster
  2013-03-03 14:52   ` john Culleton
  0 siblings, 1 reply; 4+ messages in thread
From: Wolfgang Schuster @ 2012-09-03  4:35 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 03.09.2012 um 05:34 schrieb Jeong Dalyoung <haksan@me.com>:

> Dear all,
> 
> I have two questions.
> 
> 
> 1. I defined \Myheader and use it to shape the chapter head as following:
> 
> \def\Myheader#1#2{%

Use

\define[2]\Myheader{…}

with a recent beta or

\unexpanded\def\Myheader#1#2{…}

with a older beta. You can also search in the list archive for \defineheadalternative
where Hans describes a new method to create your own header layout.

Wolfgang
___________________________________________________________________________________
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] 4+ messages in thread

* Re: About Chapter head definition and FunnyFrame
  2012-09-03  4:35 ` Wolfgang Schuster
@ 2013-03-03 14:52   ` john Culleton
  2013-03-03 17:54     ` Epigraphs (was About Chapter head definition and FunnyFrame) Wolfgang Schuster
  0 siblings, 1 reply; 4+ messages in thread
From: john Culleton @ 2013-03-03 14:52 UTC (permalink / raw)
  To: ntg-context

On Mon, 3 Sep 2012 06:35:16 +0200
Wolfgang Schuster <wolfgang.schuster@gmail.com> wrote:

> 
> Am 03.09.2012 um 05:34 schrieb Jeong Dalyoung <haksan@me.com>:
> 
> > Dear all,
> > 
> > I have two questions.
> > 
> > 
> > 1. I defined \Myheader and use it to shape the chapter head as
> > following:
> > 
> > \def\Myheader#1#2{%
> 
> Use
> 
> \define[2]\Myheader{___}
> 
> with a recent beta or
> 
> \unexpanded\def\Myheader#1#2{___}
> 
> with a older beta. You can also search in the list archive for
> \defineheadalternative where Hans describes a new method to create
> your own header layout.
> 
> Wolfgang

Is there a facility in MKIV for creating an epigraph after a
chapter head? The Memoir class in LaTeX has such a command.

I'll look up \definheadalternative. Maybe it covers it, maybe
not. 
-- 
John Culleton
Wexford Press
Free list of books for self-publishers:
http://wexfordpress.net/shortlist.html
PDF e-book: "Create Book Covers with Scribus"
available at 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
___________________________________________________________________________________


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

* Epigraphs (was About Chapter head definition and FunnyFrame)
  2013-03-03 14:52   ` john Culleton
@ 2013-03-03 17:54     ` Wolfgang Schuster
  0 siblings, 0 replies; 4+ messages in thread
From: Wolfgang Schuster @ 2013-03-03 17:54 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 03.03.2013 um 15:52 schrieb john Culleton <John@wexfordpress.com>:

> Is there a facility in MKIV for creating an epigraph after a
> chapter head? The Memoir class in LaTeX has such a command.
> 
> I'll look up \definheadalternative. Maybe it covers it, maybe not. 


It depends which solution you want, a simple way is to use the framedtext
environment which can be positioned on the right margin, complexes
solutions are possible but they require more code.

\defineframedtext[epigraph][location=right,frame=off,offset=.25ex]

\starttext

\title{Ward}

\startepigraph
  \input ward
  \hairline
  \wordright{Ward}
\stopepigraph

\stoptext

Wolfgang
___________________________________________________________________________________
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] 4+ messages in thread

end of thread, other threads:[~2013-03-03 17:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-03  3:34 About Chapter head definition and FunnyFrame Jeong Dalyoung
2012-09-03  4:35 ` Wolfgang Schuster
2013-03-03 14:52   ` john Culleton
2013-03-03 17:54     ` Epigraphs (was About Chapter head definition and FunnyFrame) Wolfgang Schuster

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