<?xml version="1.0" encoding="UTF-8"?>
<annotation-specification>
    <!-- In the file, all information about annotation categories for different annotation tiers are placed within this "annotation-specification". -->
    <annotation-set exmaralda-tier-category="the name of the annotation tier category">
        <!-- For each annotation tier category you need one "annotation-set" - to create annotation descriptions for further annotation tiers, copy the whole annotation-set element (everything between and including "<annotation-set>" and "</annotation-set>"). -->
        <!-- Below are the different annotation categories -->
        <!-- The first category is a simple annotation category with no subcategories - to create further simple categories, copy the whole category element (everything between and including the next "<category>" and "</category>"). -->
        <category name="the name of the annotation category">
            <tag name="the name of the tag that will be inserted into the anntotation tier"/>
            <description>Here is the description of this category with all necessary classification criteria.</description>
        </category>
        <!-- This second category features two subcategories - to create further categories with subcategories, copy the whole category element (everything between and including the next "<category>" and the next "</category>" that follows directly after a  "</category>").  -->
        <category name="the name of the annotation category with subcategories">
            <tag name="the name of the tag that will be inserted into the anntotation tier"/>
            <description>Here is the description of this category with all necessary classification criteria.</description>
            <!-- Below are the different subcategories, please note the "</category>" that closes the main category is placed after the subcategories. -->
            <category name="the name of the first  subcategory">
                <tag name="the name of the tag that will be inserted into the anntotation tier"/>
                <description>Here is the description of this category with all necessary classification criteria.</description>
            </category>
            <category name="the name of the second  subcategory">
                <tag name="the name of the tag that will be inserted into the anntotation tier"/>
                <description>Here is the description of this category with all necessary classification criteria.</description>
            </category>
        </category>
        <!-- This "</category>" in the line above is the end tag for the category with subcategories. -->
    </annotation-set>
</annotation-specification>
