diff --git a/query.py b/query.py
index 8e7ea8699a8085dbdffb7abb4343d5f7a354436c..0d53efe570815735cf19e33dea3d0f3f3f8a1e04 100644
--- a/query.py
+++ b/query.py
@@ -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
diff --git a/templates/pubs.html b/templates/pubs.html
index 2a2972e2538aa8e8ec983800e887ea4f1bc13035..89e718f9ef036704186d9d30c0e9437dad068d1c 100644
--- a/templates/pubs.html
+++ b/templates/pubs.html
@@ -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>