Search Engine for Reference Database
Author
Title
Journal
Year
Important notes
please read before use:
If you enter strings in several fields, the database entry must match
all
of them.
The match is case-
in
sensitive.
This search function does
not
support simple "and" / "or" constructs. Instead, Perl-style regular expressions must be used to specify search terms:
A dot will match any character in a word, e.g. "m.ller" will match Miller and Müller, as well as Burgsmüller.
"müller|meyer" will match any paper written by at least one of the two.
Note that "müller | meyer" will only match "müller " or " meyer" (note the blanks), so omit the blanks to find all relevant matches.
To find all publications written by Müller
and
Meyer, you need to search for "(müller.*meyer)|(meyer.*müller)"
You can specify a range of years using a search term of the form "1991-1994" or "2000-".