Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

R: How to make second level indented bullet points using RMarkdown ioslides?

Tags:

r

r-markdown

How do I make second level bullets in RMarkdown from Rstudio?

I tried

* Level1   + leve2 

and it didn't work. It's not exactly clear how to do it from the tutorial. This seems so simple to do in normal RMarkdown.

like image 892
xiaodai Avatar asked Oct 31 '14 02:10

xiaodai


People also ask

How do I create an ioslides presentation from R Markdown?

To create an ioslides presentation from R Markdown, you specify the ioslides_presentation output format in the YAML metadata of your document. You can create a slide show broken up into sections by using the # and ## heading tags (you can also create a new slide without a header using a horizontal rule ( --- ).

How to make a bulleted list in Rmarkdown?

It's not exactly clear how to do it from the tutorial. This seems so simple to do in normal RMarkdown. You have to make sure the full list is recognized as a bulleted list by inserting a blank line before the first bullet and you have to have 4 spaces before the '+' character for this to work.

How do I indent the second and third lines in R?

The second and third lines are not indented. Only the very last line is indented, and only one indent instead of the expected two. And all bullets are the secondary hollow style. It's as if I put the following syntax into R Studio, but I didn't. How do I get what I intended, the first chunk of pasted syntax? Show activity on this post.

Are all bullets secondary hollow style in R?

And all bullets are the secondary hollow style. It's as if I put the following syntax into R Studio, but I didn't. How do I get what I intended, the first chunk of pasted syntax? Show activity on this post. Show activity on this post. See the Pandoc documentation under Block content in list items.


2 Answers

--- title: "Untitled" date: "Friday, October 31, 2014" output: pdf_document ---   ```{r} summary(cars) ```   1. Item 1 2. Item 2     a. Item 2a     b. Item 2b 

Look at the above one, maybe the spacing is the problem

like image 195
Keniajin Avatar answered Sep 20 '22 16:09

Keniajin


  • Level 1
    • Level 2 (four spaces)

This works for me.

like image 25
Vishanth Avatar answered Sep 18 '22 16:09

Vishanth