Formatting
Basically:
the text displayed for a new numbering is
**Category number** *(Title)*or**Category number**;the link displayed for an automatic reference is
Category numberusing the cite shortcut notation;the entry in the table of contents is
Category number(Categoryfor LaTeX document) orTitle.
These behaviors can be changed by adding metadata for a given category.
format-text-classicis for the text displayed (you can use special characters%D,%d,%s,%g,%n,#,%c)format-text-titleis for the text displayed when a title is present (you can use special characters%D,%d,%T,%t,%s,%g,%n,#,%c)format-link-classicis for the link displayed using the cite shortcut notation (you can use special characters%D,%d,%s,%g,%n,#,%c,%p)format-link-titleis for the link displayed when a title is present using the cite shortcut notation (you can use special characters%D,%d,%T,%t,%s,%g,%n,#,%c,%p)format-caption-classicis for the text displayed in the captions (you can use special characters%D,%d,%s,%g,%n,#and%pfor LaTeX)format-caption-titleis for the text displayed in the captions when a title is present (you can use special characters%D,%d,%T,%t,%s,%g,%n,#and%pfor LaTeX)format-entry-classicis for the entry displayed in the table of contents (you can use special characters%D,%d,%s,%g,%n,#)format-entry-titleis for the entry displayed in the table of contents when a title is present (you can use special characters%D,%d,%T,%t,%s,%g,%n,#)
By default these values are equal to
---
pandoc-numbering:
exercise:
standard:
format-text-classic: '**%D %n**'
format-text-title: '**%D %n** *(%T)*'
format-link-classic: '%D %n'
format-link-title: '%D %n (%T)'
format-caption-classic: '%D %n'
format-caption-title: '%D %n (%T)'
format-entry-title: '%T'
format-entry-classic': '%D %g'
latex:
format-text-classic: '**%D %n**'
format-text-title: '**%D %n** *(%T)*'
format-link-classic: '%D %n'
format-link-title: '%D %n (%T)'
format-caption-classic: '%D %n'
format-caption-title: '%D %n (%T)'
format-entry-title: '%T'
format-entry-classic: '%D'
---