How to autonumber table titles
Hello,
Right now I have my Native PDF template set to add a prefix before all tables titles. It looks like this:
Table #: Title here in DITA
My question is, how do I replace that # with autonumbering? I'd like it to count the entirety of the document for this number (not reset per topic/chapter).
Here is the source I'm using:
table .title {
font-size: 12pt;
font-weight: bold;
text-align: left;
color: #001F3F;
margin-top: 2px;
margin-bottom: 2px;
}
table .title::before {
content: "Table #: ";
font-weight: bold;
}
Thanks in advance for your help!
Josh