TikZ: 「次元が大きすぎる」のはなぜですか?

TikZ: 「次元が大きすぎる」のはなぜですか?

以下の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}  

画像を添付します。

データをもう 1 行追加すると次のようになります。

\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}

ここに画像の説明を入力してください

関連情報