求latex代码··latex作图问题····用latex有一幅图但是点太大,我不知道怎么改用的是\bullet,另外一种就是\codt,但是用\codt那是像句号一样的小点,\begin{picture}(200,100)(0,0)\put(10,60){\vector(1,0){130}} \put

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/29 20:56:44

求latex代码··latex作图问题····用latex有一幅图但是点太大,我不知道怎么改用的是\bullet,另外一种就是\codt,但是用\codt那是像句号一样的小点,\begin{picture}(200,100)(0,0)\put(10,60){\vector(1,0){130}} \put
求latex代码··latex作图问题····
用latex有一幅图但是点太大,
我不知道怎么改用的是\bullet,另外一种就是\codt,
但是用\codt那是像句号一样的小点,
\begin{picture}(200,100)(0,0)
\put(10,60){\vector(1,0){130}} \put(70,-20){\vector(0,1){105}}
\qbezier(62,-15)(75,60)(80,60)
\put(150,60){\;$t\;$}
\put(80,65){\;$\varepsilon\;$}
\put(75,25){\;$-C_0\;$}
\put(65,25){\;$\bullet\;$}
\put(74,57){\;$\bullet\;$}
\end{picture}

求latex代码··latex作图问题····用latex有一幅图但是点太大,我不知道怎么改用的是\bullet,另外一种就是\codt,但是用\codt那是像句号一样的小点,\begin{picture}(200,100)(0,0)\put(10,60){\vector(1,0){130}} \put
\documentclass{ctexart}
\usepackage{amsmath,tikz,pgfplots}
\usetikzlibrary{arrows}
\begin{document}
\begin{tikzpicture}
\fill[black!100] (0.5,0) node[above]{$\mathcal{E}$} circle (0.3ex);
\fill[black!100] (0,-1) node[right]{$-C_0$}circle(0.3ex);
%箭头样式参看pgfmanual第256页
\draw[thick,->,>=angle 90](-2,0)--(2,0)node[right] {$x$};
\draw[thick,->,>=angle 90](0,-3)--(0,1) node[above] {$f(x)$};
%坐标的简易代码
%\tikz\draw[thick,<->,>=angle 90](0,2)node[above] {$f(x)$}-|(0,0)--(2,0)node[right] {$x$};
%作函数图象参看pgfmanual第225页
\draw[domain=-0.8:0.5] plot (\x,{2*\x-1}); 
\end{tikzpicture}
\end{document}