我正在为自己写一篇俄语语法总结。但章节很短,所以很大一部分空间只是标题和其他内容。我正在寻找一种紧凑的风格,可以让我更好地概览内容。标题越小,标题空间越小,等等。我想,页边距越小,这样一页就能容纳更多内容,这也不错。
我对 LaTeX 的使用经验并不多。也许我并不需要一种全新的风格。任何帮助我都会感激不尽。
答案1
拯救树木?http://www.ctan.org/pkg/savetrees似乎确实做了你想要的事情。
答案2
这是一个简单的布局,只使用了geometry
的scale
选项和titlesec
的compact
选项。如果您想要更小的边距,请将值增加到.8
更高的值。(1
将完全没有边距;0
将只剩下边距。)如果您想要更大的边距,请减少它。
\documentclass[a4paper]{article}
\usepackage{geometry}
\geometry{scale=.8}% use 80% of the page - adjust as desired
\usepackage[compact]{titlesec}
\usepackage{kantlipsum}
\begin{document}
\section{A section}
Only a little text.
\subsection{A subsection}
\kant[1]
\section{Another section}
\subsection{A subsection}
A word or two.
\subsection{Another subsection}
\kant[2-3]
\subsection{Yet another subsection}
Some words for this one.
\section{Yet another section}
\subsection{A subsection for this section}
Some text.
\subsubsection{A subsubsection}
With some words.
\paragraph{A paragraph}
\kant[4]
\end{document}