这是我第一次使用 latex,特别是 lyx。我必须制作一个非常简单的页面,其中包含标题、图表和 3 位作者,但是当我将图表放在标题后面时发生了一些奇怪的事情:有一个很大的空白,我不知道为什么,我认为当我按下回车键时 lyx 不会退出标题,但是我不知道如何解决这个问题。
代码:
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{graphicx}
\usepackage{babel}
\begin{document}
\title{Requirements Analysis and Specifications Document}
\maketitle
\begin{figure}
\begin{centering}
\includegraphics[scale=0.4]{../Desktop/Logo_polimi_grande}
\par\end{centering}
\caption{Politecnico di Milano}
\end{figure}
\end{document}
答案1
除了@Johannes_B 在其评论中提供的解决方案外,还可以尝试以下方法:
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{graphicx}
\usepackage{babel}
\begin{document}
\title{Requirements Analysis and Specifications Document}
\maketitle
\begin{figure}
\centering
\includegraphics[scale=0.4]{example-image}
\end{figure}
\end{document}
答案2
控制 lyx 或 latex 中的虚拟空间使用如下方法:
将 cruser 放在标题和图片之间,Ctrl+L 然后写入:
\vspace{-5pt}
您可以将 5 更改为任意数字。
如果你让数字 + 你就会增加垂直距离。
如果你让数字 - 你会减少垂直距离。
訂閱