{tikz-cd} concerns commutative diagrams produced by the tikz-cd package
3
votes
2answers
84 views
Scaling tikz-cd labels
I'd like to scale a custom symbol drawn in tikz, such that it's the same size as surrounding text in a tikz-cd diagram.
For example, in the following code I'd like the box to the left of A_2 to be ...
5
votes
1answer
102 views
How to draw bent arrows going to a new line in long formulas (ex. chain complexes)
I have to write quite long chain complexes such as
0\rightarrow A \rightarrow B \rightarrow C \rightarrow etc.
with many terms in them, and I would like the arrows close to the side of the page to ...
1
vote
0answers
53 views
Why doesn't yshift seem to work in tikzcd? [closed]
In the tikz-cd documentation, the following code snipped is given:
\begin{tikzcd}
A \arrow[yshift=0.7ex]{r} \arrow[yshift=-0.7ex]{r}
& B \arrow[xshift=0.7ex]{d} \arrow[xshift=-0.7ex]{d} \\
& ...
4
votes
2answers
209 views
Delayed drawing of arrows in tikz-cd
I want to draw an arrow which passes over another arrow in a tikz-cd commutative diagram. I can do that as follows from the documentation:
\documentclass{article}
\usepackage{tikz-cd}
...
3
votes
1answer
107 views
Parallel arrows without heads
The official tikz-cd is available here.
On page 3, one reads:
The following list shows all available arrows.
I tried all items in the list, and got error messages for the three items: dash, ...
5
votes
1answer
114 views
tikz-cd equivalent to the xy-pic command \ar@{-}
How do I make the diagram
X - Y -> Z
with tikz-cd?
With xy-pic, I would enter
\xymatrix{ X \ar@{-}[r] & Y \ar[r] & Z }
I tried
\begin{tikzcd} X \ar[no head]{r} & Y \ar{r} ...
8
votes
1answer
165 views
Tikz-cd and snake lemma: “loseness” and centered figures
I have to draw a snake lemma, as here: snake lemma.
The code is
\documentclass{article}
\usepackage{tikz-cd}
\usepackage{amsmath}
\DeclareMathOperator{\Tor}{Tor}
\begin{document}
...
8
votes
2answers
221 views
How to ensure consecutive diagonal arrows form a straight line?
How can I ensure that consecutive diagonal arrows in a tikz-cd commutative diagram spanning many rows and columns lie on a straight line (as is automatically the case for consecutive horizontal ...
8
votes
1answer
136 views
Using tikzcd in newcommand (for inline arrows)
I’m using tikz-cd for diagrams, and have a medium-sized diagram that I want to re-use several times. However, when I try using a definition like:
\newcommand{\myarrow}{$\begin{tikzcd} A \ar{r} & ...