我已经在 tikz 图中计算了一个变量的值
\def\smax{750}
\def\samb{100}
\def\H{5}
\pgfmathsetmacro\R{H*\sqrt{((\smax*\smax)/(\samb*\samb)-1)}}
\R
我想在我的图表中显示的值:
\coordinate [label=right :$R$ = \R] (mmm) at (5,5);
这不显示数值,只显示字母“R”
答案1
你的意思是这样的:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{fpu}
\usepackage{xfp}
\begin{document}
\def\smax{750}
\def\samb{100}
\def\H{5}
%%https://tex.stackexchange.com/questions/417691/dimension-too-large-error-apparently-no-calculation-involved
\begin{tikzpicture}
\pgfmathsetmacro\R{\H*\fpeval{(((\smax^2)/(\samb^2))-1)^0.5}}
\node at (5,5) {R=\R};
\end{tikzpicture}
\end{document}
要得到:
请注意,我在这里直接使用了\node
。但是,如果您想继续使用\coordinate
,请定义一个并将放置\node
在该特定位置\coordinate
并继续;-)
。