我正在编写的文档有许多 tex 文件。我想给我的编辑一份文档副本。该副本可能不是 pdf,因为编辑想要/需要编辑文档(拼写、语法),并且与 tex 完全不通用。
我怎样才能从我的乳胶源创建一个(例如 odt)?
答案1
似乎没有完美的解决方案。据说最好的方法是使用 Adobe 来保存由 LaTeX 生成的 PDF。
这里仍然有一些示例方法……
具有挑战性的设置
找到了解决方案https://ubuntuforums.org/showthread.php?t=1033441
这对于上述目的来说可能已经足够了,但问题仍然存在。
通过 HTML 进行转换
更坚固的应该是
latex2html texfile.tex -split 0 -no_navigation -info "" -address "" -html_version 4.0,unicode
libreoffice --headless --convert-to odt:"OpenDocument Text Flat XML" texfile/index.html
使用 pandoc 进行转换
pandoc -f latex -t odt -o output.odt input.tex