tgt
- 519
- 2
How to do diagonal maps labeled with a map in Latex? In other words how to do very long arrows that go diagonal, sideways, downwards etc.
The discussion revolves around creating diagonal maps with arrows in LaTeX, focusing on the use of specific packages and environments for diagramming. Participants explore different methods and resources for implementing these features in their LaTeX documents.
There is no consensus on the best method for creating diagonal maps with arrows in LaTeX, and participants express varying levels of familiarity with the necessary packages and installation processes.
Participants have not fully clarified the installation process for the diagrams package, and there is ambiguity regarding the specific steps needed to utilize macros and style files in LaTeX.
robphy said:use the picture environment
(e.g. http://www.ursoswald.ch/LaTeXGraphics/picture/picture.html )
or some diagramming package
(e.g. http://www.jmilne.org/not/CDGuide.pdf )
tgt said:The second link is useful but how to get the 'diagrams package' (so that \begin{diagram} can be used)? It doesn't seem to be on the website.
robphy said:I have never used the package myself...
but following the description in that pdf,
it says...
"The diagrams package -
This is not part of the standard MikTex installation, but you can get it from the
author’s home page http://www.cs.man.ac.uk/~pt/diagrams/."
That link leads to
http://www.cs.man.ac.uk/~pt/diagrams/ which eventually redirects to http://www.monad.me.uk/diagrams/
which links to a page that says
"Unlike many other packages there is no "installation procedure" - you just copy the macros themselves to your TEX macros directory" with a link to http://www.monad.me.uk/diagrams/diagrams.sty .
Try that out and let us know if it works.
robphy said:Macros are useful user-defined abbreviations of complicated commands.
Many are conveniently wrapped into style files or packages.
Style files can be used by placing the file in the same directory as the .tex source.
For a more centralized location, there is probably a directory in your tex distribution with lots of .sty files in it.
Some possibly useful links:
http://tex.loria.fr/english/packages.html
http://faq.tug.org/
robphy said:Compose mypaper.tex (with features based on diagrams.sty.. as described in the documentation).
In the same directory, place diagrams.sty.
latex mypaper
etc...