我正在使用 Texmaker 以 LaTeX 格式撰写一些数学笔记,并想其中包含一些图表(来自图像文件)。
当我包含 graphicx 包时,每当我将文件编译为 pdf 时,我都会不断收到一个标题为“包安装”的弹出窗口,提示缺少“tex\context\base\supp-pdf.mkii”,并要求我安装 mptopdf。
如果我单击安装,pdf 可以正常编译和加载(至少看起来是这样),但它也会在下次再次提示我安装!
我可以取消选中“显示此对话框”复选框,但我觉得最好还是妥善解决这个问题。有什么建议吗?
以下是我的序言:
\documentclass[a4paper,12pt]{article}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{graphicx}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{definition}{Definition}
我想要图像的一行是
\includegraphics[width=10cm]{trianglesymettries.png}
但即使没有这行代码,我也会看到弹出窗口。(只有删除“\usepackage{graphicx}”后,它才会停止。)
我正在使用 Texmaker 4.0.4 和 Windows 8 上的 MiKTeX 2.9 发行版进行编辑。