Dustinsfl
- 2,217
- 5
How can I add a couple arrows on this line?
Code:
\draw (3.14,-3.14) -- (3.14,3.14
\draw (3.14,-3.14) -- (3.14,3.14
dwsmith said:How can I add a couple arrows on this line?
Code:\draw (3.14,-3.14) -- (3.14,3.14
\draw [<->](3.14,-3.14) -- (3.14,3.14);
Sudharaka said:This will do I guess,
Code:\draw [<->](3.14,-3.14) -- (3.14,3.14);
^
|
^
|
dwsmith said:I am looking for something like this.Code:^ | ^ |
\draw [->>](3.14,-3.14) -- (3.14,3.14);
Sudharaka said:There is a drawing editor called Ipe extensible drawing editor which can be used to include figures in LaTeX documents. I am using this for a long time now and I find it quite handy. Since I saw a couple of threads made by you regarding drawing figures in LaTeX, thought you might be interested in this. :)
The codedwsmith said:[->>] produced the arrow heads right behind each other. Is there a way to put arrows at 1/3 intervals on the line?
\usetikzlibrary{decorations.markings}
\begin{tikzpicture}
\draw[decoration={
markings,% switch on markings
mark=at position .66 with {\arrow{>}},
mark=at position 1 with {\arrow{>}}},
postaction={decorate}] (0,0) -- (0,1);
\end{tikzpicture}
dwsmith said:So I downloaded 7.0.1 but it says I need the 7.0.0 directories. Where do I get those at? How do I set it up once I have everything?
Sudharaka said:Please unzip the zip file you have downloaded and read the read-me file in it. There you will find that you need a file called, ipe-7.0.0-dependencies-win.zip. That can be downloaded http://fr.sourceforge.jp/projects/sfnet_ipe7/downloads/ipe/ipe-7.0.0-dependencies-win.zip/. Proceed as the read-me file instructs.
dwsmith said:Where do I save the files? How do I tell Winedt to interact with it?