Questions tagged [xaringan]

An R package to create HTML5 slides based on R Markdown and the JavaScript library remark.js.

An R package to create HTML5 slides based on R Markdown and the JavaScript library remark.js . See its Github repository for more information: https://github.com/yihui/xaringan.

224 questions
0
votes
1 answer

Change font of numbers *only*

This may be a trivial question, but I couldn't find an obvious answer, so here goes... I have a site that is created using R and the xaringan package. These use mathjax to format maths. What I am looking for is a way to tell mathjax to format only…
0
votes
1 answer

How can I get rid of the back-tic inside a table generated by `kableExtra` in `xaringan` slides?

How can I get rid of the back-tic inside this table generated by kableExtra in xaringan slides? library(knitr) library(kableExtra) text_tbl <- data.frame( a= c("1", "2","...","L",""), b= c("$O_{11}$","$O_{21}$","...","$O_{L1}$","$n_{.1}$"), …
Sinval
  • 1,315
  • 1
  • 16
  • 25
0
votes
0 answers

font size of figure in xaringan slide too small

For some rason, xaringan is not modifying the size of the font in figures. I created figure p1 which looks like this (for the sake of the example, I am exaggerating the size of the text). However, when I include it in the xaringan presentation it…
0
votes
1 answer

Include specific slides from another presentation for Xaringan

I use xaringan R package for making presentations. I have following directory structure └── presentations ├── 01_intro | ├── intro.Rmd | └── intro.html └── 02_test | ├── test.Rmd | └── test.html └── 03_new …
0
votes
1 answer

trouble compiling my flipbookr Xaringan deck

I am having trouble compiling my {flipbookr} deck. I'm able to run the template without problems, but I'm getting a blank file that will not advance when I knit my own. If I remove the call to chunk_reveal() it works. r chunk_reveal("cars",…
Eric Green
  • 7,385
  • 11
  • 56
  • 102
0
votes
1 answer

Read a Sankey Diagram from a html file

I am making slides in the R package Xaringan and I want to present a few Sankey diagrams. I have them in a folder as html files. How can I load the diagrams into my presentation?
Valtyr
  • 123
  • 1
  • 12
0
votes
1 answer

incremental slide in class:middle: stuff move around

Text is moving when the list got larger because it wants to be in the middle, any way to change that behaviour while keeping the elements in the middle (as in the last or first version of the slide) --- title: "SFB1315 Result Gallery" subtitle:…
Julien Colomb
  • 508
  • 4
  • 20
0
votes
1 answer

Does the option results = 'asis' work in xaringan presentation?

I'm trying to create various slides in xaringan presentation using the option results='assis' of knitr, but it doesn't work. I have use the following code: --- title: "Presentation" author: "" date: "" output: …
andre
  • 141
  • 1
  • 6
0
votes
1 answer

How can I hide code blocks in xaringan presentation?

I'm running some plot code in markdown to generate a plot in a xaringan presentation. The code works but is a little long and so takes up the whole presentation slide forcing the actual plot off the edge (see img). How can I hide the code block…
QAsena
  • 603
  • 4
  • 9
0
votes
2 answers

Bullet color in Xaringan presentation

Is it possible to change the bullet colors in Xaringan presentation? The text should have a different color. I have not find any option in xaringanthemer package neither going through the css file. I could not find any information remark.js…
0
votes
0 answers

Creating Xaringan HTML presentation with HTML widgets and retaining widgets and formatting when attaching or uploading HTML file

I have created a Xaringan presentation with HTML widgets and custom formatting through CSS file modification. When I try to send the HTML file as an attachment via email or upload the HTML file to a site, none of the widgets or formatting are…
LBro
  • 113
  • 6
0
votes
1 answer

Incremental content do not work inside div

I am adding incremental bullet points inside a div and it doesn't seem to work. pres.Rmd --- title: "Incremental in Div" output: xaringan::moon_reader: encoding: 'UTF-8' self_contained: false css: ['default','styles.css'] --- ## No…
mindlessgreen
  • 11,059
  • 16
  • 68
  • 113
0
votes
0 answers

Xaringan plotly not rendering: A website is slowing down your browser what would you like to do

I'm trying to debug an OS specific error with xaringan (an issue with plotly) . I was able to create the following xaringan manhattan plot with the manhattanly package on a Linux and Mac OS at work earlier today but it's not rendering on my Windows…
0
votes
1 answer

Centering the text in a heading of a title slide using css in xaringan rmarkdown

How can I center the text in a heading of a title slide using css in xaringan rmarkdown. Using the below code it didn't. .title-slide h3:nth-child(2) { font-weight: normal; font-size: 40px; text-align: center; color: grey; …
1 2 3
14
15