我在为该包突出显示一些 Python 代码时遇到了一些问题minted
。我最终尝试恢复所有更改,因为我无法让它工作。显然我可能已经破坏了编译器,因为我被这条消息困住了
Error: Could not start the command: Compile & View
即使恢复默认命令pdflatex -synctex=1 -interaction=nonstopmode %.tex
并确保它是默认编译器PdfLaTeX
并清理辅助文件后,错误仍然存在。
我最终清除了 TeXstudio、texlive 和 tex-common,然后重新安装它们。然而错误仍然持续存在。
甚至尝试编译
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\begin{document}
\section{Some section}
something
\part{title}
\end{document}
导致错误。
使用 TexStudio 编译时出现以下错误:编译结果为Error: Could not start the command: PdfLaTeX
出于纯粹的沮丧,我删除了 python 和 pip,不抱任何希望,也没有得到预期的结果。
编辑
需要注意的是,通过一些评论,我认为我们可以将其缩小为 TexStudio 配置,因为它确实通过终端按预期进行编译。
~/LaTex/bachelor-template » latex -v 127 ↵ jonas@jonas-ThinkPad-L480
pdfTeX 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian)
kpathsea version 6.3.1
Copyright 2019 Han The Thanh (pdfTeX) et al.
There is NO warranty. Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Han The Thanh (pdfTeX) et al.
Compiled with libpng 1.6.37; using libpng 1.6.37
Compiled with zlib 1.2.11; using zlib 1.2.11
Compiled with xpdf version 4.01
答案1
欢迎使用 TeX SE!
我认为您的代码没有提供任何输出,因为您没有在中添加内容document
。当您开始在 LaTeX 中处理文档时,文件中有两个不同的部分:
\documentclass[a4paper,10pt]{article}
% Preamble
% This is where you add packages and you set your layout
\begin{document}
% Content
% This is what will show up in your PDF
\end{document}
编辑:关于 TeXStudio,我认为这个答案和这个答案可以帮到你。如果你需要知道pdflatex
你的电脑在哪里,你可以在命令提示符中使用以下命令(如果你使用的是 Windows):
whereis pdflatex