Created
August 23, 2017 13:01
-
-
Save Liam0205/94a5d1b5283688a02a432b8c7d200f7c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{tikz} | |
\begin{document} | |
\begin{tikzpicture} | |
\draw[domain = 0:2.2, smooth, variable=\x, blue, samples = 221] | |
plot ({\x}, {sqrt(\x)}) | |
node[anchor = west] {$ y = \sqrt x $}; | |
\end{tikzpicture} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment