Git Product home page Git Product logo

Comments (9)

hrbrmstr avatar hrbrmstr commented on September 12, 2024 6

I usually do:

ggplot(mtcars, aes(wt, mpg)) +
  geom_point() +
  labs(title="Roboto Condensed", subtitle="This is a subtitle") +
  theme_ipsum_rc() -> gg

ggsave("plot.pdf", gg, device = cairo_pdf)

when targeting PDF

from hrbrthemes.

slyrus avatar slyrus commented on September 12, 2024 1

I have a similar problem trying to use roboto condensed (via theme_ipsum_rc) in an Rmarkdown document -> pdf.

from hrbrthemes.

grantmcdermott avatar grantmcdermott commented on September 12, 2024 1

Just to add a simple solution that worked well for me: Specify cairo_pdf as your dev device for the PDF document. This is especially useful if you plan on exporting to multiple formats and don't want the overhead of switching between (say) PDF and PNG figures for (say) PDF and HTML output.

Example of relevant YAML section:

output: 
  pdf_document:
    dev: cairo_pdf
    <other pdf options>
  html_document:
    <html options>

from hrbrthemes.

hrbrmstr avatar hrbrmstr commented on September 12, 2024

Thx for trying out the pkg and taking the time to file an issue/question!

Can you post the output of sessionInfo()?

from hrbrthemes.

hrbrmstr avatar hrbrmstr commented on September 12, 2024

In retrospect, that may not matter.

Please try:

---
title: "hrbrthemes testbed"
output: pdf_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

```{r message=FALSE}
library(hrbrthemes)
library(tidyverse)
library(Cairo)

extrafont::loadfonts()
```

### Arial Narrow

```{r dev="cairo_pdf"}
ggplot(mtcars, aes(wt, mpg)) +
  geom_point() +
  labs(title="Arial Narrow", subtitle="This is a subtitle") +
  theme_ipsum()
```


### Roboto Condensed

```{r dev="cairo_pdf"}
ggplot(mtcars, aes(wt, mpg)) +
  geom_point() +
  labs(title="Roboto Condensed", subtitle="This is a subtitle") +
  theme_ipsum_rc()
```

from hrbrthemes.

hrbrmstr avatar hrbrmstr commented on September 12, 2024

And, I just pushed a change that makes this easier.

Assuming RStudio use,

  • File -> New File -> R Markdown
    • From Template
      • ipsum PDF Template

Will start off a new document with everything above so you don't need to cut/paste from other docs.

from hrbrthemes.

hrbrmstr avatar hrbrmstr commented on September 12, 2024

This was a rly helpful question and will likely ease the pain of many others. If you're inclined, would you mind forking the pkg and adding yourself to the DESCRIPTION file as a contributor? I can do it as well if you provide the necessary DESCRIPTION info fields. No worries if not, but this was a good thing to inquire about and cause the addition for.

from hrbrthemes.

leojoubert avatar leojoubert commented on September 12, 2024

Many thinks for having me as a contributor. I forked the repository and added my coordinate. Sorry btw for mistinking typing my answer, it was quite diffucult to read :)

from hrbrthemes.

sahirbhatnagar avatar sahirbhatnagar commented on September 12, 2024

Any idea how to do this for outputting a single plot to pdf?
I tried

Cairo::CairoPDF("plot.pdf")
ggplot(mtcars, aes(wt, mpg)) +
  geom_point() +
  labs(title="Roboto Condensed", subtitle="This is a subtitle") +
  theme_ipsum_rc()
dev.off()

But I don't get the robo font.
plot.pdf

from hrbrthemes.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.