我正在尝试在 Overleaf 中绘制线条。有人能帮我在第一四分位数画出 y = 2x, y=1/2 x 的线条吗?谢谢。
答案1
这是通过pgf图。也许它能帮助你入门。
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[]
\addplot[red]{2*x};
\addplot[blue]{x/2};
\end{axis}
\end{tikzpicture}
\end{document}
或者只是蒂克兹:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[->] (-3, 0) -- (3, 0) node[right] {$x$};
\draw[->] (0, -3) -- (0, 3) node[above] {$y$};
\draw[scale=0.5, domain=-3:3, smooth, variable=\x, blue] plot ({\x}, {2*\x});
\draw[scale=0.5, domain=-6:6, smooth, variable=\y, red] plot ({\y}, {\y/2});
\end{tikzpicture}
\end{document}