Skip to content
Snippets Groups Projects
Commit 7cd82dd8 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Recover the volume and issue of the papers

parent dae96f7c
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ import sys
# Query papers citing the two SWIFT ADS entries
query = ADSQueryWrapper(sys.argv[1])
query_data = query.get("citations(2016pasc.conf....2S) or citations(2018ascl.soft05020S)", fl="title,bibcode,first_author_norm,date,year,author_count,bibstem,abstract", rows=1000)
query_data = query.get("citations(2016pasc.conf....2S) or citations(2018ascl.soft05020S)", fl="title,bibcode,first_author_norm,date,year,author_count,bibstem,abstract,volume,issue,page", rows=1000)
paper_list = query_data.papers
# Process the data to make the title a string and not an array of strings
......
......@@ -28,6 +28,9 @@
{{ card.first_author_norm }},
{% endif %}
<i>{{ card.bibstem }}</i>, {{ card.year }}
{% if card.bibstem != "arXiv" %}
, {{ card.volume }}, {{ card.issue }}
{% endif %}
{% if card.abstract %}
<p class="hideshow">Abstract <i class="fa fa-chevron-right" aria-hidden="true"></i></p>
<p class="abstract card">{{ card.abstract }}</p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment