PGFplots(Windows 和 Linux)编译问题

PGFplots(Windows 和 Linux)编译问题

因此,我正在与一个小组一起撰写一份报告,其中我使用带有 texlive 的 Debian,而我的小组成员使用带有 miktex 的 Win 7 和 Win 8。

我在我的机器上使用 PGFplot 制作了一些图,看起来像这样

\documentclass[12pct]{article}
\usepackage[utf8]{inputenc}
\usepackage[danish]{babel}
\usepackage{amsmath , amsfonts , amssymb}
\usepackage{pgfplots}
\usepackage{tikz}
\begin{document}

\begin{tikzpicture}
\begin{axis}[
  title = $\theta_{arm}$ som funktion af tiden,
  xlabel=$t$,
  ylabel=$\theta_{arm}$,
  ytick={1, 1.5, 2, 2.5, 3,3.5, 4, 4.5, 5}
  ]
\addplot [blue] table {theta_arm.dat};
\addlegendentry{$\theta_{arm}(t)$}

\end{axis}
\end{tikzpicture}
\end{document}

使用这样的 .dat 文件

0   1.57079632679490
0.0100000000000000  1.57101942671423
0.0200000000000000  1.57168870522067
0.0300000000000000  1.57280410752281
0.0400000000000000  1.57436554186042
0.0500000000000000  1.57637287884632
0.0600000000000000  1.57882595054590
0.0700000000000000  1.58172454929509
0.0800000000000000  1.58506842625795
0.0900000000000000  1.58885728972526

但是当我的一个小组成员尝试编译时,他收到与 pgfplots 相关的错误。我已确保该包已通过 miktex 包安装程序 (admin) 安装。他使用 texmaker 作为编辑器

有人能帮我解决这个问题吗,或者澄清 miktex 和处理 pgfplots 是否没有任何子编译,就像 eps 文件一样

相关内容