{% extends "base.html" %} {% import "entity_macros.html" as entity_macros %} {% import "edit_macros.html" as edit_macros %} {% block body %}

Reference Fuzzy Match Tool

Parse Citation

Enter a citation string here and we will try to parse it (using GROBID) into a structured format, then match against the catalog. {{ edit_macros.form_field_basic(form.raw_citation) }}
{% if grobid_status == "success" and grobid_dict %}

Parsed successfully! See match results below
{{ entity_macros.extra_metadata(grobid_dict) }}
{% endif %}

Fuzzy Match Metadata

Enter whatever bibliographic metadata fields you know, and we will try to match to catalog entries.

NOTE: if you already know a persistent identifier (like a DOI), you should use the lookup tool instead.

{{ edit_macros.form_field_basic(form.title) }}
{{ edit_macros.form_field_basic(form.first_author) }}
{{ edit_macros.form_field_basic(form.journal) }}
{{ edit_macros.form_field_basic(form.year) }} {{ edit_macros.form_field_basic(form.volume) }} {{ edit_macros.form_field_basic(form.issue) }} {{ edit_macros.form_field_basic(form.pages) }}

{% if matches is defined %}

Match Results

{% for match in matches %}

{{ match.status.name }}
{{ match.reason.name }}
{{ entity_macros.release_summary(match.release) }} {% if match.access_options %} {{ match.access_options[0].access_type.name }} {% endif %} {% endfor %}
{% if not matches %}

None! {% endif %} {% endif %} {% endblock %}