From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Problem with babel and R + lattice Date: Thu, 8 Mar 2012 14:40:11 -0600 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:49673) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5k8G-0008Ca-AO for emacs-orgmode@gnu.org; Thu, 08 Mar 2012 15:40:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S5k8E-00039z-Pk for emacs-orgmode@gnu.org; Thu, 08 Mar 2012 15:40:15 -0500 Received: from mail-bk0-f41.google.com ([209.85.214.41]:42949) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5k8E-00039k-Fh for emacs-orgmode@gnu.org; Thu, 08 Mar 2012 15:40:14 -0500 Received: by bkwq16 with SMTP id q16so862024bkw.0 for ; Thu, 08 Mar 2012 12:40:11 -0800 (PST) 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 I have an R block like so: #+begin_src R library(lattice) library(tikzDevice) =bunch of code= barchart(side$name~side$x2,groups=side$type,horiz=T, xlim=c(0,0.75),col=c("lightblue","yellow"),xlab="Product Performance (2-box)") dev.off() tools::texi2dvi("bar-2b.tex",pdf=T) #+end_src The resultant tex file is empty where the tikz code should be and texi2dvi fails. Any suggestions? If I change my plot to base graphics with barplot, it works. I'm thinking this is a lattice/babel issue? Thanks for any input, John