Dustinsfl
- 2,217
- 5
How can I add a couple arrows on this line?
Code:
\draw (3.14,-3.14) -- (3.14,3.14
The discussion revolves around adding arrows to lines in LaTeX using TikZ. Participants explore various methods for achieving different arrow styles and placements, as well as sharing tools for creating figures in LaTeX documents.
Participants express various methods for adding arrows, but there is no consensus on the best approach or specific implementation details. Some questions remain unresolved regarding the placement of arrows at intervals.
Participants mention specific versions of software and dependencies, indicating potential limitations in compatibility and setup processes. The discussion includes technical details that may depend on individual setups and configurations.
This discussion may be useful for LaTeX users interested in graphical representations, particularly those using TikZ for drawing and those exploring external tools like Ipe for figure creation.
\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?