Como montar várias imagens e um texto na mesma figura

Como montar várias imagens e um texto na mesma figura

Quero fazer uma figura que contenha 2 imagens e texto conforme apresentado na figura a seguir com duas imagens A e B:

insira a descrição da imagem aqui

Eu trabalho com Overleaf então as duas imagens estão em formato pdf.

É aqui que estou (o resultado está longe do que esperava) e não entendo porque as duas imagens estão enquadradas com este código:

\documentclass[symmetric,justified,marginals=raggedouter]{tufte-book}
\usepackage[utf8] {inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{geometry,afterpage}
\geometry{height=9.8in,width=6.9in}
\usepackage{graphicx}
\setkeys{Gin}{width=\linewidth,totalheight=\textheight,keepaspectratio}
\graphicspath{{graphics/}}
\usepackage{float}
\usepackage{mathtools}
\usepackage[most]{tcolorbox}

\begin{document}
\begin{figure*}[h]
\fbox{\includegraphics[width=\linewidth]{Prelude_1-5_sys1.pdf}}\\
\hfill
\fbox{\includegraphics[width=0.75\linewidth]{Prelude_1-5_sys2.pdf}
\noindent
\textbf{$\xrightarrow{\makebox[0.5cm]{}}$Conséquent sur Pédale de dominante en \textit{la} majeur}
}
\end{document}

Quem pode me ajudar a fazer essa figura? Obrigado !

Responder1

Eu sugeriria a seguinte abordagem tabularxpara colocar imagem, seta e texto lado a lado e centralizados verticalmente:

insira a descrição da imagem aqui

\documentclass[symmetric,justified,marginals=raggedouter]{tufte-book}
\usepackage[utf8] {inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{geometry,afterpage}
\geometry{height=9.8in,width=6.9in}
\usepackage{graphicx}
\setkeys{Gin}{width=\linewidth,totalheight=\textheight,keepaspectratio}
\graphicspath{{graphics/}}
\usepackage{float}
\usepackage{mathtools}
\usepackage[most]{tcolorbox}
\usepackage{tabularx}
\usepackage[export]{adjustbox}

\begin{document}
\begin{figure*}[h]
\renewcommand\tabularxcolumn[1]{m{#1}}
\includegraphics[width=\linewidth]{Prelude_1-5_sys1.pdf}\\
\begin{tabularx}{\textwidth}{@{}llX@{}}
\includegraphics[width=0.75\linewidth,valign=c]{Prelude_1-5_sys2.pdf}
&
$\xrightarrow{\makebox[0.5cm]{}}$
&\textbf{Conséquent sur Pédale de dominante en \textit{la} majeur}\\
\end{tabularx}
\end{figure*}
\end{document}

Responder2

Copiei as fotos das suas perguntas, então o alinhamento não está perfeito, mas o código dá a ideia.

\documentclass[symmetric,justified,marginals=raggedouter]{tufte-book}
\usepackage[utf8] {inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{amsmath}

\geometry{height=9.8in,width=6.9in}

\begin{document}

\begin{figure*}[htp]

\includegraphics[width=\textwidth]{sys1}\\[1ex]
\includegraphics[width=0.75\textwidth]{sys2}\hfill
\raisebox{18ex}{$\xrightarrow{\hspace{0.5cm}}$}\hfill
\raisebox{18ex}{%
  \small\bfseries
  \begin{tabular}{@{}l@{}}
  Conséquent sur \\ Pédale de dominante \\ en \textit{la} majeur
  \end{tabular}%
}

\end{figure*}

\end{document}

Ajuste a quantidade de aumento até que você fique satisfeito.

insira a descrição da imagem aqui

informação relacionada