Advertisement
wilk_maciej

5_2

Jun 7th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.99 KB | None | 0 0
  1. \documentclass{standalone}
  2. \usepackage[T1]{fontenc}
  3. \usepackage[latin2]{inputenc}
  4. \usepackage[english]{babel}
  5. \usepackage{tikz}
  6. \usepackage{times}
  7. \usetikzlibrary{calc,through,backgrounds,positioning,fit}
  8. \usetikzlibrary{shapes,arrows,shadows}
  9.  
  10. \begin{document}
  11.  
  12. \tikzstyle{place}=[shape=circle, draw, minimum height=10mm]
  13. \tikzstyle{trig}=[shape=circle, draw, dashed, minimum height=10mm]
  14. \tikzstyle{trans}=[shape=rectangle, draw, minimum height=6mm, minimum width=12mm]
  15.  
  16. \centering
  17. \begin{tikzpicture}[scale=1,inner sep=0.4mm]
  18. \draw[step=5mm,draw=black!30!white,very thin] (-1.9,-0.9) grid (1.9,2.9);
  19. \draw[thick] [->] (-2,0) -- (2,0) node [right=3pt] {$x$};
  20. \draw[thick] [->] (0,-1) -- (0,3) node [right=3pt] {$y$};
  21. \draw [red] (0,0) parabola (1.2, 2.88) ;
  22. %czy jest moĹźliwe dorobienie tego y=x^2 w \draw [red] (0,0) parabola (1.2, 2.88) node [lokalizacja] {tekst};
  23. \draw [red] (1.2,0.49) node {$y=x^2$};
  24. \draw [red] (0,0) parabola (-1.2, 2.88);
  25.  
  26. \end{tikzpicture}
  27.  
  28. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement