From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rafael Subject: Re: gnash crunch... latex whitespace defaults! + numbering in only some subheadings Date: Wed, 01 Sep 2010 19:16:09 -0500 Message-ID: <87eidd80fq.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=60909 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OqxTU-0005ST-77 for emacs-orgmode@gnu.org; Wed, 01 Sep 2010 20:16:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OqxTS-00068Y-Vp for emacs-orgmode@gnu.org; Wed, 01 Sep 2010 20:16:16 -0400 Received: from mail-yw0-f41.google.com ([209.85.213.41]:34446) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OqxTS-00068P-TY for emacs-orgmode@gnu.org; Wed, 01 Sep 2010 20:16:14 -0400 Received: by ywl5 with SMTP id 5so3218769ywl.0 for ; Wed, 01 Sep 2010 17:16:13 -0700 (PDT) In-Reply-To: (Matt Price's message of "Wed, 1 Sep 2010 18:59:37 -0400") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Matt Price writes: > 1) what is te recommended or canonical way to reduce whitespace, not only= in > the margins, but especially between paragraphs?=A0 In particular, I use a= lot of > lists and subheadings; latex puts enormous emounts of whatespace between = items, > and very quickly the syllabus becomes difficult to navigate.=A0 It would = be great > for me if I could make these settings default, too -- I would much rather= have > my paper copies look more word-processor-ish, to ocnform iwth expectation= s in > my discipline (history). Not exactly the canonical way, but I have the following in documents I'm planning to export to LaTeX to make whitespace bearable: #+LATEX_HEADER:=20 #+LATEX_HEADER: \let\olditemize=3D\itemize #+LATEX_HEADER: \def\itemize{ #+LATEX_HEADER: \olditemize #+LATEX_HEADER: \setlength{\itemsep}{-0.8ex} #+LATEX_HEADER: } #+LATEX_HEADER: \let\oldenumerate=3D\enumerate #+LATEX_HEADER: \def\enumerate{ #+LATEX_HEADER: \oldenumerate #+LATEX_HEADER: \setlength{\itemsep}{-0.8ex} #+LATEX_HEADER: }