tomduck / pandoc-tablenos

A pandoc filter for numbering tables and table references.
GNU General Public License v3.0
108 stars 8 forks source link

Help wanted: No caption prefix like "Table 1. " when converting tex to docx file #28

Open zhenjieliang opened 3 years ago

zhenjieliang commented 3 years ago

a minimal reproducible example

\documentclass[12pt]{article}

\begin{document}

\begin{table}
  \begin{center}
    \begin{tabular}{|l|l|r|}
      \hline
      & Cost (USD) & Cost Projected (2019 USD)\\
      \hline
      Ambulatory & 239 (2010) & 311\\
      Hospitalization & 1615 (2010) & 2107\\
      GDP per-Capita & 30,833 (2016) & 30,833\\
      \hline
    \end{tabular}
  \end{center}
  \caption{\label{tbl-costs} Costs for dengue burden in Puerto Rico}
\end{table}

\end{document}