{% trans 'Harvard-style Citation' %}

    {% for author in article.frozenauthor_set.all %}
  • {{ author.last_name }}, {{ author.first_name|slice:"1" }}
  • {% endfor %}
({{ article.date_published.year }}) '{{ article.title|safe }}', {% if journal.name %}{{ journal.name }}{% else %}{{ request.press.name }} Preprints{% endif %}. {% if article.issue %}{{ article.issue.volume }}({{ article.issue.issue }}){% endif %}{% if article.page_range %}:{{ article.page_range }}.{% endif %} {% if article.identifier.id_type == 'doi' %} {% include "elements/doi_display.html" with doi=article.identifier.identifier title=article.title %} {% endif %} {% include "admin/elements/button_copy_element.html" with element_id="harvard-cite" %}

{% trans 'Vancouver-style Citation' %}

    {% for author in article.frozenauthor_set.all %}
  • {{ author.last_name }}, {{ author.first_name|slice:"1" }}
  • {% endfor %}
{{ article.title|safe }}. {% if journal.name %}{{ journal.name }}{% else %}{{ request.press.name }} Preprints{% endif %}. {{ article.date_published.year }} {{ article.date_published.month }};{% if article.issue %} {{ article.issue.volume }}({{ article.issue.issue }}){% endif %}{% if article.page_range %}:{{ article.page_range }}.{% endif %} {% if article.identifier.id_type == 'doi' %} {% include "elements/doi_display.html" with doi=article.identifier.identifier title=article.title %} {% endif %} {% include "admin/elements/button_copy_element.html" with element_id="vancouver-cite" %}

{% trans 'APA-style Citation' %}

    {% for author in article.frozenauthor_set.all %}
  • {{ author.last_name }}, {{ author.first_name|slice:"1" }}
  • {% endfor %}
({{ article.date_published.year }}, {{ article.date_published.month }} {{ article.date_published.day }}). {{ article.title|safe }}. {% if journal.name %}{{ journal.name }}{% else %}{{ request.press.name }} {% trans 'Preprints' %}{% endif %} {% if article.issue %}{{ article.issue.volume }}({{ article.issue.issue }}){% endif %}{% if article.page_range %}:{{ article.page_range }}.{% endif %} {% if article.identifier.id_type == 'doi' %} {% include "elements/doi_display.html" with doi=article.identifier.identifier title=article.title %} {% endif %} {% include "admin/elements/button_copy_element.html" with element_id="apa-cite" %}