emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* page setup - PDF Export
@ 2010-05-13 12:15 Rares Pop
  2010-05-13 15:37 ` Eric S Fraga
  2010-05-13 20:52 ` Thomas S. Dye
  0 siblings, 2 replies; 4+ messages in thread
From: Rares Pop @ 2010-05-13 12:15 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 274 bytes --]

Hi all,

do you there is a way to modify the page setup parameters (top, bottom,
left, right) when doing an PDF export.
There are some predefined templates for A4, A5 format?

I searched the manual and the mailing list and didn't find anything.

Appreciate your help,
Rares

[-- Attachment #1.2: Type: text/html, Size: 373 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: page setup - PDF Export
  2010-05-13 12:15 page setup - PDF Export Rares Pop
@ 2010-05-13 15:37 ` Eric S Fraga
  2010-05-14 14:44   ` Rares Pop
  2010-05-13 20:52 ` Thomas S. Dye
  1 sibling, 1 reply; 4+ messages in thread
From: Eric S Fraga @ 2010-05-13 15:37 UTC (permalink / raw)
  To: Rares Pop; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 838 bytes --]

On Thu, 13 May 2010 15:15:26 +0300, Rares Pop <rares.pop@gmail.com> wrote:
> 
> [1  <multipart/alternative (7bit)>]
> [1.1  <text/plain; ISO-8859-1 (7bit)>]
> Hi all,
> 
> do you there is a way to modify the page setup parameters (top, bottom,
> left, right) when doing an PDF export.
> There are some predefined templates for A4, A5 format?
> 
> I searched the manual and the mailing list and didn't find anything.
> 
> Appreciate your help,
> Rares

PDF export makes use of latex so you need to provide latex
customisations.  The easiest (IMO) way to modify margins and paper
size is through the geometry package, as in:

#+latex_header: \usepackage[margin=5cm]{geometry}

in the preamble of your org file.

See the documentation for the latex geometry package (on the web etc)
for full details of everything you can modify!

HTH,
eric

[-- Attachment #2: Type: text/plain, Size: 75 bytes --]

-- 
Eric S Fraga
GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D

[-- Attachment #3: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: page setup - PDF Export
  2010-05-13 12:15 page setup - PDF Export Rares Pop
  2010-05-13 15:37 ` Eric S Fraga
@ 2010-05-13 20:52 ` Thomas S. Dye
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas S. Dye @ 2010-05-13 20:52 UTC (permalink / raw)
  To: Rares Pop; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 895 bytes --]


On May 13, 2010, at 2:15 AM, Rares Pop wrote:

> Hi all,
>
> do you there is a way to modify the page setup parameters (top,  
> bottom, left, right) when doing an PDF export.
> There are some predefined templates for A4, A5 format?
>
> I searched the manual and the mailing list and didn't find anything.
>
> Appreciate your help,
> Rares
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Aloha Rares,

LaTeX page sizes can be specified in options passed to  
\documentclass{}.  In org-mode these options can be specified on a per- 
file basis with #+LaTeX_CLASS_OPTIONS.  I typically use the 'letter'  
option, but I believe the A4, A5, etc. sizes can also be specified-- 
see LaTeX documentation for the possibilities.

HTH,
Tom 

[-- Attachment #1.2: Type: text/html, Size: 1592 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: page setup - PDF Export
  2010-05-13 15:37 ` Eric S Fraga
@ 2010-05-14 14:44   ` Rares Pop
  0 siblings, 0 replies; 4+ messages in thread
From: Rares Pop @ 2010-05-14 14:44 UTC (permalink / raw)
  To: e.fraga; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 1121 bytes --]

Thanks Eric,

the use of geometry package is working.

Thanks a lot,
Rares

On Thu, May 13, 2010 at 6:37 PM, Eric S Fraga <ucecesf@ucl.ac.uk> wrote:

> On Thu, 13 May 2010 15:15:26 +0300, Rares Pop <rares.pop@gmail.com> wrote:
> >
> > [1  <multipart/alternative (7bit)>]
> > [1.1  <text/plain; ISO-8859-1 (7bit)>]
> > Hi all,
> >
> > do you there is a way to modify the page setup parameters (top, bottom,
> > left, right) when doing an PDF export.
> > There are some predefined templates for A4, A5 format?
> >
> > I searched the manual and the mailing list and didn't find anything.
> >
> > Appreciate your help,
> > Rares
>
> PDF export makes use of latex so you need to provide latex
> customisations.  The easiest (IMO) way to modify margins and paper
> size is through the geometry package, as in:
>
> #+latex_header: \usepackage[margin=5cm]{geometry}
>
> in the preamble of your org file.
>
> See the documentation for the latex geometry package (on the web etc)
> for full details of everything you can modify!
>
> HTH,
> eric
>
> --
> Eric S Fraga
> GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D
>
>

[-- Attachment #1.2: Type: text/html, Size: 1736 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-05-14 14:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-13 12:15 page setup - PDF Export Rares Pop
2010-05-13 15:37 ` Eric S Fraga
2010-05-14 14:44   ` Rares Pop
2010-05-13 20:52 ` Thomas S. Dye

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).