From d7e802610baf6b14409bfde9e345968aed08a641 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 3 Jun 2020 15:49:25 -0700 Subject: start fleshing out /about and /help --- fatcat_scholar/templates/help.html | 81 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 fatcat_scholar/templates/help.html (limited to 'fatcat_scholar/templates/help.html') diff --git a/fatcat_scholar/templates/help.html b/fatcat_scholar/templates/help.html new file mode 100644 index 0000000..f5486b3 --- /dev/null +++ b/fatcat_scholar/templates/help.html @@ -0,0 +1,81 @@ +{% extends "base.html" %} + +{% macro example_search_box(query) -%} +
+ +
+
+ + +
+
+
+
+{% endmacro %} + +{% block main %} +

Scholar Search User Guide

+

See also: About Scholarly Search + +

In addition to the basic filtering and sorting options, this search +interface also allows the use of Lucene query syntax in the search box. You can +restrict term queries on multiple metadata fields using colon statements like +journal:Science, set filters like lang:de, and +apply range queries like year:>1989 year:<2000. + + +

Example Queries

+ +

Search for digitized pages about a topic from specific years: + +{{ example_search_box('"egyptian pyramid" access_type:ia_sim year:<2000') }} + +

Search for papers in Chinese matching a term: + +{{ example_search_box('lang:zh 临床表现多样') }} + +

Conference papers with an author name query: + +{{ example_search_box('type:paper-conference author:"natasha noy"') }} + +

Details

+ +

A partial list of metadata fields is: + +

+ +

You can restrict to records where the field exists with an asterisk like +doi:*, and negate any term like +!type:article-journal. + +

In-depth documentation of the query syntax is available from the open source project. The complete current search document schema can be fetched (in JSON format) from the search index itself. + + +

Known Issues

+ +

This project is currently a prototype, with only a limited amount of +content indexed. + +

Some known bugs and issues: + +

+{% endblock %} -- cgit v1.2.3