我正在尝试使用以下命令在我的代码中插入数字:
\begin{figure}[H]
\centering
\includegraphics[width=5cm,height=5cm]{1.png}
\includegraphics[width=5cm,height=5cm]{2.png}
\includegraphics[width=10cm,height=10cm]{3.png}
\caption{title...}
\label{fig:smooth_ent_1}
\end{figure}
但我怎样才能给他们这些职位呢?
答案1
尝试此代码
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[H]
\centering
\begin{minipage}{.32\textwidth}
\includegraphics[width=\textwidth]{myfoto}
\includegraphics[width=\textwidth]{myfoto}
\end{minipage}%
\begin{minipage}{.64\textwidth}
\includegraphics[width=\textwidth]{myfoto}
\end{minipage}
\caption{title...}
\label{fig:smooth_ent_1}
\end{figure}
\end{document}