我刚刚全新安装了 Windows 10,并且正在尝试重新启动并运行 Latex。
我刚刚安装了基本的 MikTex 2.9 软件包和 TexMaker。我授予 MikTex 无需询问即可即时安装软件包的权限。
我遇到的第一个问题是我的数字不再可汇编。
代码:
\usepackage{mathptmx}
\usepackage{graphicx}
\usepackage{times}
\begin{figure}[h!]
\centering
\includegraphics[width=\columnwidth]{PercentageGraph}
\caption{Accuracy in visual degrees versus how much of the data
can be expected to fall within that radius. }
\end{figure}
PercentageGraph.png 与我所有的其他文档位于同一目录中。
latex报的错误:
!LaTeX Error: File `PercentageGraph' not found.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.326 ...hics[width=\columnwidth]{PercentageGraph}
I could not locate the file with any of these extensions:
.eps,.ps,.eps.gz,.ps.gz,.eps.Z,.mps
Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.
我理解的没错,它不再搜索 png、jpeg、pdf 等?如何将这些文件扩展名重新放入图像搜索条件中?
答案1
您用来latex
生成文档(Texmaker 中的快捷键 F2),在这种情况下,您只能包含 EPS 文件。要包含 JPEG 和 PNG 图像,您需要使用pdflatex
(快捷键 F6)。lualatex
并且xelatex
还可以处理 JPEG 和 PNG。