打造完美尖角 Tikz

打造完美尖角 Tikz

我制作的这个 Cusp 显得很尴尬,而且我无法修复它。

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=1,cap=round]
 \tikzset{axes/.style={}}
 % The graphic
\begin{scope}[style=axes]
\draw[->] (-.5,0) -- (3,0) node[below] {$x$};
\draw[->] (0,-.5)-- (0,3) node[left] {$y$};
\draw (0.25,0.4) to [out=10,in=80] (1.5,2.5);
\draw (1.5,2.5) to [out=-80, in=175] (2.75,.4);
%%%
\end{scope}
\end{tikzpicture}
\end{document}

输出:

在此处输入图片描述

我正在努力实现:

在此处输入图片描述

请注意,它也不是完全对称的,但头部更干净。

答案1

我猜想登录80就是\draw (0.25,0.4) to [out=10,in=80] (1.5,2.5);罪魁祸首。

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=1,cap=round]
 \tikzset{axes/.style={}}
 % The graphic
\begin{scope}[style=axes]
\draw[->] (-.5,0) -- (3,0) node[below] {$x$};
\draw[->] (0,-.5)-- (0,3) node[left] {$y$};
\draw[thick] (0.25,0.4) to [out=10,in=-90]  (1.5,2.5)
 to [out=-90, in=175] (2.75,.4);
\draw[thin] (1.5,2.5) -- ++ (0.2,0.6) node[above]{$f'(a)$ does not exist};
\draw (1.5,0.2) -- (1.5,-0.2) node[below]{$a$};
%%%
\end{scope}
\end{tikzpicture}
\end{document}

在此处输入图片描述

答案2

下面是使用该pgfplots包的解决方案,它扩展tikz为包括各种各样的绘图选项:

\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}\begin{axis}[xmin=0,xmax=1,ymin=0,xtick={0.5},xticklabels=$a$,axis lines=left,ymajorticks=false,xlabel=$x$,ylabel=$y$,clip=false]
\addplot  [domain=0.1:0.5] {0.1+x^2} node [pos=0.2,above left] {$f$};
\addplot  [domain=0.5:0.9] {0.1+(x-1)^2} node[pin={90: $f'(a)$ does not exist.} ] at (axis cs:0.5,0.35) {};
\end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

答案3

PSTricks 解决方案仅用于比较目的。

\documentclass[pstricks]{standalone}
\usepackage{pst-plot,pst-plot}
\def\f#1{(x-#1)^2+1}
\begin{document}
\begin{pspicture}[algebraic,ticks=none,labels=none](-.4,-.5)(4.5,3.5)
\psaxes{->}(0,0)(-.3,-.4)(4,3)[$x$,0][$y$,90]
\psplot{1}{2}{\f{1}}
\psplot{2}{3}{\f{3}}
\psxTick[labelsep=1pt](2){a}
\rput(2.2,3){\rnode[b]{a}{$f'(a)$ does not exist}}
\pcline[nodesep=2pt]{->}(a)(*2 {\f{1}})
\end{pspicture} 
\end{document}

在此处输入图片描述

相关内容