我使用 \ includegraphics [height = 1.91in,width = 5in] {L1F2.jpg} 插入乳胶中。但是我想在乳胶中绘制相似的图片并在其上添加我自己的文字,类似于包含的内容并更改箭头中的小部分。最好的方法是什么。
答案 0 :(得分:0)
您需要\usepackage{tikz}
。使用TikZ和PGF制作的图形示例可在texample.net/tikz找到。
一个简单的例子:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[-] (0,0) -- (0,4) node[below left] {$y$}; % Draw the y-axis
\draw[-] (0,0) -- (4,0) node[below left] {$x$}; % Draw the x-axis
\foreach \x in {1,2,3} % Iterate through {1,2,3} to assist the next line
\draw[shift={(\x,0)}] (0,3pt) -- (0,0pt) node[below] {$x_\x$}; % Mark the intervals
\clip (0,0) rectangle (4,4); % Limit the domain and range of the graph
\draw (0,0) plot ({\x},{\x^2}); % Draw a function of \x
\end{tikzpicture}
\end{document}
(我知道这是一个简单的线性回归模型,但刚刚开始进行大学微积分,我还不知道如何在不知道$beta_0$
和{{1}的值的情况下在gnuplot中编写这个函数}。)