summaryrefslogtreecommitdiff
path: root/support/cluttex/example/bibtex
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/bibtex
Initial commit
Diffstat (limited to 'support/cluttex/example/bibtex')
-rw-r--r--support/cluttex/example/bibtex/baz.bib7
-rw-r--r--support/cluttex/example/bibtex/foo.bib7
-rw-r--r--support/cluttex/example/bibtex/main.tex7
-rw-r--r--support/cluttex/example/bibtex/sub.tex1
4 files changed, 22 insertions, 0 deletions
diff --git a/support/cluttex/example/bibtex/baz.bib b/support/cluttex/example/bibtex/baz.bib
new file mode 100644
index 0000000000..6c8a08e2cd
--- /dev/null
+++ b/support/cluttex/example/bibtex/baz.bib
@@ -0,0 +1,7 @@
+@book{LaTeX-Lamport,
+author = "Leslie Lamport",
+title = "\LaTeX: A Document Preparation System",
+publisher = "Addison-Wesley",
+address = "Reading, Massachusetts",
+year = 1994
+}
diff --git a/support/cluttex/example/bibtex/foo.bib b/support/cluttex/example/bibtex/foo.bib
new file mode 100644
index 0000000000..2d9dbed71e
--- /dev/null
+++ b/support/cluttex/example/bibtex/foo.bib
@@ -0,0 +1,7 @@
+@book{TeXbook,
+author = "Donald E. Knuth",
+title = "The {\TeX}book",
+publisher = "Addison-Wesley",
+address = "Reading, Massachusetts",
+year = 1984
+}
diff --git a/support/cluttex/example/bibtex/main.tex b/support/cluttex/example/bibtex/main.tex
new file mode 100644
index 0000000000..e5f288045f
--- /dev/null
+++ b/support/cluttex/example/bibtex/main.tex
@@ -0,0 +1,7 @@
+\documentclass{article}
+\begin{document}
+foo\cite{TeXbook}
+\include{sub}
+\bibliographystyle{plain}
+\bibliography{foo,baz}
+\end{document}
diff --git a/support/cluttex/example/bibtex/sub.tex b/support/cluttex/example/bibtex/sub.tex
new file mode 100644
index 0000000000..02251b5c5c
--- /dev/null
+++ b/support/cluttex/example/bibtex/sub.tex
@@ -0,0 +1 @@
+baz\cite{LaTeX-Lamport}