Quarto LCARS Theme

Library Computer Access/Retrieval System
Crew

Michael McCarthy

Stardate

2023.01.10

Mission Log

This is a template for testing the Quarto LCARS theme

Buttons

Typography

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5

Body Text

Normal text

Bold text

italics

strikethrough

links.

Footnotes1

inline code

Block quotes

Dorothy followed her through many of the beautiful rooms in her castle.

Rules

Horizontal Rule


Vertical Rule class="vr"


Disc Rule class="dr"


Lists

Ordered Lists

  1. First item
  2. Second item
  3. Third item
    1. Indented item
    2. Indented item
  4. Fourth item

Unordered Lists

  • First item
  • Second item
  • Third item
  • Fourth item

Code Output

collapse: false

print("message")
[1] "message"
# "Error"
stop("error")
Error in eval(expr, envir, enclos): error
# "Warning"
warning("message")
Warning: message

collapse: true

print("message")
## [1] "message"
# "Error"
stop("error")
## Error in eval(expr, envir, enclos): error
# "Warning"
warning("message")
## Warning: message

Code Blocks

“Function”

library(package)

package::my_function()
package:::my_secret_function()
package::my_function
package:::my_secret_function

“Attribute”

my_function(x, argument = "value")

“Normal”

x
x2
x_2

“String”

'string'
"string"
"newline\n and escaped slash \\"

“Constant”

123456789

“DecVal”, “Float”

1.23456789

“Operator”

TRUE
FALSE
NA
NA_character_
NA_complex_
NA_integer_
NA_real_
NaN
Inf
-Inf
NULL

“ControlFlow”

function(x) return(x)
for (x in 1:10) print(x)
while (x < 1) print(x)

“Other”

x <- 1

“SpecialChar”

package::my_function
TRUE | T
FALSE || F
y ~ x + (1 | z:w)
1L + 1L %% 2 == 0
1.0 * 1.0 / 1.0
+10 ^ 2 ** 2
-2 - 4i
x %>% print()
x |> print()
x$y

Unused by R/Quarto HTML

# Seemingly unused by R:
# - "SpecialString"
# - "Annotation"
# - "Keyword"
# - "DataType"
# - "BaseN"

Tables

Class Heading Heading
Default Cell Cell
Primary Cell Cell
Secondary Cell Cell
Success Cell Cell
Danger Cell Cell
Warning Cell Cell
Info Cell Cell
Light Cell Cell
Dark Cell Cell

Callout Blocks

Default Appearance

Note

Note that there are five types of callouts, including: note, tip, warning, caution, and important.

Warning

Callouts provide a simple way to attract attention, for example, to this warning.

Important

Danger, callouts will really improve your writing.

Tip

This is an example of a callout with a caption.

Expand To Learn About Collapse

This is an example of a ‘collapsed’ caution callout that can be expanded by the user. You can use collapse="true" to collapse it by default or collapse="false" to make a collapsible callout that is expanded by default.

Simple Appearance

Pay Attention

Using callouts is an effective way to highlight content that your reader give special consideration or attention.

Callouts provide a simple way to attract attention, for example, to this warning.

Danger, callouts will really improve your writing.

This is an example of a callout with a caption.

This is an example of a ‘collapsed’ caution callout that can be expanded by the user. You can use collapse="true" to collapse it by default or collapse="false" to make a collapsible callout that is expanded by default.

Forms

Legend
We'll never share your email with anyone else.
Radio buttons
Checkboxes
Switches
Ranges
Success! You've done it.
Sorry, that username's taken. Try another?
$ .00

Progress

Cards

Header

Secondary card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Footnotes

  1. Footnote↩︎