将三个图形左对齐、居中对齐、右对齐,并附加适当的标题和标签?

将三个图形左对齐、居中对齐、右对齐,并附加适当的标题和标签?

我正在学习如何使用 Latex,目前我正在尝试了解如何将 3 个图形放在页面上的一行中。

这是我的努力,将一个图形发送到下一页并似乎重复了标题。

% Sample file: math.tex
\documentclass{sample}
\usepackage{xcolor}
\usepackage{setspace}
\usepackage[margin=.7in]{geometry}
\usepackage{parskip}
\setlength{\parindent}{15pt}
\leftskip 0.1in
\parindent -0.1in
\usepackage{graphicx}
\usepackage{mathtools}
\usepackage{enumerate}
\usepackage{verbatim}
\usepackage{fancyvrb}
\usepackage[bottom]{footmisc}
\VerbatimFootnotes

\begin{document}

\begin{figure}[h!]
\centering\includegraphics[scale=.5]{Rachel&Bob}
\caption{Rachel and Bob's basis vectors}\label{Fi:001}
\end{figure}
\begin{figure}[h!]
\includegraphics{Poincare disk model.pdf}
\end{figure}

\end{document}

我已将第一个图形居中工作,并且标题和标签也很好。

第二张图被发送到下一页,我删除了标题和标签,以便了解为什么:

"disk.model.pdf"

位于图的左侧,图位于左边距左侧约两英寸处。

删除标题和标签对我在上一段中提到的文本没有影响。

有任何建议或指示我可以对图形的放置进行更多的研究吗?

答案1

为了将图像和相关标题放在一起,最好将\includegraphics- \caption-\label三元组放在单独的minipage环境中。对于三张并排的图像,我建议您为0.3\textwidth每个图像分配 的宽度minipage。这样,0.05\textwidth就可以在每对图像之间留出 的空白。(0.3+0.05+0.3+0.05+0.3=?。)

在此处输入图片描述

\documentclass{article} % not 'sample'
\usepackage{xcolor}
\usepackage{setspace}
\usepackage[margin=.7in]{geometry}
\usepackage{parskip}
%\setlength{\parindent}{15pt}
%\leftskip 0.1in
%\parindent -0.1in
\usepackage[demo]{graphicx} % omit 'demo' option in real document
\usepackage{mathtools}
\usepackage{enumerate}
%\usepackage{verbatim}
\usepackage{fancyvrb}
\VerbatimFootnotes
\usepackage[bottom]{footmisc}

\begin{document}
\hrule % just to illustrate width of text block

\begin{figure}[h!]

\begin{minipage}[t]{0.3\textwidth}
\includegraphics[width=\linewidth]{Rachel&Bob}
\caption{Rachel's and Bob's basis vectors} \label{Fi:001}
\end{minipage}
\hfill
\begin{minipage}[t]{0.3\textwidth}
\includegraphics[width=\linewidth]{Poincar\'eDiskModel}
\caption{Poincar\'e disk model} \label{poincare_disk}
\end{minipage}
\hfill
\begin{minipage}[t]{0.3\textwidth}
\includegraphics[width=\linewidth]{SomeOtherImage}
\caption{Some other image} \label{other}
\end{minipage}

\end{figure}

\end{document}

相关内容