我的 latex 文件是:
\title{\large\textbf{Optimizarea rela\c tiei dintre structur\u a \c si comportament \^in modelarea UML}}
\author{
Sorin Oltean \\
\textit{Universitatea Transilvania din Bra\c sov} \\
\small\textit{[email protected], [email protected]} \\
\small Tel.: 0752/314288
}
\documentclass[12pt]{article}
\begin{document}
\maketitle
\renewcommand\abstractname{\textit{\textbf{Abstract}}}
\begin{abstract}
Something..... text.........
\end{abstract}\\\
\textbf{Cuvinte cheie:} \textit{sistem, structur\u a, comportament, UML}
\section{Introducere}
\paragraph{ }
Para11.............
\paragraph{ }
Para2......
\bibliographystyle{abbrv}
\bibliography{main}
\end{document}
在para1之后,我想开始一个新的段落,但是在段落之间有一个空行,我如何在没有那个空格的情况下从第一个段落下面开始第二个段落?
另外,如何定义文档的边距(上、下、左、右)?左、右、上和下的空间太大了,我想要左和右2厘米的空间,上和下3厘米的空间。对不起,我的英语不好..
另外如何指定文档的字体名称和大小?
谢谢!
最佳答案
使用 geometry
包。它允许完全控制边距等。
\usepackage{geometry}
\geometry{margin=2cm}
段落之间的空间可以通过
parskip
设置:\setlength{\parskip}{0cm}
但是,
parskip
不适用于 \paragraph
引入的段落。但是,如果您的段落不需要标题(我认为自从您编写 \paragraph{}
以来,最好以空行开头段落:\setlength{\parskip}{0cm}
Here goes the first paragraph.
Here the second. With no space. Note that this paragraph was introduced with a blank line.
\paragraph{The third paragraph} This paragraph will have a small offset, since it is introduced explicitly with paragraph command.
关于Latex 段落间距和页边距,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3124500/