showtext icon indicating copy to clipboard operation
showtext copied to clipboard

Using Fonts More Easily in R Graphs

Results 20 showtext issues
Sort by recently updated
recently updated
newest added

Great package, used every time I make a figure in R. There's a weird bug where Acrobat distorts lower case "l"s. A minimal reproducible example: ``` library(showtext) library(ggplot2) font_add_google("Roboto") p1

I have not been able to use the bold or italic font faces included in .ttc files, where all faces are in the same file. There is no problem with...

When trying to use Arabic text in a ggplot, it usually functions normally (as shown in my first example without showtext). However, using a font family with _showtext_ I get...

I am trying to use emojis in a `ggplot` y axis for which I use a custom font (via `showtext`). I have noticed that emojis don't render after `showtext_auto()`. Is...

Hi @yixuan thank you for this beautiful package! 🚀 🌻 I have a quick question regarding [showtextdb::font_install()](https://github.com/yixuan/showtextdb/blob/master/R/font_install.R). Right now, it seems that it only supports installing fonts from an online...

```r require(showtext) showtext_auto(enable = F) plot(1) ``` ```r showtext_auto(enable = T) plot(1) ``` When I setup the dpi, font size changes ```r showtext_auto(enable = T) showtext_opts(dpi = 220) plot(1) ```...

I'd be happy to get this repo setup using GitHub Actions and vdiffr for automated visual testing https://github.com/r-lib/vdiffr

I'd like to use non-standard fonts in a ggplot but I also want to manipulate some widths so that several plots align vertically. Unfortunately after converting to a plot Grob...

Hi Is there a way to use OpenType Contextual Alternates, using a .otf font? I am trying to use .otf fonts that do have alternates but they don't seem to...

I stumpled on this, when trying to display text from my [Datalegreya package](https://github.com/emiltb/datalegreyar). The [Datalegreya font](https://github.com/figs-lab/datalegreya/tree/master/font-files) uses Contextual Alternates to elegantly make axis labels on plots. If I try to...