在 LyX 中正确添加图片

在 LyX 中正确添加图片

在 LyX 中,我使用“插入”>“浮动”>“图形”在段落末尾输入图形/图形。在此处输入图片描述 我认为这是我想要的命令,因为我想包含一个带有描述的图形(如果有更好的命令,请告诉我)。

但是,当它显示在 PDF 中时,(i) 图形位于段落内,(ii) 图形底部与段落其余部分之间的间距异常大。我尝试手动编辑垂直间距,但 LyX 要么没有留出任何空间,要么留出太多空间(我以前从未遇到过这个问题)。

我下面有一个 MWE。在这种情况下,间距问题不再出现,但图形出现在段落上方而不是下方。我怎样才能将图形放在段落下方(或者准确地放在我希望它出现的位置?

(一)本段源代码:

 \noindent \begin{center}
 \begin{figure}
 \includegraphics[scale=0.6]{\string"Thesis/blank billard 7\string".jpg}\caption{A Billiard table $B_{\alpha}$ with a barrier of length $\alpha$}
 \end{figure}

 \par\end{center}

(二)整个源码的源代码:

 \documentclass[oneside,english]{amsart}
 \usepackage[T1]{fontenc}
 \usepackage[latin9]{inputenc}
 \usepackage{amsthm}
 \usepackage{graphicx}
 \usepackage{setspace}

 \makeatletter
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
 \numberwithin{equation}{section}
 \numberwithin{figure}{section}

 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
 \title[Short version]{Long version}
 \usepackage{mathtools}

 \makeatother

 \usepackage{babel}
 \begin{document}

 \subsection{Veech's Examples and a Billiard Interpretation of these Examples}

 \begin{doublespace}
 \noindent In {[}8{]}, Veech constructs examples of minimal and not uniquely ergodic dynamical systems as follows (see {[}7{]})....
 \end{doublespace}

 \noindent \begin{center}
 \begin{figure}
 \includegraphics[scale=0.6]{\string"Thesis/blank billard 7\string".jpg}\caption{A Billiard table $B_{\alpha}$ with a barrier of length $\alpha$}
 \end{figure}

 \par\end{center}
 \end{document}

更新 如图所示。

[![在此处输入图片描述][2]][2]

答案1

在浮动上方,您应该会看到一个带有文本“float: Figure”的框。如果您右键单击它,然后选择“Settings...”,则应该会看到此框:

在此处输入图片描述

取消选中“使用默认位置”,然后尝试“高级位置选项”下的设置。要尝试 David Carlisle 建议的 htp,请选择“如果可能,在此处”、“页面顶部”和“浮动页面”。

相关内容