Command/definestructureconversionset

From Wiki
< Command
Revision as of 13:49, 3 July 2012 by Esteis (talk | contribs) (Complete page)
Jump to navigation Jump to search

\definestructureconversionset

Syntax

\definestructureconversionset[name][conversion,conversion,...][default]
[name] Name of the conversion set
[conversion,conversion,...] Conversions for \part, \chapter, \section, etc.
[default] Default setting if no explicit conversion is set

Description

The command defines conversion of internal counters.

The first argument is just the name which is used as argument for sectionconversionset in \setuphead, and for prefixconversionset in \setupcaption, \setupenumerations etc. The name of the conversion can be prefixed with the name of a sectionblock, e.g. \definestructureconversionset.

With the second argument you can set a conversion of the counter for the headings. The list always starts at the \part level and continues with \chapter etc. but it’s possible to leave entries empty.

With the third argument one can set a default value which is used when no value for a heading is set with the second argument.

Example

% mode=mkiv

\setuppapersize[A5]

\definestructureconversionset[myconversion]
    [A,   % part: capital letters
     KR,  % chapter: small caps Roman
      ,   % section: none defined (use fallback)
     m,   % subsection: medieaval, a.k.a. oldstyle
     R]   % subsubsection: capital Roman
    [r]

\setupheads
    [part,chapter,section,subsection,subsubsection]
    [before={}, after={}, 
     sectionconversionset=myconversion]

\part{Part}
\chapter{Chapter}
\section{Section}
\subsection{Subsection}
\subsubsection{Subsubsection}

See also

Help from ConTeXt-Mailinglist/Forum

All issues with:

definestructureconversionset