以下 TikZ 代码运行良好
\begin{tikzpicture}[scale=1.0, xscale=0.010, yscale=0.10]
\draw[magenta,line width=1pt] plot coordinates {
(1,100.00) (2,99.29) (3,99.14) (4,98.65) (5,99.31)
(6,99.30) (7,99.70) (8,99.98) (9,98.88) (10,99.77)
(11,99.75) (12,99.88) (13,99.55) (14,100.15) (15,100.21)
...
(561,154.35) (562,154.60) (563,154.38) (564,156.64) (565,156.26)
(566,157.17) (567,157.78) (568,157.11) (569,154.20) (570,154.05)
(571,153.74) (572,154.54) (573,153.87) (574,154.95) (575,154.00)
};
\end{tikzpicture}
图片已附加。
当我再添加一行数据时:
\begin{tikzpicture}[scale=1.0, xscale=0.010, yscale=0.10]
\draw[magenta,line width=1pt] plot coordinates {
(1,100.00) (2,99.29) (3,99.14) (4,98.65) (5,99.31)
(6,99.30) (7,99.70) (8,99.98) (9,98.88) (10,99.77)
(11,99.75) (12,99.88) (13,99.55) (14,100.15) (15,100.21)
...
(561,154.35) (562,154.60) (563,154.38) (564,156.64) (565,156.26)
(566,157.17) (567,157.78) (568,157.11) (569,154.20) (570,154.05)
(571,153.74) (572,154.54) (573,153.87) (574,154.95) (575,154.00)
(576,153.82) (577,154.67) (578,155.36) (579,155.63) (580,152.95)
};
\end{tikzpicture}
我收到错误消息“维度太大”。
这里有 580 对数字,116 行数字。
哪个维度太大了?我如何添加更多行?
答案1
使用x=0.010cm, y=0.10cm
而不是xscale=0.010, yscale=0.10
。scale
仅在坐标已转换为 之后才应用pt
,并且此时您超出了\maxdimen
。
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=1.0, x=0.010cm, y=0.10cm]
\draw[magenta,line width=1pt] plot coordinates {
(1,100.00) (2,99.29) (3,99.14) (4,98.65) (5,99.31)
(6,99.30) (7,99.70) (8,99.98) (9,98.88) (10,99.77)
(11,99.75) (12,99.88) (13,99.55) (14,100.15) (15,100.21)
%...
(561,154.35) (562,154.60) (563,154.38) (564,156.64) (565,156.26)
(566,157.17) (567,157.78) (568,157.11) (569,154.20) (570,154.05)
(571,153.74) (572,154.54) (573,153.87) (574,154.95) (575,154.00)
(576,153.82) (577,154.67) (578,155.36) (579,155.63) (580,152.95)
};
\end{tikzpicture}
\end{document}
答案2
纯tikz
图像大小已达到极限。我宁愿使用pgfplots
而不必担心tikzpicture
缩放:
\documentclass{article}
\usepackage]{geometry}
\usepackage{pgfplots}
%---------------- show page layout. don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%
\begin{document}
\begin{tikzpicture}
\begin{axis}[width=\linewidth,
grid, % if you like, otherwise delete
xmin=0, xmax=600]
\addplot [magenta,line width=1pt] coordinates {
(1,100.00) (2,99.29) (3,99.14) (4,98.65) (5,99.31)
(6,99.30) (7,99.70) (8,99.98) (9,98.88) (10,99.77)
(11,99.75) (12,99.88) (13,99.55) (14,100.15) (15,100.21)
%
(561,154.35) (562,154.60) (563,154.38) (564,156.64) (565,156.26)
(566,157.17) (567,157.78) (568,157.11) (569,154.20) (570,154.05)
(571,153.74) (572,154.54) (573,153.87) (574,154.95) (575,154.00)
(561,154.35) (562,154.60) (563,154.38) (564,156.64) (565,156.26)
%
(575,153.82) (577,154.67) (578,155.36) (579,155.63) (580,152.95)
};
\end{axis}
\end{tikzpicture}
\end{document}