Graphics, Figures & Tables ⇒ drawing a parabola
-
- Posts: 2
- Joined: Fri Oct 03, 2014 1:32 pm
drawing a parabola
parabola[options]{arrows}(x0,y0)(x1,y1). What should i do?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
drawing a parabola
Can you give any information where this command is coming from and what you are trying to do?
Code: Select all
% arara: xelatex
\documentclass{article}
\usepackage{pst-plot}
\usepackage{tikz}
\begin{document}
\begin{pspicture}(-4,-4)(4,4)
\psparabola(2,4)(0,0)
\end{pspicture}
\begin{tikzpicture}
\draw (0,0) parabola (1.5,2.25) ;
\draw (0,0) parabola (-1.5,2.25) ;
\end{tikzpicture}
\end{document}
-
- Posts: 2
- Joined: Fri Oct 03, 2014 1:32 pm