Am 25.10.2013 um 11:40 schrieb Procházka Lukáš Ing. - Pontex s. r. o.
Hello,
is there a default structure (if so, what is its name?) which would yield \subsection when used inside \section, so:
\starttext \section{Sec} \startstructurelevel[title={SSec}] % This should give \subsection, but gives \section (or higher) aaa \stopstructurelevel
\startstructurelevel[a-name-of-default][title={SSec2}] % This should give \subsection, but gives \section (or higher) aaa \stopstructurelevel \stoptext
You can’t mix sectionlevels and normal section command. When you want a \section for the first level change the level settings with \definesectionlevels [default] [section, subsection, subsubsection, subsubsubsection, subsubsubsubsection] and use \starttext \startsectionlevel[title=Section] \startsectionlevel[title=Subsection] \startsectionlevel[title=Subsubsection] \stopsectionlevel \stopsectionlevel \stopsectionlevel \stoptext in your document. Wolfgang