summaryrefslogtreecommitdiff
path: root/support/cluttex/example/biblatex
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /support/cluttex/example/biblatex
Initial commit
Diffstat (limited to 'support/cluttex/example/biblatex')
-rw-r--r--support/cluttex/example/biblatex/foo.bib14
-rw-r--r--support/cluttex/example/biblatex/main.tex8
-rw-r--r--support/cluttex/example/biblatex/sub.tex1
3 files changed, 23 insertions, 0 deletions
diff --git a/support/cluttex/example/biblatex/foo.bib b/support/cluttex/example/biblatex/foo.bib
new file mode 100644
index 0000000000..5aaa58dacb
--- /dev/null
+++ b/support/cluttex/example/biblatex/foo.bib
@@ -0,0 +1,14 @@
+@book{TeXbook,
+author = "Donald E. Knuth",
+title = "The {\TeX}book",
+publisher = "Addison-Wesley",
+address = "Reading, Massachusetts",
+year = 1984
+}
+@book{LaTeX-Lamport,
+author = "Leslie Lamport",
+title = "\LaTeX: A Document Preparation System",
+publisher = "Addison-Wesley",
+address = "Reading, Massachusetts",
+year = 1994
+} \ No newline at end of file
diff --git a/support/cluttex/example/biblatex/main.tex b/support/cluttex/example/biblatex/main.tex
new file mode 100644
index 0000000000..69ac565053
--- /dev/null
+++ b/support/cluttex/example/biblatex/main.tex
@@ -0,0 +1,8 @@
+\documentclass{article}
+\usepackage[backend=biber]{biblatex}
+\addbibresource{foo.bib}
+\begin{document}
+foo\cite{TeXbook}
+\include{sub}
+\printbibliography
+\end{document}
diff --git a/support/cluttex/example/biblatex/sub.tex b/support/cluttex/example/biblatex/sub.tex
new file mode 100644
index 0000000000..02251b5c5c
--- /dev/null
+++ b/support/cluttex/example/biblatex/sub.tex
@@ -0,0 +1 @@
+baz\cite{LaTeX-Lamport}