paper_card: Title

Description Usage Arguments Examples

View source: R/paper_card.R

Description

Title

Usage

1
paper_card(img_src, img_alt, title, subtitle, text, ...)

Arguments

...

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
if (interactive()) {
ui <- fluidPage(
  paperize(),
  paper_card(
    img_src = "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/R_logo.svg/724px-R_logo.svg.png",
    img_alt = "R logo",
    title = "The R Programming language",
    subtitle = "How Wikpedia defines R",
    text = "R is a programming language and free software environment for statistical
            computing and graphics supported by the R Foundation for
            Statistical Computing. The R language is widely used among
            statisticians and data miners for developing statistical software and data analysis."
  )
)

server <- function(input, output) {}

shinyApp(ui = ui, server = server)
}

feddelegrand7/paperrr documentation built on Dec. 20, 2021, 7:48 a.m.