diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-28 01:10:04 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-28 01:10:04 +0000 |
commit | b29f221cba949934dda402f96b1606cda8ed73a6 (patch) | |
tree | 580d523e7c5980164d25527c27894865845c10f7 /src/wrappers | |
parent | 4283ce3662cbb4b9d3165aef40455203ae106c47 (diff) | |
download | pandoc-b29f221cba949934dda402f96b1606cda8ed73a6.tar.gz |
Changed LaTeX writer to use the examplep package instead
of fancyvrb. examplep allows verbatim text in places where
fancyvrb does not, e.g. definition list terms, and provides
for line-breaking of verbatim text.
+ examplep code put in LaTeX header instead of being dynamically
included, since it is frequently used, and people may want to
customize the options.
+ documented dependency on examplep
+ added texlive-latex-extra as a "Suggested" package in debian/control
+ use examplep's \Q{} is now used instead of \verb: note that
\Q requires backslash- escaping symbols in its scope.
+ modified README so that the verbatim sections will look good at
shorter line lengths.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@807 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/wrappers')
-rw-r--r-- | src/wrappers/markdown2pdf.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wrappers/markdown2pdf.in b/src/wrappers/markdown2pdf.in index c9a01fa16..7347fd7d7 100644 --- a/src/wrappers/markdown2pdf.in +++ b/src/wrappers/markdown2pdf.in @@ -40,9 +40,9 @@ fi err "${THIS}: Please install the 'unicode' package from CTAN:" err " http://www.ctan.org/tex-archive/macros/latex/contrib/unicode/" fi - if grep -q "File \`fancyvrb.sty' not found" $texname.log; then - err "${THIS}: Please install the 'fancyvrb' package from CTAN:" - err " http://www.ctan.org/tex-archive/macros/latex/contrib/fancyvrb/" + if grep -q "File \`examplep.sty' not found" $texname.log; then + err "${THIS}: Please install the 'examplep' package from CTAN:" + err " http://www.ctan.org/tex-archive/macros/latex/contrib/examplep/" fi if grep -q "File \`ulem.sty' not found" $texname.log; then err "${THIS}: Please install the 'ulem' package from CTAN:" |