如何在 Linux 中将 Word(doc)转换为 PDF?

如何在 Linux 中将 Word(doc)转换为 PDF?

我有一组文件.doc格式,需要转换为.pdf格式。我使用的是 Ubuntu Linux。

答案1

方案 1)

sudo apt-get install cups-pdf

然后导航到系统>管理>打印并创建一个新的打印机,将其设置为PDF文件打印机,并将其命名为“pdf”。

然后运行:

oowriter -pt pdf your_word_file.doc

现在您可以在 ~/PDF 中找到您的 .pdf 文件。


方案 2)

sudo apt-get install wv tetex-extra ghostscript  
wvPDF test.doc test.pdf

如果您的发行版没有 tetex-extra 包,请尝试 texlive-base 和 texlive-latex-base:

sudo apt-get install wv texlive-base texlive-latex-base ghostscript  
wvPDF test.doc test.pdf

答案2

您可以使用:

oowriter -convert-to pdf:writer_pdf_Export doc_file.doc

答案3

打印为 PDF 会丢失大量文档元数据(标题、作者、用于导航的标题树等等)。

安装 反卷积,转换为:unoconv -fpdf file1.doc file2.doc…

答案4

如果您已经安装了 LibreOffice

lowriter --headless --convert-to pdf *.doc 

相关内容