我正在向 tikzpicture 添加一个节点,但它会使幻灯片上的图形偏心。我该如何解决这个问题?抱歉。我在这里或其他地方没有找到类似的问答。
我的示例代码:
\documentclass[12pt,aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
\usepackage{,tikz,pgfplots}
\usetheme{default}
\begin{document}
\begin{frame}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[
xmin=-4,
xmax=4,
xlabel={\empty},
ymin=0,
ymax=0.5,
xtick=\empty,
ytick=\empty,
enlargelimits=false,
clip=false,
height=9cm,
width=13cm,
hide y axis,
no markers,
axis lines*=left,
]
\addplot[color=black,domain=-4:4,samples=100] {1/sqrt(2*pi)*exp(-x^2/2)};
\addplot+[color=black,fill= blue,mark=none,domain=1:2,samples=100,] {1/sqrt(2*pi)*exp(-x^2/2)} \closedcycle;
\draw [red] (axis cs:0,0) -- (axis cs:0,0.40);
\node[below] at (axis cs:2.8, 0.4) {VERY LONG TEXT HERE MOVES THE IMAGE};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{frame}
答案1
您可以使用
\node[draw,text width=3cm, font=\small] at (axis cs:2.8, 0.4) {VERY LONG TEXT HERE MOVES THE IMAGE};
没有绘图,没有矩形。