我正在回忆录课上写论文。小标题文本没有出现在小页面内容下。当我运行以下代码时,它会出现,但在我的论文中,小标题文本没有出现。我正在使用小页面将图像并排放置。提前致谢。
\documentclass{memoir}
\newsubfloat{figure}
\begin{document}
\begin{figure}
\centering
\begin{minipage}{0.45\linewidth}
hello...
\subcaption{packing of particles}
\end{minipage}\hfill
\begin{minipage}{0.45\linewidth}
hello...
\subcaption{Output}
\end{minipage}
\caption{Python code}
\label{lst:python_code}
\end{figure}
\end{document}
我的论文小页面部分如下:
\begin{figure}[H] \small
\centering
\begin{minipage}[b]{.35\linewidth}
\centering
{\includegraphics[width=\textwidth]{Figures8/Image_1.png}}
\subcaption{packing of particles}\label{fig:10a}
\end{minipage}%
~~~~~
\begin{minipage}[b]{.25\linewidth}
\centering
{\includegraphics[width=\textwidth]{Figures8/Image_2.png}}
\subcaption{FEA mesh}\label{fig:10b}
\end{minipage}
\caption{Plastic energy dissipation density vs strain (6S and 6L denote 6 wt \% small CSR and 6 wt \% large CSR particle modified epoxies respectively)}
\label{fig:8three}
\end{figure}
答案1
评论而不是回答......
您的代码按预期工作。它提供(使用包graphicx
例如图像):
\documentclass{memoir}
\usepackage{graphicx}
\newsubfloat{figure}
\begin{document}
\begin{figure}
\centering
\begin{minipage}{0.45\linewidth}
\includegraphics[width=\linewidth]{example-image-a}
\subcaption{packing of particles}
\end{minipage}\hfill
\begin{minipage}{0.45\linewidth}
\includegraphics[width=\linewidth]{example-image-b}
\subcaption{Output}
\end{minipage}
\caption{Python code}
\label{lst:python_code}
\end{figure}
\end{document}}
请澄清一下,你的问题是什么。用你通过代码获得的图像来说明。