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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
```
% pandoc -f markdown -s -t biblatex
---
references:
- id: Larsson_2016
author:
- family: Larsson
given: Johan
citation-key: Larsson_2016
issued:
- year: 2016
medium: Windows
title: 'qualpalr: Automatic Generation of Qualitative Color Palettes'
type: software
URL: https://cran.r-project.org/package=qualpalr
version: 0.3.1
...
^D
@software{Larsson_2016,
author = {Larsson, Johan},
title = {Qualpalr: {Automatic} {Generation} of {Qualitative} {Color}
{Palettes}},
version = {0.3.1},
date = {2016},
url = {https://cran.r-project.org/package=qualpalr}
}
```
```
% pandoc -f markdown -s -t bibtex
---
references:
- id: Larsson_2016
author:
- family: Larsson
given: Johan
citation-key: Larsson_2016
issued:
- year: 2016
medium: Windows
title: 'qualpalr: Automatic Generation of Qualitative Color Palettes'
type: software
URL: https://cran.r-project.org/package=qualpalr
version: 0.3.1
...
^D
@misc{Larsson_2016,
author = {Larsson, Johan},
title = {Qualpalr: {Automatic} {Generation} of {Qualitative} {Color}
{Palettes}},
year = {2016},
url = {https://cran.r-project.org/package=qualpalr}
}
```
```
% pandoc -f biblatex -s -t csljson
@software{Larsson_2016,
author = {Larsson, Johan},
title = {Qualpalr: {Automatic} {Generation} of {Qualitative} {Color}
{Palettes}},
version = {0.3.1},
date = {2016},
url = {https://cran.r-project.org/package=qualpalr}
}
^D
[
{
"URL": "https://cran.r-project.org/package=qualpalr",
"author": [
{
"family": "Larsson",
"given": "Johan"
}
],
"id": "Larsson_2016",
"issued": {
"date-parts": [
[
2016
]
]
},
"title": "Qualpalr: Automatic Generation of Qualitative Color Palettes",
"title-short": "Qualpalr",
"type": "software",
"version": "0.3.1"
}
]
```
|