在背面绘制以下右线后
\begin{tikzpicture}
\begin{axis}[
axis lines = left,
xlabel = $x$,
ylabel = {$f(x)$},
]
%Below the red parabola is defined
\addplot [
domain=-10:10,
samples=100,
color=red,
]
{((6*x - 48)/8)};
\addlegendentry{$6x + 8y = 48$}
我需要在同一个图上为 x = 6 添加一条垂直线。你能帮我解决这个问题吗?