Questions tagged [slidy]

A tool for making slideshows in HTML, created by the W3C

Slidy is free web application for making slideshows using HTML. It was created by the W3C.

Official page and resources: http://www.w3.org/Talks/Tools/Slidy2/

37 questions
1
vote
1 answer

r: R Markdown does not render Multiple Plots

I have created a function that programmatically generates the necessary charts for a pre-modeling Data Review. My goal is to run these in R Markdown to create a presentation, however, when I attempt to create an html_document, slidy_presentation,…
dre
  • 474
  • 5
  • 19
1
vote
1 answer

How to link slidy presentation to blogdown post

I followed the advice in the blogdown book, put my .Rmd file in the static directory and used R/build.R to render a slidy presentation. I'm wondering how I can now link or publish the html file in a blog post?
monarque13
  • 568
  • 3
  • 6
  • 27
1
vote
1 answer

How to detect a slide change in Slidy?

I use rmarkdown to produce a Slidy slide show using slidy_presentation. I would like to execute some Javascript when a slide is shown. In ioslides_presentation there's a slideenter event triggered when a page is shown (see Event when slide is…
user2554330
  • 37,248
  • 4
  • 43
  • 90
1
vote
1 answer

Resize videobox for animation in slidy presentation (RMarkdown)

I am making a presentation that contains an animation with a grid of plots in slidy (rmarkdown). The videobox is a bit too large for the slide and I would like to reduce it. My presentation is similiar to this one: --- title: "Adbd" output:…
Jon Nagra
  • 1,538
  • 1
  • 16
  • 36
1
vote
1 answer

css background-image does not work in Rmd slidify

All, I cannot understand why the image is not displayed in the background of my document, generated within RStudio (via the knitr button, to generate a slidy html document). here is my reproducible example: test.Rmd --- title: "test" output: …
cho7tom
  • 1,030
  • 2
  • 13
  • 30
1
vote
0 answers

center googleVis in rmarkdown slidy?

I would like to center, horizontally and vertically, the graphs generated with googleVis. Right now I have this code: --- title: "Untitled" output: slidy_presentation --- ## Slide with googleVis ```{r,…
Ignacio
  • 7,646
  • 16
  • 60
  • 113
1
vote
2 answers

Internal links in HTML slides made from markdown with pandoc

According to pandoc(1), pandoc supports internal links in HTML slides. But nothing happens for me when I click one. A minimal example: % A minimal example % moi % 2015-04-04 # Section 1 la la la # Section 2 cf. [Section 1](#section-1) I save…
user109114
  • 403
  • 4
  • 10
1
vote
2 answers

Overriding the default font size in a Slidy presentation

I'm trying to create a presentation using Slidy, and I want to increase the default font-size. Slidy presentations have default styling set in this CSS file, which includes the line font-size: 14pt; in the body element. Here's a minimalist Slidy…
Richie Cotton
  • 118,240
  • 47
  • 247
  • 360
0
votes
1 answer

Introduce a logo in rmarkdown slidy presentation

I have this rmarkdown file: --- title: "Hi" author: "me" date: 'July 2023' output: slidy_presentation: default powerpoint_presentation: default --- ## R Markdown This is an R Markdown presentation. Markdown is a simple formatting syntax for…
Amc
  • 131
  • 8
0
votes
1 answer

slide dimensions in r slidy

Using the default RStudio slidy html presentation template creates slides that have figures with fixed size (I believe 7 inches x 5 inches). When viewing on a larger/higher resolution screen, that can leave a lot of empty space (zooming only changes…
filups21
  • 1,611
  • 1
  • 19
  • 22
0
votes
0 answers

Unaligned Plotly Graphs (Bars + Pies) When Running Shiny RMarkdown Document

I created a slidy report in markdown that using runtime shiny, in of the slides there are several plotly bar and pie charts. However, all the latter are going unligned (legend is half showing or sometimes overlapping with itself), see a…
0
votes
1 answer

Presentation logo & background image

I am creating a report using slidy presentation and trying to embed a logo for all the slides and a background image in the first slide (As a cover page). I have been trying for a while now, but unfortunately with no luck. The code I have works…
0
votes
1 answer

Change the color of embedded hyperlink in Rmarkdown (Slidy)

This is a slidy_presentation in R, and I want my embedded hyperlink to be red in color instead of black, so that the user knows that the word "help" is clickable. I have referred to this post to include linkcolor: red, but it doesn't work, I'm not…
Hojiyama
  • 49
  • 8
0
votes
0 answers

Convert from slidy to powerpoint with pandoc or something else?

I'd like to convert a slidy presentation to powerpoint. I tried using pandoc: pandoc -f html+tex_math_dollars+tex_math_single_backslash test.html -o test.pptx Does create a powerpoint file, but the file doesn't have separate slides, all the text…
ssp3nc3r
  • 3,662
  • 2
  • 13
  • 23
0
votes
3 answers

How to add a external javascript library file to a specific component in Angular version 7

I'm a newbie with Angular framework. While I trying to create a HTML template using Angular version 7. I fall in to a problem about javascript library. My template has a lot a page such as home, about, product, etc... At a home page, I need to…