图形和图像在同一条线上,但一条比另一条高

Figure and Image on same line but one higher than the other

提问人:Jason Curran 提问时间:7/25/2023 最后编辑:samcarter_is_at_topanswers.xyzJason Curran 更新时间:8/3/2023 访问量:117

问:

我正在尝试将图像和表格放在同一行上。我正在使用子图环境来做到这一点。不幸的是,我的身材看起来比我的桌子高得多 - 见附图。我还包含了与下图相关的代码。

\documentclass[a4paper,11pt,twoside]{article} 
\usepackage{float}
\usepackage{subcaption}
\usepackage{graphicx}
\begin{document} 

\begin{figure}[H]
\begin{subfigure}{0.45\linewidth}
\centering
\begin{tabular}{||c c c c||} 
\hline
Parameter & Value \\ [0.5ex] 
\hline\hline
$\mu_a$ Background& 500  \\ 
\hline
$\mu_a$ Balls& 750  \\ 
\hline
$\mu_s$ & 3000  \\
\hline
$B_{xx}/B_{zz}$ & 0.6\\
\hline
$B_{xz}$ & 0.05 \\
\hline
Mesh Order& 10k \\
\hline
Polynomial Order & 3  \\ [1ex] 
\hline
\end{tabular}
\end{subfigure}\hfill
\begin{subfigure}{0.45\linewidth}
\centering
\includegraphics[scale=0.3]{figures/Initial Wavefield and 
Model/muaModel.PNG} 
\caption{Geometry of Problem using $\mu_a$.}
\label{fig3}
\end{subfigure}
\end{figure}

\end{document}

enter image description here

乳胶 定位

评论

0赞 Scott Hunter 7/25/2023
这是什么语言?
0赞 Jason Curran 7/25/2023
这是在乳胶上
0赞 samcarter_is_at_topanswers.xyz 7/25/2023
我们无法编译您的代码片段。请制作一个最小的可重现示例,包括类、必要的包等。
0赞 Jason Curran 7/25/2023
好的,我现在已经做到了

答:

0赞 samcarter_is_at_topanswers.xyz 8/3/2023 #1

一种可能性是使用子图的选项,将它们对齐在顶部:T

\documentclass[a4paper,11pt,twoside]{article} 
\usepackage{float}
\usepackage{subcaption}
\usepackage{graphicx}
\begin{document} 

\begin{figure}[H]
\begin{subfigure}[T]{0.45\linewidth}
\centering
\begin{tabular}{||c c c c||} 
\hline
Parameter & Value \\ [0.5ex] 
\hline\hline
$\mu_a$ Background& 500  \\ 
\hline
$\mu_a$ Balls& 750  \\ 
\hline
$\mu_s$ & 3000  \\
\hline
$B_{xx}/B_{zz}$ & 0.6\\
\hline
$B_{xz}$ & 0.05 \\
\hline
Mesh Order& 10k \\
\hline
Polynomial Order & 3  \\ [1ex] 
\hline
\end{tabular}
\end{subfigure}\hfill
\begin{subfigure}[T]{0.45\linewidth}
\centering
\includegraphics[width=\textwidth]{example-image-duck} 
\caption{Geometry of Problem using $\mu_a$.}
\label{fig3}
\end{subfigure}
\end{figure}

\end{document}

enter image description here

另一种可能性是包,然后使用图像的选项:adjustboxvalign=...

\documentclass[a4paper,11pt,twoside]{article} 
\usepackage{float}
\usepackage{subcaption}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\begin{document} 

\begin{figure}[H]
\begin{subfigure}{0.45\linewidth}
\centering
\begin{tabular}{||c c c c||} 
\hline
Parameter & Value \\ [0.5ex] 
\hline\hline
$\mu_a$ Background& 500  \\ 
\hline
$\mu_a$ Balls& 750  \\ 
\hline
$\mu_s$ & 3000  \\
\hline
$B_{xx}/B_{zz}$ & 0.6\\
\hline
$B_{xz}$ & 0.05 \\
\hline
Mesh Order& 10k \\
\hline
Polynomial Order & 3  \\ [1ex] 
\hline
\end{tabular}
\end{subfigure}\hfill
\begin{subfigure}[t]{0.45\linewidth}
\centering
\includegraphics[width=\textwidth,valign=m]{example-image-duck} 
\caption{Geometry of Problem using $\mu_a$.}
\label{fig3}
\end{subfigure}
\end{figure}

\end{document}

enter image description here