From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: latex and bibliography? Date: Sat, 15 Jun 2013 15:52:19 +0200 Message-ID: <87mwqriir0.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51262) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UnquB-00019j-AL for emacs-orgmode@gnu.org; Sat, 15 Jun 2013 09:52:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UnquA-0002lH-7w for emacs-orgmode@gnu.org; Sat, 15 Jun 2013 09:52:35 -0400 Received: from plane.gmane.org ([80.91.229.3]:52683) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UnquA-0002lD-1J for emacs-orgmode@gnu.org; Sat, 15 Jun 2013 09:52:34 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Unqu7-0004p4-8y for emacs-orgmode@gnu.org; Sat, 15 Jun 2013 15:52:31 +0200 Received: from g231232248.adsl.alicedsl.de ([92.231.232.248]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 15 Jun 2013 15:52:31 +0200 Received: from tjolitz by g231232248.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 15 Jun 2013 15:52:31 +0200 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: emacs-orgmode@gnu.org Hi List, here is a minimal example of what I thought should work but does not: - org-bibtest.org ,-------------------------- | * chapter | ** section | \cite{west1995bayesian} | ** section | \bibliographystyle{plain} | \bibliography{bibtest} `-------------------------- - org-bibtest.bib ,-------------------------------------------------------------------------- | @article{west1995bayesian, | title={Bayesian inference in cyclical component dynamic linear models}, | author={West, Mike}, | journal={Journal of the American Statistical Association}, | volume={90}, | number={432}, | pages={1301--1312}, | year={1995}, | publisher={Taylor \& Francis Group} | } `-------------------------------------------------------------------------- => exports to ASCII buffer: ,--------------------------------------------------- | _________________ | | ORG-BIBTEST | | Thorsten Jolitz | _________________ | | | Table of Contents | _________________ | | 1 chapter | .. 1.1 section | .. 1.2 section | | | 1 chapter | ========= | | 1.1 section | ~~~~~~~~~~~ | | \cite{west1995bayesian} | | | 1.2 section | ~~~~~~~~~~~ | | \bibliographystyle{plain} \bibliography{bibtest} `--------------------------------------------------- Is that wrong use or am I not up-to-date? PS using ,-------------------------------- | * chapter | ** section | #+LATEX:\cite{west1995bayesian} | ** section | #+begin_latex | \bibliographystyle{plain} | \bibliography{bibtest} | #+end_latex `-------------------------------- did not work either: ,--------------------------------------------- | _________________ | | ORG-BIBTEST | | Thorsten Jolitz | _________________ | | | Table of Contents | _________________ | | 1 chapter | .. 1.1 section | .. 1.2 section | | | 1 chapter | ========= | | 1.1 section | ~~~~~~~~~~~ | | | 1.2 section | ~~~~~~~~~~~ | `--------------------------------------------- -- cheers, Thorsten