``` % pandoc -f latex -t native This reference to Table \ref{tbl:label} doesn't work. \begin{table} \caption{This caption has no number.}\label{tbl:label} \begin{tabular}{ l c r } -------- & -------- & -------- \\ -------- & -------- & -------- \\ \end{tabular} \end{table} This reference to Figure \ref{fig:label} works fine. \begin{figure} \includegraphics[width=\textwidth]{example.png} \caption{A numbered caption, if I use pandoc-crossref.}\label{fig:label} \end{figure} ^D [ Para [ Str "This reference to Table " , Link ( "" , [] , [ ( "reference-type" , "ref" ) , ( "reference" , "tbl:label" ) ] ) [ Str "1" ] ( "#tbl:label" , "" ) , Str " doesn\8217t work." ] , Div ( "tbl:label" , [] , [] ) [ Table ( "" , [] , [] ) (Caption Nothing [ Plain [ Str "This caption has no number." ] ]) [ ( AlignLeft , ColWidthDefault ) , ( AlignCenter , ColWidthDefault ) , ( AlignRight , ColWidthDefault ) ] (TableHead ( "" , [] , [] ) []) [ TableBody ( "" , [] , [] ) (RowHeadColumns 0) [] [ Row ( "" , [] , [] ) [ Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "\8212\8212\8211" ] ] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "\8212\8212\8211" ] ] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "\8212\8212\8211" ] ] ] , Row ( "" , [] , [] ) [ Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "\8212\8212\8211" ] ] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "\8212\8212\8211" ] ] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "\8212\8212\8211" ] ] ] ] ] (TableFoot ( "" , [] , [] ) []) ] , Para [ Str "This reference to Figure " , Link ( "" , [] , [ ( "reference-type" , "ref" ) , ( "reference" , "fig:label" ) ] ) [ Str "1" ] ( "#fig:label" , "" ) , Str " works fine." ] , Para [ Image ( "fig:label" , [] , [ ( "width" , "\\textwidth" ) ] ) [ Str "A numbered caption, if I use pandoc-crossref." ] ( "example.png" , "fig:" ) ] ] ```