在 Mathematica 中密度图如下
ShowLegend[
DensityPlot[Sin[x y], {x, 0, \[Pi]}, {y, 0, \[Pi]}, Mesh -> False,
PlotPoints -> 30], {ColorData["LakeColors"][1 - #1] &, 10, " 1",
"-1", LegendPosition -> {1.1, -.4}}]
对应的图是
当我将此图保存为 .eps 并希望在 Miktex 中使用它时
\documentclass[a4paper,pra,preprint]{revtex4}
\usepackage{pstool}
\usepackage{mathptmx}
\usepackage{newtxmath}
\usepackage{epstopdf}
\begin{document}
{\includegraphics[width=0.45\textwidth]{ttc.eps}}
\end{document}
然后在生成 .pdf 后我得到以下类型的图
从图中可以清楚地看出,缺少图例“1”。我不知道发生了什么,也不知道该如何修复。
答案1
您可以在 mathematica 中将您的图保存为 pdf 文件;例如“ttc.pdf”。然后将其包含到您的 tex 文件中
\includegraphics[width=0.45\textwidth]{ttc.pdf}