You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/quarto_features/index.qmd
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -379,7 +379,7 @@ A bibliography file (with extension `.bib`) is a text file that stores informati
379
379
```
380
380
:::
381
381
382
-
Provide the path to your bibliography in the YAML metadata for the page e.g.,:
382
+
First, tell Quarto which bibliography file to use by adding it in the YAML at the top of your page:
383
383
384
384
```yaml
385
385
---
@@ -388,9 +388,9 @@ bibliography: references.bib
388
388
---
389
389
```
390
390
391
-
A simple in-textcitation looks like this...
392
-
can wrap in () and [] if want...
393
-
use @ and identifier...
391
+
To cite a source in your text, type `@` followed by the citation key. You can put this inside a sentence or inside parentheses.
392
+
393
+
Single citation:
394
394
395
395
:::: {.columns}
396
396
::: {.column width=47%}
@@ -405,7 +405,7 @@ Some frogs can communicate using ultrasonic calls that are far above the range o
405
405
:::
406
406
::::
407
407
408
-
Multiple citations can be combined, use semicolon to separate
408
+
Multiple citations (separated by a semicolon):
409
409
410
410
:::: {.columns}
411
411
::: {.column width=47%}
@@ -420,7 +420,7 @@ Ultrasonic communication in frogs shows that amphibian hearing and vocal behavio
420
420
:::
421
421
::::
422
422
423
-
By default, a list of works cited will be placed at the end of the document. You can change where this is by provided `refs` div -
423
+
By default, Quarto adds a list of works cited at the end of the document. If you want to control where this appears, you can add a `refs` div at the point where you want the reference list:
424
424
425
425
::::: {.columns}
426
426
:::: {.column width=30%}
@@ -447,7 +447,7 @@ By default, a list of works cited will be placed at the end of the document. You
447
447
448
448
**Task:** In `quarto_features.qmd`:
449
449
450
-
*[ ] A bib file is provided... add citation using key from file...
450
+
*[ ] A `.bib` file is provided in the template site (`pages/references.bib`). Add this file to the YAML front matter using the `bibliography:` option, then add at least one in‑text citation to your page using a key from that file.
0 commit comments