📚 科研文献日报

{{ date }}
总计{{ stats.total }}
⭐ 高度相关{{ stats.high_relevance }}
📌 一般相关{{ stats.medium_relevance }}
📋 低相关{{ stats.low_relevance }}
期刊分布 & 主题分布
按期刊
{% for j, count in stats.by_journal.items() %} {{ j }} ({{ count }}) {% endfor %}
按主题
{% for t, count in stats.by_topic.items() %} {{ t }} ({{ count }}) {% endfor %}
{% if high_articles %}
⭐ 高度相关 ({{ high_articles|length }})
{% for a in high_articles %}
{{ a.ai_relevance }}
{{ a.journal }} {% if a.authors %} · {{ a.authors[:3]|join(', ') }}{% if a.authors|length > 3 %} 等{% endif %}{% endif %} · {{ a.published_date }}
{% if a.ai_summary %}
{{ a.ai_summary }}
{% endif %}
{% for tag in a.ai_tags %}{{ tag }}{% endfor %}
{% if a.ai_reasoning %}
💡 {{ a.ai_reasoning }}
{% endif %}
{% endfor %}
{% endif %} {% if medium_articles %}
📌 一般相关 ({{ medium_articles|length }})
{% for a in medium_articles %}
{{ a.ai_relevance }}
{{ a.journal }} {% if a.authors %} · {{ a.authors[:3]|join(', ') }}{% if a.authors|length > 3 %} 等{% endif %}{% endif %} · {{ a.published_date }}
{% if a.ai_summary %}
{{ a.ai_summary }}
{% endif %}
{% for tag in a.ai_tags %}{{ tag }}{% endfor %}
{% endfor %}
{% endif %} {% if low_articles %}
📋 低相关 ({{ low_articles|length }})
展开查看 {{ low_articles|length }} 篇低相关文章... {% for a in low_articles %}
{{ a.ai_relevance }}
{{ a.journal }} · {{ a.published_date }}
{% if a.ai_summary %}
{{ a.ai_summary }}
{% endif %}
{% endfor %}
{% endif %} {% if unscored_articles %}
⚠️ 未评分 ({{ unscored_articles|length }})
展开查看 {{ unscored_articles|length }} 篇未评分文章... {% for a in unscored_articles %}
{{ a.journal }} · {{ a.published_date }}
{% endfor %}
{% endif %}