From mboxrd@z Thu Jan 1 00:00:00 1970 From: tsd@tsdye.com (Thomas S. Dye) Subject: Re: Exporting text Date: Mon, 27 Jan 2014 15:41:29 -1000 Message-ID: References: <20140126193122.GA14688@pfdstudio-air.home> <8738kajsqj.fsf@bzg.ath.cx> <20140127150529.GF47919@pdavismbp15.iscinternal.com> <20140127155930.GA97990@pdavismbp15.iscinternal.com> <20140127163103.GB97990@pdavismbp15.iscinternal.com> <87k3dl1hrv.fsf@alphaville.bos.redhat.com> <20140127172837.GC97990@pdavismbp15.iscinternal.com> <87fvo91epu.fsf@alphaville.bos.redhat.com> <20140127213329.GD97990@pdavismbp15.iscinternal.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54780) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W7xgL-0001Zy-Ks for emacs-orgmode@gnu.org; Mon, 27 Jan 2014 20:41:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W7xgE-0000qX-Ix for emacs-orgmode@gnu.org; Mon, 27 Jan 2014 20:41:41 -0500 Received: from alt-proxy31.mail.unifiedlayer.com ([74.220.221.129]:53658) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1W7xgE-0000pv-Bc for emacs-orgmode@gnu.org; Mon, 27 Jan 2014 20:41:34 -0500 In-Reply-To: <20140127213329.GD97990@pdavismbp15.iscinternal.com> (Peter Davis's message of "Mon, 27 Jan 2014 16:33:30 -0500") 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: Peter Davis Cc: emacs-orgmode@gnu.org Aloha Peter, Peter Davis 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