BibCheck 参考文献验证报告

输入文件: {{ report.input_file }}  |  验证时间: {{ report.timestamp }}  |  共 {{ summary.total }} 条引用
{{ summary.total }}
总计
{{ summary.verified }}
已验证
{{ summary.possible_match }}
待确认
{{ summary.not_found }}
未找到
{% if summary.total > 0 %}
{% endif %}
{% for vr in results %} {% endfor %}
# Citation Key 标题 年份 状态 匹配分数 来源
{{ loop.index }} {{ vr.reference.cite_key }} {{ vr.reference.title }} {{ vr.reference.year or '-' }} {% if vr.status == 'verified' %}已验证 {% elif vr.status == 'possible_match' %}待确认 {% else %}未找到{% endif %} {% if vr.match_score > 0 %} {{ "%.2f"|format(vr.match_score) }} {% else %}-{% endif %} {{ vr.best_match.source if vr.best_match else '-' }}
作者
{{ vr.reference.authors | join(', ') }}
{% if vr.reference.journal %}
期刊/会议
{{ vr.reference.journal }}{{ ' / ' + vr.reference.booktitle if vr.reference.booktitle else '' }}
{% endif %} {% if vr.reference.doi %}
DOI
{{ vr.reference.doi }}
{% endif %} {% if vr.best_match %}
最佳匹配
{{ vr.best_match.title }} ({{ vr.best_match.source }})
{% if vr.best_match.url %}
{{ vr.best_match.url }}
{% endif %} {% if vr.best_match.doi %}
DOI: {{ vr.best_match.doi }}
{% endif %} {% if vr.best_match.citation_count is not none %}
被引次数: {{ vr.best_match.citation_count }}
{% endif %} {% endif %} {% if vr.discrepancies %}
差异
{% for d in vr.discrepancies %}
{{ d }}
{% endfor %}{% endif %}