emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Exporting text


From: Thomas S. Dye
Subject: Re: [O] Exporting text
Date: Mon, 27 Jan 2014 15:41:29 -1000

Aloha Peter,

Peter Davis <address@hidden> writes:

> On Mon, Jan 27, 2014 at 01:06:53PM -0500, Nick Dokos wrote:
>> 
>> ...what happens if you replace org-article with just plain boring old
>> article? 
>> 
>
> Yeah, that worked. Unfortunately, though, I didn't get the Times font
> I was after.
>
> Actually, Times was just going to be a stepping stone to what I really
> want ... a) sans-serif headings and b) Palatino as the base font.
>
> I'd welcome any suggestions on how to achieve those.

The Koma scripts for LaTeX use sans-serif headings.  Try this:

#+name: koma-article
#+header: :results silent
#+begin_src emacs-lisp
   (require 'ox-latex)
   (add-to-list 'org-latex-classes
                '("koma-article"
                  "\\documentclass{scrartcl}
                   \\usepackage{microtype}
                   \\usepackage{tgtermes}
                   \\usepackage[scale=.9]{tgheros}
                   \\usepackage{tgcursor}"
                  ("\\section{%s}" . "\\section*{%s}")
                  ("\\subsection{%s}" . "\\subsection*{%s}")
                  ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
                  ("\\paragraph{%s}" . "\\paragraph*{%s}")
                  ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
#+end_src

This uses the beautiful TeX-Gyre fonts. I haven't checked if they have a
Palatino clone--if so, I'd be inclined to use it.  If not, then you'll
want to replace tgtermes with mathpazo and give a bit more leading with 
\\linespread{1.05}.

You can put this code block in your local library of Babel and then load
it on a buffer-local basis, like this:

# Local Variables: 
# eval: (org-sbe "koma-article")
# End:

Beware of org-sbe, which used to be just sbe. You might need something
like this:

# eval: (and (fboundp 'org-sbe) (not (fboundp 'sbe)) (fset 'sbe 'org-sbe))

hth,
Tom

-- 
Thomas S. Dye
http://www.tsdye.com



reply via email to

[Prev in Thread] Current Thread [Next in Thread]