Skip to content

Latest commit

 

History

History
76 lines (66 loc) · 4.04 KB

archives.md

File metadata and controls

76 lines (66 loc) · 4.04 KB
layout title permalink
page
Proceedings Archive
/archives/

This page contains a list of all publications that have been published at the NIME conferences.

  • Peer review: All papers have been peer-reviewed (most often by three international experts). See the list of reviewers. Only papers that were presented at the conferences (as presentation, poster or demo) are included.
  • Open access: NIME papers are open access (gold), and the copyright remains with the author(s). The NIME archive uses the Creative Commons Attribution 4.0 International License (CC BY 4.0).
  • Public domain: The bibliographic information for NIME, including all BibTeX information and abstracts, is public domain. The list below is generated automatically from a collection of BibTeX files hosted at GitHub.
  • PDFs: Individual papers are linked for each entry below. All PDFs are archived separately in Zenodo, and there are also Zip files for each year in Zenodo. If you just want to download everything quickly, you can find the Zip files here as well.
  • ISSN for the proceedings series: ISSN 2220-4806. Each year's ISBN is in the BibTeX files and are also listed here.
  • Impact factor: Academic work should always be considered on its own right (cf. DORA declaration). That said, the NIME proceedings are generally ranked highly in, for example, the Google Scholar ranking.
  • Ethics: Please take a look at NIME's Publication ethics and malpractice statement.
  • Contact: If you find any errors in the database, please feel free to fork and modify at GitHub, or add an issue in the tracker.

NIME publications (in backwards chronological order)

{% assign first_year = 2001 %} {% assign current_year = "now" | date: "%Y" %} {% assign nime_years = (first_year .. current_year) %} {% for i in nime_years reversed %}

{% assign year_entries = site.data.nime_papers | where: "year", i %} {% unless year_entries == empty %}

{{ i }}

    {% for entry in year_entries %} {% capture entry_url %}{{ entry.ID | datapage_url: "proc" | replace: ".html", "/index.html" | relative_url }}{% endcapture %}
  • {% include citation.html entry=entry link=entry_url %}
  • {% endfor %}
{% endunless %} {% endfor %}

{% comment %}

    {% for entry in site.data.nime_papers %} {% capture entry_url %}{{ entry.ID | datapage_url: "proc" | replace: ".html", "/index.html" | relative_url }}{% endcapture %}
  • {% include citation.html entry=entry link=entry_url %}
  • {% endfor %}
{% endcomment %}

{% comment %} {% bibliography --file nime_papers %} {% endcomment %}

<script> // map our commands to the classList methods const fnmap = { 'toggle': 'toggle', 'show': 'add', 'hide': 'remove' }; const collapse = (selector, cmd) => { const targets = Array.from(document.querySelectorAll(selector)); targets.forEach(target => { target.classList[fnmap[cmd]]('show'); }); } // Grab all the trigger elements on the page const triggers = Array.from(document.querySelectorAll('[data-toggle="collapse"]')); // Listen for click events, but only on our triggers window.addEventListener('click', (ev) => { const elm = ev.target; if (triggers.includes(elm)) { const selector = elm.getAttribute('data-target'); collapse(selector, 'toggle'); } }, false); </script>