Skip to content

Latest commit

 

History

History
77 lines (67 loc) · 2.21 KB

papers.md

File metadata and controls

77 lines (67 loc) · 2.21 KB

List of papers

{{ site.data.paperlist.papers.size }} papers are listed.

You can click on each title to display more information, including authors, url to pdf, abstract and bibtex.

{% comment %} tags: Review Robotics Games Neural Architecture Search All ––> {% endcomment %}

{% assign paperlist = site.data.paperlist.papers | group_by: 'year' | sort:"name" %} {% for yeargroup in paperlist reversed %} {% if yeargroup.name == "" %}

Undated: {{ yeargroup.size }} Papers

{% else %}

{{ yeargroup.name }}: {{ yeargroup.size }} Papers

{% endif %}
    {% assign sortedgroup = yeargroup.items | sort:"title" %} {% for item in sortedgroup %} {% if item.title %}
  • {{ item.title }} {% if item.tags contains "review" %}Review{% endif %} {% if item.tags contains "robotics" %}Robotics{% endif %} {% if item.tags contains "games" %}Games{% endif %} {% if item.tags contains "neural architecture search" %}Neural Architecture Search{% endif %}
    {% if item.authors %}

    Authors:

      {% for author in item.authors %}
    • {{ author }}
    • {% endfor %}
    {% endif %}
    	{% if item.abstract %}
    	   <h4>Abstract:</h4>
    	   {{ item.abstract }}
    	{% endif %}
    
    	{% if item.pdfurl or item.codeurl or item.webpageurl %}
    	   <h4>Links:</h4>
    	   <ul>
    	   {% if item.pdfurl %}
    	   <li><a href="{{ item.pdfurl }}">Paper</a></li>
    	   {% endif %}
    	   {% if item.codeurl %}
    	   <li><a href="{{ item.codeurl }}">Source-code</a></li>
    	   {% endif %}
    	   {% if item.webpageurl %}
    	   <li><a href="{{ item.webpageurl }}">Webpage</a></li>
    	   {% endif %}
    	   </ul>
    	{% endif %}
    
    	{% if item.bibtex %}	 
    	   <h4>Bibtex:</h4>
    	   <pre><code>{{ item.bibtex }}</code></pre>
    	{% endif %}
    
    	<hr>
    	
    	 </blockquote>
    	</details>
    </li>
    {% endif %}
    {% endfor %}
    
{% endfor %}