Graphics, Figures & Tables ⇒ vertical curved arrows between rows
vertical curved arrows between rows
/ Line 1
(
\ > Line 2
(
\ > Line 3
Is there any easy way to do this? I know xy-pic can do curved arrows, but always seems to introduce huge spacing between lines..
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
Re: vertical curved arrows between rows
Re: vertical curved arrows between rows
text1 [blank space] text2
without any connection in between, when it should be
text1 ------------- text2
Any ideas what could be wrong?
\documentclass{article}
\usepackage{pst-node}
\begin{document}
\rnode{A}{text1} \hspace{2cm} \rnode{B}{text2}
\ncline{A}{B}
\end{document}
Edit: Nevermind, it works when you compile dvi->ps->pdf instead of directly dvi->pdf