From laurent_step at yahoo.fr Thu Aug 1 08:31:37 2013 From: laurent_step at yahoo.fr (=?UTF-8?Q?St=C3=A9phane_Laurent?=) Date: Wed, 31 Jul 2013 23:31:37 -0700 (PDT) Subject: [Tikzdevice-bugs] installing tikzDevice in R-3.0.1 with Windows Message-ID: <09db1ef9-5421-4d1a-8f81-44fa2268fbe1@googlegroups.com> Hello, Currently what is the way to install tikzDevice in R-3.0.1 under Windows ? SL From alastair.andrew at gmail.com Thu Aug 22 13:54:29 2013 From: alastair.andrew at gmail.com (Alastair Andrew) Date: Thu, 22 Aug 2013 04:54:29 -0700 (PDT) Subject: [Tikzdevice-bugs] Respecting ggplot2 element_text font family Message-ID: Hi, Is there anyway to get RTikzDevice to use the same font face as you've specified in family argument of element_text? For example: library(ggplot2) p <- ggplot(diamonds, aes(carat, ..density..)) + geom_histogram(binwidth = 1) p + facet_grid(. ~ cut) + theme(strip.text.x = element_text(family="mono")) This example will have the facet labels typeset in a monospaced font. If I use the tikzDevice the output will just have normal serif font face. Is there anyway to achieve the look I want without manually wrapping the facet labels in a LaTeX \texttt{}. I tend to find that approach leads to unusual spacing issues. Especially in the legend. Thanks, Alastair.