Closed schuang closed 9 years ago
This is a bug due to a recent change (generation of latex code environments directly with doconce format
rather than using doconce ptex2tex
or ptex2tex
): \usepackage{fancyvrb}
is needed for \Verb
if the text contains inline verbatim but no verbatim code blocks. This is now fixed. Try again and it will work, but note that you cannot (normally) run pdflatex on test1.p.tex
, you have to do the doconce ptex2tex
step, or you can use the new option --latex_code_style=vrb
(or lst
or pyg
) to generate a .tex file directly.
Yes, it works now. Thank you!
Is there an option to make doconce generate
\verb
instead of\Verb
when using "format pdflatex"?When I run
where
the generated .tex file contains
\Verb
, causing the "undefined control sequence" error:If I replace the
\Verb
with\verb
, thenpdflatex test1.p.tex
runs ok: