Tengo dos diagramas, dibujados en TikZ-cd, que me gustaría tener uno al lado del otro. Sin embargo, aunque no he dejado una línea en blanco entre el código de los dos diagramas, todavía aparecen uno encima/debajo del otro.
Aquí hay un MWE:
\documentclass[12pt]{article}
\usepackage[margin=20mm]{geometry} %changes margins
\usepackage{mathrsfs} % fancy maths latters
\usepackage{amsmath} %improves equation environment
\usepackage{tikz-cd} %diagrams
\usepackage{subcaption} %side by side diagrams
\usepackage{caption} %customises captions
\title{Side-by-Side Diagrams MWE}
\begin{document}
\maketitle
Here are two diagrams that I would like to have side-by-side:
\begin{figure}[h!]
\centering
\begin{tikzcd}[column sep=small]
\mathscr{L}_{1} & & \mathscr{L}_{2}\\
& p_{1} \arrow[lu] \arrow[ru] &\\
& \text{Argument} \arrow[u] &\\
\end{tikzcd} \caption{Many-one pluralism.}
\begin{tikzcd}[column sep=small]
\mathscr{L}_{1} & & \mathscr{L}_{2}\\
p_{1} \arrow[u] & & p_{2} \arrow[u]\\
& \text{Argument} \arrow[lu] \arrow[ru] &\\
\end{tikzcd} \caption{One-many pluralism.}
\end{figure}
\end{document}
Qué salidas:
También intenté usar minipáginas, subflotantes (p. ej.Dos diagramas uno al lado del otro) y el paquete de subtítulos (p. ej.Colocar dibujos de TikZ en una minipágina uno al lado del otro) para resolver el problema, pero en cada caso recibo muchos errores... (¿Quizás estos paquetes sean compatibles con TikZ pero no con TikZ-cd?) ¡Gracias por tu ayuda!
Respuesta1
Puedes tenerlo con floatrow
, si habilitas el reemplazo de &
con \&
:
\documentclass[12pt]{article}
\usepackage[margin=20mm]{geometry} %changes margins
\usepackage{mathrsfs} % fancy maths latters
\usepackage{amsmath} %improves equation environment
\usepackage{tikz-cd} %diagrams
\usepackage{subcaption} %side by side diagrams
\usepackage{caption} %customises captions
\usepackage{floatrow}
\title{Side-by-Side Diagrams MWE}
\author{I. Ego}
\begin{document}
\maketitle
Here are two diagrams that I would like to have side-by-side:
\begin{figure}[h!]
\tikzset{column sep=small, ampersand replacement=\&}
\begin{floatrow}
\centering
\ffigbox{\begin{tikzcd}
\mathscr{L}_{1} \& \& \mathscr{L}_{2}\\
\& p_{1} \arrow[lu] \arrow[ru] \&\\
\& \text{Argument} \arrow[u] \&\\
\end{tikzcd}}{\caption{Many-one pluralism.}}
\ffigbox{\begin{tikzcd}
\mathscr{L}_{1}\& \& \mathscr{L}_{2}\\
p_{1} \arrow[u] \& \& p_{2} \arrow[u]\\
\& \text{Argument} \arrow[lu] \arrow[ru] \&\\
\end{tikzcd}}{\caption{One-many pluralism.}}
\end{floatrow}
\end{figure}
\end{document}