无论如何都无法将数字并列起来吗?

无论如何都无法将数字并列起来吗?

我一直试图将这些数字并排放置,但它们最终总是堆叠在一起。我查看了很多解决方案,但没有一个能帮助我。这是我的代码:

\begin{figure}[ht]
\centering
\begin{minipage}[b]{.5\linewidth}
\centering
\includegraphics[width=.5\linewidth]{actualcapacitor.jpg}
\end{minipage}
\hfill
\begin{minipage}[b]{.5\linewidth}
\centering
\includegraphics[width=.5\linewidth]{likecapacitor.jpg}
\end{minipage}
\end{figure}

答案1

尝试此代码

\documentclass{article}
\usepackage{graphicx}
\begin{document}
test

\begin{figure}[ht]
\centering
\begin{minipage}[b]{.5\linewidth}
\centering
\includegraphics[width=\linewidth]{myfoto}
\end{minipage}\hfill
\begin{minipage}[b]{.5\linewidth}
\centering
\includegraphics[width=\linewidth]{myfoto}
\end{minipage}
\end{figure}
\end{document}

也许你需要

width=\linewidth

正如我在这里所做的那样

相关内容