BibCheX Results

This file contains the results from running BibCheX on file {{ input_file }} at {{ now }}.

It contains a total of {{ total_entries }} entries.

Per-Item Results

The following list contains one block for each entry in your BibTeX file. BibTeX entries that did not lead to any problems are skipped. Each entry block has two sections, the first one listing differences to meta data pulled from data sources, the second block listing failed checks.
{% for entry in entries %}
Title: {{entry.title}}
BibTeX Key: {{entry.key}}
{% if entry.problems|length > 0 %}

Failed Checks

{% for problem in entry.problems %}
Problem{{problem.problem_type}}
Message{{problem.message}}
Details{{problem.details}}
{% endfor %}
{% endif %} {% if entry.differences|length > 0 %}

Differences to pulled-in data

{% for diff in entry.differences %}
Field{{diff.field}}
Suggestion(s) {%- if diff.suggestion is iterable and diff.suggestion is not string %} {%- if diff.suggestion|length > 1 %}
    {% for sugg in diff.suggestion %}
  • {{sugg}}
  • {% endfor %}
{% else %} {{diff.suggestion[0]}} {% endif %} {% else %} {{diff.suggestion}} {% endif %}
Current Value{% if diff.old|length > 0 %}{{diff.old}}{% else %}(empty){% endif %}
Data Source{{diff.source}}
{% endfor %}
{% endif %}
{% endfor %}

Cross-Entry Problems

This lists consistency problems involving mulitple entries.
{% for problem in global_problems %}
{{problem.message}}
{% endfor %}