我想知道为什么我的独立 tikz 图片在图片中途被裁剪?代码如下所示,没有输入数据文件。
\documentclass[tikz,border=0pt]{standalone}
\usepackage{tikz}
\usepackage{geometry}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{pgfplots}
\pgfplotsset{compat=1.12}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
title={$F_x$ vs. Time},
xlabel={Time ($s$)},
ylabel={Force ($N$)},
width=100mm, height=80mm,
xmin=0,
xmax=37.7,
xtick={0,5,10,15,20,25, 30, 35, 40},
xmajorgrids, xminorgrids, ymajorgrids,
legend style={
at={(0.05,0.97)},
anchor=north west,
legend cell align=left
}
]
\end{axis}
\end{tikzpicture}
\end{document}
答案1
似乎geometry
与 配合得不太好standalone
,删除该包会使 PDF 输出如预期。在这种情况下,无论如何肯定不需要geometry
,所以这不是损失。