具有正负公差的 TikZ 图的高度

具有正负公差的 TikZ 图的高度

我试图将 TikZ 图表放入我正在撰写的论文中,并使图表的高度为具有正/负公差的高度。 MWE 如下所示:

\begin{minipage}{\columnwidth}
    \begin{center}
        \begin{tikzpicture}
            \begin{axis}[legend pos=north east,
                xlabel=Number of Elements,
                ylabel=Bending Stress,
                height=0.25\textheight, % add plus/minus tolerance here
                width=\columnwidth
                ]
                \addplot[very thick] coordinates {
                    (2,4.3)
                    (4,2.78)
                    (6,1.96)
                    (10,1.24)
                    (20,0.93)
                    (30,1.04)
                    (56,1.15)
                    (80,1.22)
                    (140,1.54)  
                };

                \legend {Line 1}
            \end{axis}
        \end{tikzpicture}
        \captionof{figure}{BENDING STRESS VS. OFFSET LENGTH}
    \end{center}
\end{minipage}

根据部分标题的位置,我想改变 TikZ 图的高度以使其更好地适合页面。

我找不到任何可以在 TikZ 环境中使用的东西。例如,

height=0.25\textheight plus 0.03\textheight

引发错误。

相关内容