Windows 版 PDFlatex

发布于 2024-09-03 01:40:44 字数 89 浏览 4 评论 0原文

有谁知道如何在 Windows 中将 .tex 文件转换为 .pdf ?我尝试了 cygwin 但它说命令“pdflatex”无法识别

谢谢 菲利普

Does anyone know how to convert .tex files to .pdf in windows? I tried cygwin but it said the command "pdflatex" was not recognised

Thanks
Philip

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

孤星 2024-09-10 01:40:44

没有理由让 Cygwin 的事情变得复杂。下载并安装适用于 Windows 的 TeX 发行版 - 我个人使用 TeX Live,但也可以使用各种其他发行版,例如 MikTeXW32TeX

如果您想在参考书目中使用 UTF-8,并且正在使用 BibTeX,我建议使用 bibtexu 而不是常规的 bibtex(因为 bibtex 实际上并不支持 UTF-8)。 W32TeX 网站 上有下载。

There's no reason to complicate things with Cygwin. Go download and install a TeX distribution for Windows - I personally use TeX Live, but various other distributions are available, such as MikTeX or W32TeX.

If you want to use UTF-8 for your bibliography, and you're using BibTeX, I recommend using bibtexu instead of the regular bibtex (since bibtex doesn't actually support UTF-8). There's a download on the W32TeX site.

掌心的温暖 2024-09-10 01:40:44

如果您需要坚持使用 cygwin,请安装 texlive 和 texlive-collection-latex

If you need to stick with cygwin, install texlive and texlive-collection-latex

孤独岁月 2024-09-10 01:40:44

以下命令在 cygwin 下对我有用。我安装了 pandoc 1.13.2 和 MiKTeX 2.9.5105 64 位。然后我运行:

pandoc -s \
--latex-engine='C:\Program Files\MiKTeX 2.9\miktex\bin\x64\pdflatex.exe'  \
-f markdown_github -t latex \
"my-file.md" -o "my-file.pdf"

这里的关键是我在--latex-engine键中给出了MiKText的pdflatex.exe的完整路径,用引号引起来,使用windows路径(因为我安装的pandoc是windows pandoc,它需要windows-查找资源的样式路径)。

我使用 -f markdown_github 因为 my-file.md 的文件格式

我使用 -t latext 但这是可选的 AFAIK。

The following command worked for me, under cygwin. I installed pandoc 1.13.2 and MiKTeX 2.9.5105 64-bit. Then I ran:

pandoc -s \
--latex-engine='C:\Program Files\MiKTeX 2.9\miktex\bin\x64\pdflatex.exe'  \
-f markdown_github -t latex \
"my-file.md" -o "my-file.pdf"

The key here is that I gave the full path for MiKText's pdflatex.exe in the --latex-engine key, in quotes, using the windows path (as the pandoc I installed is the windows pandoc, it requires windows-style paths to find resources).

I used -f markdown_github because of the file format of my-file.md

I used -t latext but that's optional AFAIK.

倚栏听风 2024-09-10 01:40:44

在 Cygwin 中安装 tetex(以及可选的 tetex-extra)包对我有用。

Installing tetex(and optionally tetex-extra) package in Cygwin worked for me.

对不⑦ 2024-09-10 01:40:44

MikTex 和 texify 在普通 Windows 下为我工作。

MikTex and texify work for me under plain Windows.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文