Latex-Diagramme in einem Untertitelraster

Latex-Diagramme in einem Untertitelraster

Ich frage mich, ob es möglich ist, Latex-Diagramme in einem Raster anzuordnen.

Ich weiß, dass es möglich ist, Grafiken mit dem Subcaption-Paket anzuordnen:

\documentclass{article}
\usepackage{graphicx}
\usepackage{subcaption}

\begin{document}

\begin{figure}
\centering
\begin{subfigure}[b]{.45\linewidth}
\includegraphics[width=\linewidth]{example-image-a}
\caption{A mouse}\label{fig:mouse}
\end{subfigure}

\begin{subfigure}[b]{.45\linewidth}
\includegraphics[width=\linewidth]{example-image-b}
\caption{A gull}\label{fig:gull}
\end{subfigure}
\begin{subfigure}[b]{.45\linewidth}
\includegraphics[width=\linewidth]{example-image-c}
\caption{A tiger}\label{fig:tiger}
\end{subfigure}
\caption{Picture of animals}
\label{fig:animals}
\end{figure}

\end{document}

Meine Grafiken sind jedoch im Format

\pgfplotstableread[col sep = comma]{tables/txy/fine/vel/p1.csv}\txyone

\begin{figure}
\begin{tikzpicture}
  \begin{axis}
    [
    title={location pos 1 inlet x},
    scale only axis,
    legend pos = outer north east,
    xlabel=U (m/s), 
    ylabel=Y/S (inches),
    xmin = 0,
    xmax = 12,
    ymin = 0,
    ymax = 10,
    x dir=reverse,
    xmajorgrids=true,
    grid style=dashed,
    ]
    \addplot[domain=1:1e4,color=blue, smooth] table[x = x1, y = y2]{\txyone};
    \legend{Laminar, k-$\epsilon$ realizable, k-$\omega$, SST, RSM,}
    \legend{}
  \end{axis}
\end{tikzpicture}
\caption{initial inlet x dir}
\end{figure}

Ich habe versucht, den \includegraphics[]{}durch den Code des Diagramms zu ersetzen, aber das hat nicht funktioniert

Gibt es eine Möglichkeit, ein Tikzpicture-Diagramm als Untertitelraster einzufügen?

Antwort1

Ok, ich habe es zum Laufen gebracht. Falls jemand anderes das gleiche Problem hat, hier ist das Format, das ich verwendet habe

\documentclass[12pt]{article}
\usepackage{pgfplots}
\usepackage{subcaption}

\usepackage{graphicx}


\begin{document}

\pgfplotstableread[col sep = comma]{tables/txy/fine/vel/p1.csv}\txyone

\begin{figure}
\begin{subfigure}[b]{.45\linewidth}
\begin{tikzpicture}
  \begin{axis}
    [

    ]
    \addplot[domain=1:1e4,color=blue, smooth] table[x = x1, y = y2]{\txyone};
    \legend{Laminar, k-$\epsilon$ realizable, k-$\omega$, SST, RSM,}
    \legend{}
  \end{axis}
\end{tikzpicture}
\end{subfigure}
\begin{subfigure}[b]{.45\linewidth}
\begin{tikzpicture}
  \begin{axis}
    [

    ]
    \addplot[domain=1:1e4,color=blue, smooth] table[x = x1, y = y2]{\txyone};
    \legend{Laminar, k-$\epsilon$ realizable, k-$\omega$, SST, RSM,}
    \legend{}
  \end{axis}
\end{tikzpicture}
\end{subfigure}
\begin{subfigure}[b]{.45\linewidth}
\begin{tikzpicture}
  \begin{axis}
    [

    ]
    \addplot[domain=1:1e4,color=blue, smooth] table[x = x1, y = y2]{\txyone};
    \legend{Laminar, k-$\epsilon$ realizable, k-$\omega$, SST, RSM,}
    \legend{}
  \end{axis}
\end{tikzpicture}
\end{subfigure}
\begin{subfigure}[b]{.45\linewidth}
\begin{tikzpicture}
  \begin{axis}
    [

    ]
    \addplot[domain=1:1e4,color=blue, smooth] table[x = x1, y = y2]{\txyone};
    \legend{Laminar, k-$\epsilon$ realizable, k-$\omega$, SST, RSM,}
    \legend{}
  \end{axis}
\end{tikzpicture}
\end{subfigure}
\end{figure}

\end{document}

verwandte Informationen