Pandoc 不导出参考书目、图像和嵌套部分

Pandoc 不导出参考书目、图像和嵌套部分

我是 Pandoc 的新用户,主要用于转换.tex文件.odt格式。

以下命令:

pandoc -f latex -t odt -o prova.odt roottoptesi.tex

除了无法找到图像之外,其他都运行良好,如 pandoc 输出所示:

pandoc.exe: Could not find image `evolution.jpg', skipping...
pandoc.exe: Could not find image `ZoneUniversita.png', skipping...
pandoc.exe: Could not find image `dimensioniuniversita.png', skipping...
pandoc.exe: Could not find image `popolazionestudentesca.png', skipping...

第二个问题是,我没有在输出文件中打印出参考书目。我没有收到任何错误消息。

第三个问题是我无法包含.tex超出一个嵌套级别的文件。

以下是需要转换的 LaTeX 代码:

\documentclass[a4paper,12pt,twoside]{toptesi}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage{graphicx}
\graphicspath{ {immagini/} }
\usepackage{cite}
\bibliographystyle{plain}

\begin{document}
\input{intro.tex}
[...]
\input{cap5.tex}

\bibliography{biblioprova}
\end{document}

我猜图像的问题在于

  \graphicspath{ {immagini/} }

但我不太确定。

cap5.tex由四个不同的小节组成,我宁愿将它们保存在单独的文件中,并且无法将它们打印在最终的 .odt 文件中。本章的结构如下:

\chapter{Focus comparativo} \label{Cap5}
\input{sottosez5.1}
\input{sottosez5.2}
\input{sottosez5.3}
\input{sottosez5.4}

我可以轻松地将它们合并在一起,但也许我可以在 Pandoc 中解决这个问题。

至于参考书目,我不清楚其原因。

相关内容