{% extends 'base.html' %} {% load static %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% load dash_slash %} {% block title %} {% trans 'SummarizePaper Tree - Discovering Connections between Research Papers using AI' %} {% endblock %} {% block extra_head_tags %} {% endblock %} {% block header_class %}{% endblock %} {% block content %}
{% if exist != 0 %} {% if paper.title %}

{{ paper.title }}

{% endif %}
{% if paper.authors.all %}

{% trans 'Authors:' %} {% for author in paper.authors.all %} {{ author.name }}{% if author.affiliation %} ({{ author.affiliation }}){% endif %}{% if not forloop.last %}, {% endif %} {% endfor %}

{% endif %}
{% if paper.journal_ref %}
{{ paper.journal_ref }}
{% endif %}
{% if paper.link_homepage %}{% endif %}arXiv: {{ arxiv_id|dash_slash }}{% if paper.link_homepage %}{% endif %}{% if paper.link_doi %} - DOI{% endif %}{% if paper.category %} ({{ paper.category }}){% endif %}
{% if paper.comments %}
{{ paper.comments }}
{% endif %} {% if paper.license %}
{% trans 'License:' %} {{ cc_format }}
{% else %}
{% trans 'License:' %} ASSUMED 1991-2003
{% endif %}
{% if paper.abstract %}

{% trans 'Abstract:' %} {{ paper.abstract }}

{% endif %}
{% if paper.published_arxiv %}
{% trans 'Submitted to arXiv on' %} {{ paper.published_arxiv|date:"d M. Y" }}
{% endif %} {% if alpaper %}

{% trans 'Explore the paper tree' %}

{% trans 'Click on the tree nodes to be redirected to a given paper and access their summaries and virtual assistant' %}

{% trans 'Also access our AI generated' %} {% trans 'Summaries' %}, {% trans ' or ask questions about this paper to our' %} {% trans 'AI assistant' %}.
{% csrf_token %}

{% trans 'Look for similar papers (in beta version)' %}

{% trans 'By clicking on the button above, our algorithm will scan all papers in our database to find the closest based on the contents of the full papers and not just on metadata. Please note that it only works for papers that we have generated summaries for and you can rerun it from time to time to get a more accurate result while our database grows.' %}

{% else %}

{% trans 'The paper tree for this article is not created yet. To create it, you can run our tools' %} {% trans 'on this page' %}.

{% endif %} {% else %}

{% trans 'There is no existing article with the given arXiv ID:' %} {{ arxiv_id }}. {% blocktrans %} Try again your search with a new arXiv ID.{% endblocktrans %}

{% endif %}
{% endblock %} {% block scripts %} {% if alpaper %} {% endif %} {% endblock %}