From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: setting left margin in PDF output of ORG file Date: Wed, 23 Apr 2014 13:47:23 -0400 Message-ID: <87mwfcos44.fsf@alphaville.bos.redhat.com> References: <87oazsm6yx.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37648) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wd1Gp-0000QG-5I for emacs-orgmode@gnu.org; Wed, 23 Apr 2014 13:47:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wd1Gj-0005Vc-Pc for emacs-orgmode@gnu.org; Wed, 23 Apr 2014 13:47:43 -0400 Received: from plane.gmane.org ([80.91.229.3]:51619) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wd1Gj-0005VT-J8 for emacs-orgmode@gnu.org; Wed, 23 Apr 2014 13:47:37 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Wd1Gi-0006JD-Kw for emacs-orgmode@gnu.org; Wed, 23 Apr 2014 19:47:36 +0200 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 23 Apr 2014 19:47:36 +0200 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 23 Apr 2014 19:47:36 +0200 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: emacs-orgmode@gnu.org jdavidboyd@adboyd.com (J. David Boyd) writes: > Bastien writes: > >> jdavidboyd@adboyd.com (J. David Boyd) writes: >> >>> I've looked through all the latex, org-latex, org-beamer variables I can >>> find with customize-apropos, but not having any luck. >> >> You can use the LaTeX geometry package: >> >> \usepackage[margin=0.25in]{geometry} >> >> HTH, > > Thanks, but since my LaTeX-fu and Org-fu are quite weak, where would I use > this at? > > I can put it into the .tex file that is created manually, then run pdflatex 3 > times like org does, but there must be somewhere to put it into the org > config, yes? > In the org file: #+LATEX_HEADER: \usepackage[margin=0.25in]{geometry} If you want to make this the default, you can customize org-latex-packages-alist: (add-to-list 'org-latex-packages-alist '("margin=0.25in" "geometry" nil)) Nick