Kann ich das in LaTeX haben?

Kann ich das in LaTeX haben?

Ich habe einfach eine Abbildung mit Text erstellt, den ich in LaTeX kompiliert und später mit Pfeilen versehen habe:

Bildbeschreibung hier eingeben

Ist es möglich, Text wie oben durch diagonale Pfeile zu verbinden, alles in LaTeX-Code?

Antwort1

Damit tikzmarkist es ziemlich unkompliziert.

\documentclass[fleqn]{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\DeclareMathOperator{\PR}{PR}
\DeclareMathOperator{\IPR}{IPR}
\begin{document}
\begin{align*}
 \PR_x&=\sum_i\tikzmarknode{TL}{\frac{1}{|\psi_i|^2}}\;,&
 \tikzmarknode{TR}{\IPR_x}&=\sum_i|\psi_i|^2\;,\\[1cm]
 \PR_k&=\sum_i\tikzmarknode{BL}{\frac{1}{|\widetilde{\psi}_i|^2}}\;,&
 \tikzmarknode{BR}{\IPR_k}&=\sum_i|\widetilde{\psi}_i|^2\;.
 \begin{tikzpicture}[overlay,remember picture]
  \draw[thick,latex-latex,shorten >=3pt,shorten <=3pt] 
    (TL.south east) -- (BR.west |-BL.north);
  \draw[thick,latex-latex,shorten >=3pt,shorten <=3pt] 
    (TR.west|-TL.south) -- (BL.north east);
 \end{tikzpicture}
\end{align*}
\end{document}

Bildbeschreibung hier eingeben

Antwort2

Dies ist ein Job für tikz-cd:

\documentclass{article}
\usepackage{tikz-cd}
\usetikzlibrary{arrows.meta}
\tikzcdset{arrow style=tikz, diagrams={>=Latex}}
\begin{document}
\[
\begin{tikzcd}[every node/.style={inner sep=0pt}]
    \mathrm{PR}_x=\sum_i\frac{1}{|\psi_i|^4}\arrow[dr, <->, start anchor=south east, end anchor=north west] 
        & \mathrm{IPR}_x=\sum_i|\psi_i|^4\arrow[dl, <->, start anchor=south west, end anchor=north east]\\[1ex]
    \mathrm{PR}_k=\sum_j\frac{1}{|\tilde\psi_j|^4}
        & \mathrm{PR}_k=\sum_j|\tilde\psi_j|^4\\
\end{tikzcd}
\]
\end{document}

Bildbeschreibung hier eingeben

Antwort3

Es lebe das Ti ohne KoordinatenkZ!

\documentclass[tikz]{standalone}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[every node/.style={inner sep=0pt}]
\coordinate (o);
\node[above left=.5cm and .5cm of o] (a) {%
    $\mathrm{PR}_x=\sum_i\frac{1}{|\psi_i|^4}$
};
\node[above right=.5cm and .5cm of o] (b) {%
    $\mathrm{IPR}_x=\sum_i|\psi_i|^4$
};
\node[below left=.5cm and .5cm of o] (c) {%
    $\mathrm{PR}_k=\sum_j\frac{1}{|\tilde\psi_j|^4}$
};
\node[below right=.5cm and .5cm of o] (d) {%
    $\mathrm{IPR}_k=\sum_j|\tilde\psi_j|^4$ % Edited typo, thanks to marmot
};
\draw[latex-latex] (a.south east)--(d.north west); 
\draw[latex-latex] (b.south west)--(c.north east);
\end{tikzpicture}
\end{document}

Bildbeschreibung hier eingeben

verwandte Informationen