summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/cluttex/example/bibtex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/support/cluttex/example/bibtex')
-rw-r--r--Master/texmf-dist/doc/support/cluttex/example/bibtex/baz.bib7
-rw-r--r--Master/texmf-dist/doc/support/cluttex/example/bibtex/foo.bib7
-rw-r--r--Master/texmf-dist/doc/support/cluttex/example/bibtex/main.tex7
-rw-r--r--Master/texmf-dist/doc/support/cluttex/example/bibtex/sub.tex1
4 files changed, 22 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/support/cluttex/example/bibtex/baz.bib b/Master/texmf-dist/doc/support/cluttex/example/bibtex/baz.bib
new file mode 100644
index 00000000000..6c8a08e2cd9
--- /dev/null
+++ b/Master/texmf-dist/doc/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/Master/texmf-dist/doc/support/cluttex/example/bibtex/foo.bib b/Master/texmf-dist/doc/support/cluttex/example/bibtex/foo.bib
new file mode 100644
index 00000000000..2d9dbed71e6
--- /dev/null
+++ b/Master/texmf-dist/doc/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/Master/texmf-dist/doc/support/cluttex/example/bibtex/main.tex b/Master/texmf-dist/doc/support/cluttex/example/bibtex/main.tex
new file mode 100644
index 00000000000..e5f288045f5
--- /dev/null
+++ b/Master/texmf-dist/doc/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/Master/texmf-dist/doc/support/cluttex/example/bibtex/sub.tex b/Master/texmf-dist/doc/support/cluttex/example/bibtex/sub.tex
new file mode 100644
index 00000000000..02251b5c5cb
--- /dev/null
+++ b/Master/texmf-dist/doc/support/cluttex/example/bibtex/sub.tex
@@ -0,0 +1 @@
+baz\cite{LaTeX-Lamport}