From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ken Mankoff Subject: Re: Bibliography woes! Date: Mon, 05 May 2014 19:51:11 -0400 Message-ID: References: <8761lkfn2j.fsf@skimble.plus.com> <53678512.50602@gmail.com> <877g605lo4.fsf@skimble.plus.com> <87r448xie3.fsf@skimble.plus.com> <878uqg5bg8.fsf@ucl.ac.uk> <87a9avuapc.fsf@skimble.plus.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45634) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhSfs-00048Z-Qk for emacs-orgmode@gnu.org; Mon, 05 May 2014 19:52:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WhSfC-0001K1-DE for emacs-orgmode@gnu.org; Mon, 05 May 2014 19:51:56 -0400 Received: from mail-qg0-x22c.google.com ([2607:f8b0:400d:c04::22c]:53192) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhSfC-0001Jq-8u for emacs-orgmode@gnu.org; Mon, 05 May 2014 19:51:14 -0400 Received: by mail-qg0-f44.google.com with SMTP id i50so7277908qgf.3 for ; Mon, 05 May 2014 16:51:13 -0700 (PDT) In-reply-to: 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: John Hendy Cc: org-mode mailing list , Vikas Rawal , Sharon Kimble On 2014-05-05 at 19:39, John Hendy wrote: > If this works, someone can chime in regarding how to modify Org so > that it will run the necessary biber/biblatex commands so you don't > have to jump to a command line every time. Or perhaps that's a one > time thing -- maybe as long as biber generates the .bbl file, you can > refer to anything you want in that file from then on? I've found "latexmk" to be the best tool for compiling LaTeX documents. It runs all necessary commands as many times as needed, including pdflatex, bibtex, biblatex, etc.. It is fairly smart and will run the command to make the index if you load the index, for example. It can run in daemon mode and monitor the included files (and graphics) so if one of those changes, the PDF is regenerated. I prefer daemon mode, so I bring up a terminal and run latexmk file.tex in the folder where I'm working on file.org. This also speeds things up, since exporting to latex is fast, but compiling is slow. I can export and still use emacs, rather than waiting for the compile to finish. But if you want to run latexmk from Org, that works too. The "-pvc-" turns off the "preview continuous" mode (daemon). (setq org-latex-pdf-process (list "/usr/texbin/latexmk -f -gg -pvc- %f")) -k.