-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCitation.qmd
executable file
·42 lines (33 loc) · 1.09 KB
/
Citation.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Citation
## Book bibliographic details in APA format:
::: {.callout-note}
Eerola, T. (2024). _Music and Science – A Guide to Empirical Music Research_. SEMPRE Studies in the Psychology of Music. London, UK: Routledge.
:::
## Book bibliographic details in `bibtex` format:
```{python}
#| eval: false
@book{eerola2024,
year = {2024},
author = {Eerola, T.},
title = {Music and Science -- A Guide to Empirical Music Research},
address = {London, UK},
publisher = {Routledge},
series = {SEMPRE Studies in the Psychology of Music},
doi = {https://doi.org/10.4324/9781003293804}
}
```
## Website bibliographic details in APA format:
::: {.callout-note}
Eerola, T. (2024). _Music and Science – A Guide to Empirical Music Research_. [https://tuomaseerola.github.io/emr/](https://tuomaseerola.github.io/emr/)
:::
## Website bibliographic details in `bibtex` format:
```{python}
#| eval: false
@misc{eerola2024online,
author = {Eerola, T.},
title = {Music and Science -- A Guide to Empirical Music Research},
year = {2024},
url = {https://tuomaseerola.github.io/emr/},
urldate = {2024-1-1}
}
```