-
Notifications
You must be signed in to change notification settings - Fork 0
/
papers.html
34 lines (30 loc) · 1.02 KB
/
papers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
layout: default
title: A Survey of Performance Optimization for Mobile Applications
description: A list of research papers for non-functional optimization of mobile applications
---
List of all papers.
Please consider <a href="https://solar.cs.ucl.ac.uk/appoptimization.github.io/contribution.html">contributing</a> by amending
the following list of the existing papers.
<p></p>
<table id="allPapers">
<thead><th>Year</th><th>Title</th><th>Authors</th><th>Venue</th></thead><tbody>
{% assign publicationsByYear = site.publications | sort: "year" | group_by: "year" %}
{% for year in publicationsByYear reversed %}
{% for publication in year.items %}
<tr>
<td>{{ publication.year }}</td>
<td><a href="{{ publication.url | prepend: site.baseurl }}">{{publication.title}}</a></td>
<td>{{ publication.authors }}</td>
<td>{{ publication.conference }}</td>
</tr>
{% endfor %}
{% endfor %}
</tbody></table>
<script>
$(document).ready(function() {
$('#allPapers').DataTable( {
"pagingType": "full_numbers"
} );
} );
</script>