1、页面设置 a4 会给你一个较小的页面,为了使用更多的控制,可用 geometry宏包和命令 \layout 。 2、改变长度 页面设置 段落 浮动图表 数学公式 列表 3、环境 4、图表为了节约空间,可用 subfigure 宏包把多幅图形放在一人图形环境中,也可用 floatflt 宏包把图形用文本包围起来。 即可。 对于一个大的表格,可用 5、标题 一个标题周围的距离是由 6、文献里面的内容 宏包 可用 如果选用了
在latex里改变长度的命令是 \addtolength
和 \setlength
。latex可认的是 cm, mm, in 和 pt. 变量可设为负数。一个例子是 \addtolength{\parindent}{-5mm}
一些有用的变量是:\columnsep
: 列间距\topmargin
: 页眉到页边的距离\topskip
: 页眉与正文的距离\textheight
: 正文的高度\textwidth
: 文本的宽度\oddsidemargin
: 奇数页的左面页边距\evensidemargin
: 偶数页的左面页边距\parindent
: 段落缩进距离\parskip
: 段落间的距离\floatsep
: 浮动对象之间的距离\textfloatsep
: 最后一个浮动对象顶端或第一个浮动对象底端与正文之间的距离\intextsep
: 文中浮动顶端与底端所留的距离\dbltextfloatsep
是在双列输出时用 \textfloatsep
的数值\dblfloatsep
是在双列输出时用 \floatsep
的数值\abovecaptionskip
: 标题上方的距离\belowcaptionskip
: 标题下方的距离\abovedisplayskip
: 公式前的距离\belowdisplayskip
: 公式后面的距离\arraycolsep
: 在一个array中列之间的空白长度\topsep
: 第一个item和前面版落间的距离\partopsep
: 当在一个新页开始时加到 \topsep
的额外空间\itemsep
: 连续items之间的距离。
宏包 atbeginend.st
y 提供了 \BeforeBegin{environment}{code-to-execute}
, \AfterEnd
等等命令。这些命令可去掉环境外面和内部的空间。例如 \AfterBegin{itemize}{\addtolength{\itemsep}{-\baselineskip}}
就在环境内以重新设置 \itemsep
来压缩items之间的距离 。mdwlist
宏包有一个 itemize* 环境; paralist 宏包提供了一个item之间距离压缩环境和一个使每个item不在新的一段开始的 inparaenum 环境。
当有图表时, LaTeX 缺省值不会在超过 70% 的页中加文本。这个可有 \begin{document}加上\renewcommand\floatpagefraction{.9}
\renewcommand\topfraction{.9}
\renewcommand\bottomfraction{.9}
\renewcommand\textfraction{.1}
\setcounter{totalnumber}{50}
\setcounter{topnumber}{50}
\setcounter{bottomnumber}{50}
另外,可用 caption宏包减少标题尺寸。\setlength{\tabcolsep}{1pt}
来减少表格的列间距离;也可用\resizebox{!}{5cm}{\begin{tabular} ... \end{tabular}}
把整个表格当作一个图形\parskip
, \baselineskip
等来决定的,要注意的是 LaTeX 宁愿在一页中留下空白,也不愿把一个标题放在此页的底部。如果你要重新定义这些命令,就应该仔细的读一下 titlesec
宏包。mulitoc
可让在单列文本中有一个两列的表格内容存在。setspace
宏包来减少文献中的行间距离(在文本中也是一个道理)\begin{spacing}{0.9}
\tableofcontents
\end{spacing}
...
\begin{spacing}{0.9}
\bibliographystyle{plain}
\bibliography{refs}
\end{spacing}natbib
宏包的话(推荐),就可以用 \bibsep
来控制items之间的距离。否则就可在导言区里用下面的命令。\let\oldthebibliography=\thebibliography
\let\endoldthebibliography=\endthebibliography
\renewenvironment{thebibliography}[1]{%
\begin{oldthebibliography}{#1}%
\setlength{\parskip}{0ex}%
\setlength{\itemsep}{0ex}%
}%
{%
\end{oldthebibliography}%
发表评论 取消回复