This is a test to build reports in R Markdown.
Logo Politécnico Grancolombiano
long caption
plot(iris$Sepal.Length, iris$Sepal.Width)print.data.frame(head(cars))## speed dist
## 1 4 2
## 2 4 10
## 3 7 4
## 4 7 22
## 5 8 16
## 6 9 10
knitr::kable(head(cars))| speed | dist |
|---|---|
| 4 | 2 |
| 4 | 10 |
| 7 | 4 |
| 7 | 22 |
| 8 | 16 |
| 9 | 10 |
cars_tbl <- tibble::as_tibble(head(cars))
#tibble::print.tbl_df(cars_tbl)jump to Image example
> Testing tab
# Tabset {.tabset .tabset-fade .tabset-pills} ## Tab 1 text 1
## Tab 2 test 2
### End tabset
h1{
color: white;
padding: 10px;
background-color: #3399ff
}
ul {
list-style-type: square;
}
.MathJax_Display {
padding: 0.5em;
background-color: #eaeff3
}
Here is an inline note.1
Here is a footnote reference,2 and another.3
This paragraph won’t be part of the note, because it isn’t indented.
title: “My Report v2” subtitle: “test report” author: “Mora, S.” date: “febrero 27, 2019” output: html_document: css: faded.css # Crea un estilo de .CSS y lo usa como parte del tema number_sections: no # Poner numero a secciones toc: yes # tabla de contenido toc_float: yes # tabla de contenido flotante toc_depth: 4 # Profundidad de subencabezados code_folding: hide # dejando codigo oculto o visible, depende del lector fig_caption: yes theme: spacelab # Tema del documento:::tenemos los siguientes temas -> cerulean, journal, flatly, readable, spacelab, united, or cosmo highlight: zenburn # tema del código ##—
Inlines notes are easier to write, since you don’t have to pick an identifier and move down to type the note.↩
Here is the footnote.↩
Here’s one with multiple blocks.
Subsequent paragraphs are indented to show that they belong to the previous footnote.
{ some.code }
The whole paragraph can be indented, or just the first line. In this way, multi-paragraph footnotes work like multi-paragraph list items.↩