Skip to content

Commit

Permalink
adding new quarto book to lab report folder
Browse files Browse the repository at this point in the history
  • Loading branch information
CarissaGervasi-NOAA committed Feb 6, 2024
1 parent f448968 commit a2f7dca
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Lab report/Test lab report.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: "Test lab report"
format: html
editor: visual
---

## Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.

## Running Code

When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You can embed code like this:

```{r}
1 + 1
```

You can add options to executable code like this

```{r}
#| echo: false
2 * 2
```

The `echo: false` option disables the printing of code (only output is displayed).
Empty file added Lab report/_quarto.yml
Empty file.
26 changes: 26 additions & 0 deletions Lab report/index.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: "index"
format: html
editor: visual
---

## Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.

## Running Code

When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You can embed code like this:

```{r}
1 + 1
```

You can add options to executable code like this

```{r}
#| echo: false
2 * 2
```

The `echo: false` option disables the printing of code (only output is displayed).

0 comments on commit a2f7dca

Please sign in to comment.