From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Re: how to adjust vertical spacing between lines in a simple list, pdflatex export Date: Thu, 5 Dec 2013 21:03:23 -0600 Message-ID: References: <52A135F8.8060807@binghamton.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38236) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VolhN-0005XX-LR for emacs-orgmode@gnu.org; Thu, 05 Dec 2013 22:03:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VolhM-0001Rd-C8 for emacs-orgmode@gnu.org; Thu, 05 Dec 2013 22:03:25 -0500 Received: from mail-ob0-x22c.google.com ([2607:f8b0:4003:c01::22c]:64223) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VolhM-0001RZ-6q for emacs-orgmode@gnu.org; Thu, 05 Dec 2013 22:03:24 -0500 Received: by mail-ob0-f172.google.com with SMTP id gq1so132728obb.31 for ; Thu, 05 Dec 2013 19:03:23 -0800 (PST) In-Reply-To: <52A135F8.8060807@binghamton.edu> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Christopher W. Ryan" Cc: emacs-orgmode On Thu, Dec 5, 2013 at 8:27 PM, Christopher W. Ryan wrote: > In LaTeX, I would typically use the enumitem package, and then start an > itemized list with > > \begin{itemize}[itemsep= ] > > where itemsep could equal whatever spacing I wanted. > > How do I change the inter-item vertical spacing (specifically, decrease > it) in org-mode with pdflatex export? If I follow correctly, you're saying that enumitem works in raw LaTeX and you want to use it via Org-mode? If so, can you get by with applying document-wide settings in the .org file header? #+latex_header: \usepackage{enumitem} #+latex_header: \setlist or \setenumerate [global options you want applied][1] Or do you need control at the level of specific itemized groupings, and thus document-wide settings wouldn't work for your situation? Hope that helps? John [1] Like this: http://tex.stackexchange.com/questions/75578/how-to-change-list-settings-globally > > Thanks. > > --Chris Ryan >