矩阵和图形并排

矩阵和图形并排

我想在文本中将矩阵放在图形旁边。当前显示如图所示。我更喜欢左侧的矩阵和右侧的树。 在此处输入图片描述

我正在使用这个:

\usepackage{amsmath}
\usepackage{graphicx}
\includegraphics[scale=.8]{Graficos/arbolR1.pdf} 
\caption{R-vine from Matrix M. Tree 1.}
\label{fig:R-vine1}

\begin{figure}
\centering
\small
\label{M}
\(
M= 
\begin{pmatrix}
5&&&&&&&&\\
8&1&&&&&&&\\
2&8&2&&&&&&\\
3&2&8&3&&&&&\\
4&3&7&8&4&&&&\\
9&4&9&7&8&8&&&\\
7&9&3&9&7&9&7&&\\
6&7&4&4&9&7&9&6&\\
1&6&6&6&6&6&6&9&9\\
\end{pmatrix}
\)
\caption{Matrix Structure}
\end{figure}

我将非常感激任何帮助!

答案1

请参阅以下 MWE(我用于minipage此):

\documentclass{article}

\usepackage{amsmath}
\usepackage{graphicx}

\begin{document}

\begin{figure}
\centering
\begin{minipage}[b]{.45\textwidth}
\includegraphics[width=\textwidth]{example-image-a}
\caption{First caption}\label{first}
\end{minipage}\hfill
\begin{minipage}[b]{.45\textwidth}
%\begin{figure}
\centering
\small
\label{M}
\(
M= 
\begin{pmatrix}
5&&&&&&&&\\
8&1&&&&&&&\\
2&8&2&&&&&&\\
3&2&8&3&&&&&\\
4&3&7&8&4&&&&\\
9&4&9&7&8&8&&&\\
7&9&3&9&7&9&7&&\\
6&7&4&4&9&7&9&6&\\
1&6&6&6&6&6&6&9&9\\
\end{pmatrix}
\)
\caption{Matrix Structure}\label{second}
%\end{figure}
\end{minipage}
\end{figure}

\end{document}

结果如下:

生成的 pdf

相关内容