Loading

MCM_插图

图片

LaTeX插入图片及多行多列图片排版 - SmallSquare's Blog

image-20240131144649863

单图

\begin{figure}[H]
	\centering 
	\includegraphics[width=0.4\textwidth]{c.pdf} 
	\caption{\centering The estimation for the decomposition rates, given the growth rate.}  
	\label{fig:road map} %标签(可不加)
\end{figure}

image-20240131112711743

插入并列的两张独立图片

\begin{figure}[h]
	\centering
	\begin{minipage}[t]{0.48\textwidth}
		\centering
		\includegraphics[width=8cm]{lotka_volterra.eps}
		\caption{\centering Lotka-Volterra field plot}
	\end{minipage}
	\begin{minipage}[t]{0.48\textwidth}
		\centering
		\includegraphics[width=8cm]{Trends.eps}
		\caption{\centering Trends between preys and predators}
	\end{minipage}
\end{figure}
image-20240131112237841
\begin{figure}[!t]
\centering
%\includegraphics[width=3in]{fig5}
\subfloat[subfig figure title]{
		\includegraphics[scale=0.5]{superd2}}
\subfloat[subfig figure title]{
		\includegraphics[scale=0.5]{superd2}}
\caption{title}
\label{fig_6}
\end{figure}

插入并列的两张不独立的图片

直接连续使用两次\includegraphics[]{}即可,\hspace{}表示间距

\begin{figure}[h]
	\centering
		\includegraphics[width=8cm]{lotka_volterra.eps}
		\hspace{0.1in}
		\includegraphics[width=8cm]{Trends.eps}
		\caption{\centering Trends between preys and predators}
\end{figure}
image-20240131144926235

有小标题(a)(b)横排

\begin{figure}[!t]
	\centering
	%\includegraphics[width=3in]{fig5}
	\subfloat[subfig figure title]{
		\includegraphics[width=8cm]{Short-Term.pdf}}
	\subfloat[subfig figure title]{
		\includegraphics[width=8cm]{Long-Term.pdf}}
	\caption{title}
	\label{fig_6}
\end{figure}
image-20240131151224236

有小标题竖排

\begin{figure}[!t]
	\centering
	%\includegraphics[width=3in]{fig5}
	\subfloat[subfig figure title]{
		\includegraphics[width=8cm]{Short-Term.pdf}}\\
	\subfloat[subfig figure title]{
		\includegraphics[width=8cm]{Long-Term.pdf}}
	\caption{title}
	\label{fig_6}
\end{figure}
image-20240131151451973

多张小图

\begin{figure}[!t]
	\centering
	%\includegraphics[width=3in]{fig5}
	\subfloat[subfig figure title]{
		\includegraphics[width=8cm]{Matric Potential 4.pdf}}
	\subfloat[subfig figure title]{
		\includegraphics[width=8cm]{Figure2.pdf}}
	\\
	\subfloat[subfig figure title]{
		\includegraphics[width=8cm]{Long-Term.pdf}}
	\subfloat[subfig figure title]{
		\includegraphics[width=8cm]{Short-Term.pdf}}
	\caption{title}
	\label{fig_6}
\end{figure}
image-20240131151808459
posted @ 2024-04-16 15:20  Mercuryadore  阅读(78)  评论(0)    收藏  举报