blob: e41fdf480c68477e957393dd829e812c70616636 (
plain)
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
|
```
% pandoc -t latex --citeproc
Lorem ipsum
# References
::: {#refs}
:::
^D
Lorem ipsum
\section{References}\label{references}
\protect\phantomsection\label{refs}
```
```
% pandoc -t latex --citeproc
---
references:
- id: foo
type: book
title: The Title
author: John Doe
...
Lorem ipsum [@foo].
# References
::: {#refs}
:::
^D
Lorem ipsum (John Doe, n.d.).
\section{References}\label{references}
\protect\phantomsection\label{refs}
\begin{CSLReferences}{1}{0}
\bibitem[\citeproctext]{ref-foo}
John Doe. n.d. \emph{The Title}.
\end{CSLReferences}
```
|