latex
Issues on the PDF and TeX generation
I found two disturbing issues when creating a PDF or a Tex file from a node.
First, the PDF is not updated, once it is created the first time. The reason is this test located in the drutex_node2pdf_wrapper function:
if (!is_file("$pdf_dir/{$node->nid}.pdf")) {
drutex_node2pdf($nid);
}I just commented the test in my site. PDF should be generated each time it is requested, as node might have been updated in the meanwhile.
PDF Generation error
Hi folks:
I've been playing around with the module, and I found an error when converting html tags to latex commands (more precisely, when converting the tag <em> to the \emph{} command).
For some reason I got a "\" before the opening curly bracket, so the command - \emph{ whatever } - was not properly recongized.
