summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib')
-rw-r--r--Master/texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib64
1 files changed, 63 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib b/Master/texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib
index 6d60469cbf2..7c10adbf771 100644
--- a/Master/texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib
+++ b/Master/texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib
@@ -1,6 +1,6 @@
% (APA 6.11)
@BOOK{6.11,
- AUTHOR = {Kessler, Jr., A},
+ AUTHOR = {Kessler, Jr., A.},
TITLE = {Title},
YEAR = {2003},
}
@@ -412,3 +412,65 @@
PAGES = {1-17},
DATE = {1906}
}
+
+% Suffix test for first-last (editor)
+@INCOLLECTION{stest1,
+ AUTHOR = {Gring, III, Alan J.},
+ EDITOR = {Greaves, Jr., Percy L.},
+ TITLE = {A test of suffix 1},
+ DATE = {1968},
+ LOCATION = {New York, NY},
+ PUBLISHER = {Wiley},
+ PAGES = {1--34}
+}
+
+% Suffix test for first-last (editor)
+@INCOLLECTION{stest2,
+ EDITOR = {Greaves, Jr., Percy L.},
+ TITLE = {A test of suffix 2},
+ DATE = {1968},
+ LOCATION = {New York, NY},
+ PUBLISHER = {Wiley},
+ PAGES = {1--34}
+}
+
+% Don't forget that useprefix=false doesn't ignore the prefix completely - it is still used in
+% hash and uniqueness generation and so there are two different "Greaves" here - one von and one not
+% Prefix test (useprefix=true)
+@BOOK{pretest,
+ AUTHOR = {Luis von Mises},
+ TITLE = {A Title},
+ YEAR = {2000}
+}
+
+% Prefix test (useprefix=false)
+@MISC{nopretest,
+ OPTIONS = {useprefix=false},
+ AUTHOR = {Luis von Mises},
+ TITLE = {Another Title},
+ YEAR = {2001}
+}
+
+% Prefix + suffix test (useprefix=true) first-last
+@INCOLLECTION{presufftest,
+ EDITOR = {von Greaves, Jr., Percy L.},
+ TITLE = {A test of prefix 2},
+ DATE = {1969},
+}
+
+% Prefix + suffix test (useprefix=false)
+@MISC{nopresufftest,
+ OPTIONS = {useprefix=false},
+ AUTHOR = {von Greaves, Jr., Percy L.},
+ TITLE = {A test of noprefix 2},
+ TITLE = {Another Title},
+ YEAR = {2001}
+}
+
+% Prefix + suffix test (useprefix=true)
+@BOOK{presufftest2,
+ AUTHOR = {von Greaves, Jr., Percy L.},
+ TITLE = {A test of noprefix 2},
+ TITLE = {Another Title},
+ YEAR = {2001}
+}