From mboxrd@z Thu Jan 1 00:00:00 1970 From: Aditya Mandayam Subject: Re: References in Latex Date: Tue, 26 Jul 2011 06:51:35 -0400 Message-ID: References: <4423.1311649085@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:54146) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QlfFJ-0008IX-Ec for emacs-orgmode@gnu.org; Tue, 26 Jul 2011 06:52:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QlfFI-0001uH-A0 for emacs-orgmode@gnu.org; Tue, 26 Jul 2011 06:52:17 -0400 Received: from mail-iy0-f169.google.com ([209.85.210.169]:39928) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QlfFI-0001uD-35 for emacs-orgmode@gnu.org; Tue, 26 Jul 2011 06:52:16 -0400 Received: by iyb14 with SMTP id 14so593913iyb.0 for ; Tue, 26 Jul 2011 03:52:15 -0700 (PDT) In-Reply-To: <4423.1311649085@alphaville.dokosmarshall.org> 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: nicholas.dokos@hp.com Cc: emacs-orgmode@gnu.org ok. after reading dye's page and the linked article for xetex: http://emacs-fu.blogspot.com/2011/04/nice-looking-pdfs-with-org-mode-and.ht= ml i seem to have rubber working. however, do take a look at the resulting pdf: http://i.imgur.com/YvUKo.png as you can see, none of the citations after the first citation show up as sidenotes (i am using the tufte-handout document class). further, in the section titled "references", only the first citation shows = up. the following is in my .emacs: (require 'org-latex) (unless (boundp 'org-export-latex-classes) (setq org-export-latex-classes nil)) (add-to-list 'org-export-latex-classes `("handout" "\% rubber: set program xelatex \\documentclass{tufte-handout} \\usepackage{amsmath} \\usepackage{graphicx} \\usepackage{booktabs} \\usepackage{units} \\usepackage{multicol} \\usepackage{fontspec,xltxtra,xunicode} \\defaultfontfeatures{Mapping=3Dtex-text} \\setromanfont[Mapping=3Dtex-text]{Bauer Bodoni Std 1 Roman} " ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") )) and (defun org-mode-reftex-setup () (load-library "reftex") (and (buffer-file-name) (file-exists-p (buffer-file-name)) (reftex-parse-all)) (define-key org-mode-map (kbd "C-c c") 'reftex-citation) ) (add-hook 'org-mode-hook 'org-mode-reftex-setup) (setq org-latex-to-pdf-process '("rubber -sd %b") ) any thoughts? On Mon, Jul 25, 2011 at 10:58 PM, Nick Dokos wrote: > Aditya Mandayam wrote: > > >> So when exporting from .org to LaTeX-PDF, I would like the references >> to show up at the bottom. This does not happen currently. Why is it >> so? >> >> PS: Gleaned from >> http://tincman.wordpress.com/2011/01/04/research-paper-management-with-e= macs-org-mode-and-reftex/ >> >> PPS: I am using the tufte-handout document class. On changing this to >> the default article class, the references still do not show up. >> > > The first thing to do is to read Tom Dye's excellent LaTeX export > tutorial: > > =A0 =A0 =A0 =A0http://orgmode.org/worg/org-tutorials/org-latex-export.htm= l > > If you still have problems after that, the second thing to do is > to post here an example of what you are trying to do: a small org > file, what happens to it on latex export and what you would like > to happen. > > Nick >