From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Re: LaTex Adjustments for Org-Export Date: Wed, 31 Jul 2013 08:44:25 -0500 Message-ID: References: <51F902C4.4080902@taupro.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V4Wr6-0002Ee-6Z for emacs-orgmode@gnu.org; Wed, 31 Jul 2013 09:54:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V4WhX-0001uZ-AH for emacs-orgmode@gnu.org; Wed, 31 Jul 2013 09:44:29 -0400 Received: from mail-oa0-x229.google.com ([2607:f8b0:4003:c02::229]:42403) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V4WhX-0001uA-1k for emacs-orgmode@gnu.org; Wed, 31 Jul 2013 09:44:27 -0400 Received: by mail-oa0-f41.google.com with SMTP id j6so1551057oag.0 for ; Wed, 31 Jul 2013 06:44:25 -0700 (PDT) In-Reply-To: <51F902C4.4080902@taupro.com> 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: Jeff Rush Cc: emacs-orgmode On Wed, Jul 31, 2013 at 7:27 AM, Jeff Rush wrote: > I'm trying to export a .org file to .pdf and although I've gotten past > many formatting hurdles, I am stuck on two problems. > > 1) How can I redefine, in my org-export-latex-classes variable, the > \section definition, such that it includes \pagebreak? > My reason is that I would like each of my top-level headings to > start on a new page, like a new chapter. > Can't help with this one. > 2) How can I change the basic formatting of paragraphs everywhere to > > a) omit the leading indent, and > b) have a blank line between paragraphs > > Instead of this strange-looking style: > > This is a test paragraph > of the following kind of thing. > And so is this one. > > I want it to look like this: > > This is a test paragraph > of the following kind of thing. > And so is this one. > > Thanks for any helpful souls out there. I'm working on learning LaTeX > but can't see how the various parts of the "article" base class fit > together and how to selectively override them. I have the following in my setupfile, which I think greatly improves the default look: #+latex_header: \usepackage[hmargin=2.5cm,vmargin=2.5cm]{geometry} #+latex_header: \usepackage{paralist} #+latex_header: \setlength{\parskip}{0.5cm} \setlength{\parindent}{0cm} #+latex_header: \usepackage{mathpazo} The \parskip and \parindent options should get you in the ballpark of what you're looking for (non-indented new paragraphs, white space between consecutive paragraphs). The others widen the text space and use a nicer font. Good luck! John > > -Jeff > >