我曾经对其他问题进行过截图,但是效果很差。
我希望能够画直线,然后再画二次方等等。
y=3x+2
显示和标签
- x 和 y 轴
- 起源
- y 截距
- 线,标有功能
答案1
让我建议一个使用该pgfplots
包的可能解决方案。文档致力于提供简单易懂的初学者教程。
\documentclass{article}
\usepackage{pgfplots}
\usetikzlibrary{intersections}
\begin{document}
\begin{tikzpicture}
\begin{axis}[domain=0:3,no marks,xlabel=$x$,ylabel=$y(x)$]
\addplot+[name path=A] {2*x-1};
\addlegendentry{$2 x - 1$};
\addplot+[name path=B] {0.5*x+1};
\addlegendentry{$x/2 + 1$};
\path[name intersections={of=A and B}]
node[draw,fill,circle,inner sep=1pt,pin={above left:Intersection}]
at (intersection-1) {};
\end{axis}
\end{tikzpicture}
\end{document}