[Tex/LaTex] Increasing the text size of tikz-cd labels

tikz-cd

By default the arrow labels in tikz-cd are quite small. When the labels involve subscripts or superscripts, they can become unreadable. How can I increase the label text size for all tikz-cd diagrams in my document?

Best Answer

In your preamble, add

\tikzcdset{every label/.append style = {font = \small}}

The default font size appears to be \scriptsize. Other options include (from small to larger): \tiny, \scriptsize, \footnotesize, \small, and \normalsize.

Related Question