This is a test to build reports in R Markdown.

Image example

Logo Politécnico Grancolombiano

Logo Politécnico Grancolombiano

Application 2

long caption

long caption

aaaaaaa

jaja

plot(iris$Sepal.Length, iris$Sepal.Width)

tables

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)

testing jumps intro report

jump to Image example

Table set -> another form of report, just quit: `

> Testing tab

# Tabset {.tabset .tabset-fade .tabset-pills} ## Tab 1 text 1

## Tab 2 test 2

### End tabset

Here is the CSS file to create this report, copy in notepad and save like “todos los archivos”, remember this should save name like: “faded.css”

h1{

color: white;

padding: 10px;
background-color: #3399ff

}

ul {

list-style-type: square;

}

.MathJax_Display {

padding: 0.5em;
background-color: #eaeff3

}

inline_notes

Here is an inline note.1

footnotes

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 ##—


  1. Inlines notes are easier to write, since you don’t have to pick an identifier and move down to type the note.

  2. Here is the footnote.

  3. 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.