Matthias Wende
21. Januar 2016 um 14:04
Hello list,

After using the \startappendices command the entire document becomes an
appendix. After the command the numbering restarts.
You forgot the start/stop commands for the frontpart and bodypart!
Here is a simple example.

-----------------------------
\setuplabeltext
[appendix=Appendix~]
\setuphead
[chapter]
[page=no]
\setuphead
[section]
[appendixlabel=appendix]
\setuplist
[section]
[label=yes]

\starttext
\startfrontmatter
\title{Contents}
\placelist[title,chapter,section][criterium=all,alternative=c]
\stopfrontmatter

\startbodymatter
\chapter{First Chapter}
\section{First Section}
\chapter{Second Chapter}
\stopbodymatter
\startappendices

\chapter{Appendices}
\section{First Appendix}

\stopappendices

\stoptext
Wolfgang