This question led to a new package:
braids
— Blog: The Braids Package
I search to draw braids diagram, if possible in xy-pic.
I already know how to do that with the knot module and some low-level instructions and I search a nicer way to do that.
The actual code :
\documentclass{minimal}
\usepackage[all,knot]{xy}
\begin{document}
\[\vcenter{\xy 0;/r1pc/:
@={(0.5,-0.5),(0,0)}, @@{*{\vtwistneg}},(0,-2),\vtwist,
@i@={(0,-1),(2,0),(2,-2)} @@{="save";"save"-(0,1),**@{-}}\endxy}
\quad = \quad
\vcenter{\xy 0;/r1pc/:
@={(0.5,0),(0,-0.5),(0.5,-1)}, @@{*{\vtwistneg}},
@i@={(0,0),(2,-1),(0,-2)} @@{="save";"save"-(0,1),**@{-}}\endxy}\]
\end{document}
And the desired result
Best Answer
Update (2019-05-09): With the advent of TikZ's
pic
syntax I figured thebraids
package was well overdue an overhaul. The syntax below is for the original version of the package which is now depreciated (though still works). See the package documentation for how to use the new syntax.Update (2011-09-06): The resulting package is now on CTAN as http://www.ctan.org/pkg/braids and you can read about it on our blog at http://tex.blogoverflow.com/2011/09/the-braids-package/.
Taking up Charles' challenge, here's a way of doing this in TikZ/PGF. First, the output:
Next, the user code; namely, if the yucky preamble were in a nice package, this is what you would type:
Lastly, the yucky preamble (actually including the user code so you can just copy this for a MWE):
Improvements: the actual drawing commands could be optimised a little. The braids don't actually start at the start, but are shifted one over (not hard to correct). It should also be possible to work out the number of strands from the given braid: if we encounter an element using a strand we've yet to see, simply draw it from the top to the current height.
(I did try to do a bit of catcode tomfoolery so that one could use
s
in place of\sigma
, but I couldn't get it to work (and, yes, I did replace the command by an environment in trying to do this).)