我正在嘗試將 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
拋出錯誤。