I am converting a .rst document to .tex using pandoc and I would like to modify variables such as $date in a .rst document. I use:
The variable is indeed overridden, but the use of such field lists creates a definition section in the resulting LaTeX document:
\title{My doc title} \date{Octobre} \begin{document} \maketitle \begin{description} \end{description}
This empty description makes compiling LaTeX unsuccessful. When I do not use field lists, it disappears.
How can I avoid this description section when using field lists in my RST document?
source share