Something odd I ran into the other day was that if I label my figure with \label{methods}, the figure references fail to populate in the output. Switching to \label{methods1}, then the figure appears. Not sure if its a reserved word that gets parsed, but it was odd.
Concrete example:
Label figure as such:
![**\label{methods}Figure \ref{methods}. Overview of methods.](path/to/fig.pdf){fullwidth=t}
Observe output:
Switch to:
![**\label{methods1}Figure \ref{methods1}. Overview of methods.](path/to/fig.pdf){fullwidth=t}
I have run into this before, with another common word like 'method'. I don't have an explanation. It's got to be something clashing somewhere, either in pandoc or latex, with some reserved word.
Something odd I ran into the other day was that if I label my figure with
\label{methods}
, the figure references fail to populate in the output. Switching to\label{methods1}
, then the figure appears. Not sure if its a reserved word that gets parsed, but it was odd.Concrete example: