in the thesis I am writing I am showing some plots (taken from external files) and some tables with the parameters I used to make the plots. I would like to place together each plot with its related table, so that it's easier for the reader. What can I do? I would like to avoid minipage
Asked
Active
Viewed 36 times
MWE....? – MadyYuvi Aug 02 '19 at 12:20floatrowpackage, in particular § 2.3.1, Mixed row in the documentation. – Bernard Aug 02 '19 at 12:40\begin{figure}\includegraphics{...} \begin{tabular}{...}...\end{tabular} \caption{...} \endfigure}would do what you ask. – David Carlisle Aug 02 '19 at 12:45\usepackage[active,floats,tightpage]{preview} \setlength\PreviewBorder{1em}
\begin{document} \begin{figure}[htbp] \centering \begin{minipage}{0.45\hsize}\raggedleft \includegraphics[width=150pt]{example-image} \end{minipage} $\longrightarrow$ \begin{minipage}{0.45\hsize} \begin{tabular}{|c|c|c|} \hline 4 & 9 & 2\ \hline 3 & 5 & 7\ \hline 8 & 1 & 6\ \hline \end{tabular} \end{minipage} \caption{The lo-shu magic square} \label{fig:loshu}\end{figure} \end{document}`
– Zarko Aug 02 '19 at 13:40