Difference between revisions of "Command/definestructureconversionset"

From Wiki
Jump to navigation Jump to search
m (Nicer looking category link)
m (Add the case of enumerations in MkIV, as was discussed on the texexchange forum)
Line 35: Line 35:
 
The command defines conversion of internal counters.
 
The command defines conversion of internal counters.
  
The first argument is just the name which is used as argument for {{code|sectionconversionset}} in {{cmd|setuphead}}, and for {{code|prefixconversionset}} in {{cmd|setupcaption}}, {{cmd|setupenumerations}} etc. The name of the conversion can be prefixed with the name of a sectionblock, e.g. {{code|\definestructureconversionset|[bodypart:myconversion][A,I,n,R][numbers]}}.
+
The first argument is just the name which is used as argument for {{code|sectionconversionset}} in {{cmd|setuphead}}, and for {{code|prefixconversionset}} in {{cmd|setupcaption}}, {{cmd|setupenumerations}} etc in MkII, and for {{code|numberconversionset}} for the same purpose in MkIV. The name of the conversion can be prefixed with the name of a sectionblock, e.g. {{code|\definestructureconversionset|[bodypart:myconversion][A,I,n,R][numbers]}}.
 
   
 
   
 
With the second argument you can set a conversion of the counter for the headings. The list always starts at the {{cmd|part}} level and continues with {{cmd|chapter}} etc. but it’s possible to leave entries empty.
 
With the second argument you can set a conversion of the counter for the headings. The list always starts at the {{cmd|part}} level and continues with {{cmd|chapter}} etc. but it’s possible to leave entries empty.
Line 65: Line 65:
 
\subsection{Subsection}
 
\subsection{Subsection}
 
\subsubsection{Subsubsection}
 
\subsubsection{Subsubsection}
 +
</context>
 +
 +
 +
Be careful not to let a whitespace after {{code|myconversion}}, or it is taken as a part of it :
 +
 +
<context mode=mkiv source=yes>
 +
% mode=mkiv
 +
 +
\definestructureconversionset[questionNums][n,n,a,a][n]
 +
\defineenumeration[question]
 +
\setupenumeration[% some setups
 +
                  style=normal,
 +
                  numberconversionset=questionNums % this does not work : add a comma or close bracket here
 +
                ]
 
</context>
 
</context>
  

Revision as of 08:52, 18 July 2017

\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 in MkII, and for numberconversionset for the same purpose in MkIV. 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}


Be careful not to let a whitespace after myconversion, or it is taken as a part of it :

% mode=mkiv

\definestructureconversionset[questionNums][n,n,a,a][n]
\defineenumeration[question]
\setupenumeration[% some setups
                  style=normal,
                  numberconversionset=questionNums % this does not work : add a comma or close bracket here
                 ]

See also

Help from ConTeXt-Mailinglist/Forum

All issues with:

definestructureconversionset