我正在尝试将两个超大尺寸的图形并排放在一页上。我尝试使用 minipage 和 adjustwidth,但第二个图形上的标题一直向左错位,如下所示。
我尝试阅读多个看似相关的问题,但无法弄清楚。我尝试按照其中一条建议使用 subfigure,但效果似乎更糟。
任何建议都值得感激。谢谢。
\documentclass{article} % letter paper and 11pt font
\usepackage[space]{grffile} % for filenames with spaces
\usepackage{float}
\usepackage{graphicx}
\usepackage{chngpage}
\usepackage{caption}
\usepackage{calc}
\begin{document}
\begin{minipage}[t]{.5\textwidth} % example that almost works
\begin{figure}[H]
\begin{adjustwidth}{-\oddsidemargin-1in}{-\rightmargin}
\centering
\caption{Schooling Time Shares}
\includegraphics[scale=0.5]{Schooling Time Share over Time.png}
\end{adjustwidth}
\end{figure}
\end{minipage}%
\begin{minipage}[t]{.5\textwidth}
\begin{figure}[H]
\begin{adjustwidth}{\oddsidemargin-0.8in}{-\rightmargin}
\centering
\caption{Training Time Shares}
\includegraphics[scale=0.5]{Training Time Share over Time.png}
\end{adjustwidth}
\end{figure}
\end{minipage}
\end{document}
更新:根据 Mico 的专家建议,我尝试了以下方法:
\begin{figure}[ht!]
\begin{adjustwidth}{-1.85cm}{-1.75cm} % choose margin adjustments
\begin{minipage}{0.48\linewidth}
\caption{Schooling Time Shares}
\includegraphics[scale=0.5]{Schooling Time Share over Time.png}
\end{minipage}
\hspace*{\fill} % spread out the two minipages
\begin{minipage}{0.48\linewidth}
\caption{Training Time Shares}
\includegraphics[scale=0.5]{Training Time Share over Time.png}
\end{minipage}
\end{adjustwidth}
\end{figure}
输出结果如下:
现在字幕是对称的,比以前好多了。不过,最后还有一点:如果有人(也许不必要)想让字幕更靠近中心,该怎么做?我想也许我可以在字幕旁边添加几个空格,但 hspace* 或 mbox 只会将字幕向下移动,而不是向右移动。
更新 2:正如下面的评论所述,\caption{\kern0.2cm Schooling Time Shares}
能够将标题文本稍微向右移动。也比width=1.1\linewidth
更稳定scale=0.5
。最终代码:
\begin{figure}[ht!]
\begin{adjustwidth}{-3.5cm}{-3cm} % choose margin adjustments
\begin{minipage}{0.48\linewidth}
\caption{\kern0.2cm Schooling Time Shares }
\includegraphics[width=1.1\linewidth]{Schooling Time Share over Time.png}
\end{minipage}
\hspace*{\fill} % spread out the two minipages
\begin{minipage}{0.48\linewidth}
\caption{\kern0.2cm Training Time Shares }
\includegraphics[width=1.1\linewidth]{Training Time Share over Time.png}
\end{minipage}
\end{adjustwidth}
\end{figure}
生产
更新 3:请参阅下面 Bernard 的解决方案(附带软件包)floatrow
。它可能是最简洁的。
答案1
我将使用单一figure
环境,启动adjustwidth
环境里面环境figure
,并minipage
并排使用两个环境来显示两个图像;每个环境都可以指定自己的\caption
。(屏幕截图中的框线表示普通的页边距。)
\documentclass[letterpaper,11pt]{article}
\usepackage[demo]{graphicx} % omit 'demo' option in real doc
\usepackage[space]{grffile} % for filenames with spaces
\usepackage{float}
\usepackage{chngpage}
\usepackage{caption}
\usepackage{calc}
\usepackage[showframe]{geometry} % omit 'showframe' option in real doc
\begin{document}
\begin{figure}[ht!]
\begin{adjustwidth}{-1.25cm}{-1.25cm} % choose margin adjustments
\begin{minipage}{0.48\linewidth}
\caption{Schooling Time Shares}
\includegraphics[width=\linewidth]{Schooling Time Share over Time.png}
\end{minipage}
\hspace*{\fill} % spread out the two minipages
\begin{minipage}{0.48\linewidth}
\caption{Training Time Shares}
\includegraphics[width=\linewidth]{Training Time Share over Time.png}
\end{minipage}
\end{adjustwidth}
\end{figure}
\end{document}
附录:您在评论中提到,您不确定是否应该使用子图。该决定主要取决于两幅图像之间的关系。如果它们不是特别相关,则为它们分配单独的图形级标题是有意义的。另一方面,如果它们非常密切相关,则将它们视为subfigure
s 可能是一个好主意。幸运的是,这样做并不难:(i)加载subcaption
包而不是(或除了)包caption
,(ii)替换minipage
为subfigure
(四个实例),以及(iii)\caption
为整个图形提供新的语句。先前编号为 1 和 2 的早期标题现在将标记为 (a) 和 (b)。
\documentclass[letterpaper,11pt]{article}
\usepackage[demo]{graphicx} % omit 'demo' option in real doc
\usepackage[space]{grffile} % for filenames with spaces
\usepackage{float}
\usepackage{chngpage}
\usepackage{subcaption}
\usepackage{calc}
\usepackage{geometry}
\begin{document}
\begin{figure}[ht!]
\caption{Two Types of Time Shares}
\begin{adjustwidth}{-1.25cm}{-1.25cm} % choose margin adjustments
\begin{subfigure}{0.48\linewidth}
\caption{Schooling Time Shares}
\includegraphics[width=\linewidth]{Schooling Time Share over Time.png}
\end{subfigure}
\hspace*{\fill} % spread out the two minipages
\begin{subfigure}{0.48\linewidth}
\caption{Training Time Shares}
\includegraphics[width=\linewidth]{Training Time Share over Time.png}
\end{subfigure}
\end{adjustwidth}
\end{figure}
\end{document}
答案2
使用该包的一个非常简单的解决方案floatrow
。它是包的扩展float
,加载 floatrow 时不应加载它。该\FBwidth
选项将标题宽度设置为图形的宽度。
\documentclass[letterpaper,11pt]{article}
\usepackage{graphicx} % omit 'demo' option in real doc
\usepackage[space]{grffile} % for filenames with spaces
\usepackage{chngpage}
\usepackage{caption}
\usepackage{calc}
\usepackage[showframe]{geometry} % omit 'showframe' option in real doc
\usepackage{floatrow}
\begin{document}
\begin{figure}[ht!]
\begin{floatrow}
\ffigbox[\FBwidth]{\caption{Perseus Rescuing Andromeda}}
{\includegraphics[width=\linewidth]{Piero_di_Cosimo_2.jpg}}
\ffigbox[\FBwidth]{\caption{The Death of Procris}}
{\includegraphics[width=\linewidth]{Piero_di_Cosimo_1.jpg}}
\end{floatrow}
\end{figure}
\end{document}
如果希望数字溢出两个边距,可以使用\llap
和,\rlap
如下所示:
\documentclass[letterpaper,11pt]{article}
\usepackage{graphicx, mathtools} % omit 'demo' option in real doc
\usepackage[space]{grffile} % for filenames with spaces
\usepackage{changepage}
\usepackage{caption}
\usepackage{calc}
\usepackage[showframe]{geometry} % omit 'showframe' option in real doc
\usepackage{floatrow}
\begin{document}
\begin{figure}[ht!]
\begin{floatrow}
\llap{\ffigbox[1.2\linewidth]{\caption{Perseus Rescuing Andromeda}}
{\includegraphics[width =\linewidth]{Piero_di_Cosimo_2.jpg}}}
\rlap{\ffigbox[1.2\linewidth]{\caption{The Death of Procris}}
{\includegraphics[width = 1\linewidth]{Piero_di_Cosimo_1.jpg}}}
\end{floatrow}
\end{figure}
\end{document}