diff --git a/.forestry/front_matter/templates/person.yml b/.forestry/front_matter/templates/person.yml deleted file mode 100644 index ba6172c5..00000000 --- a/.forestry/front_matter/templates/person.yml +++ /dev/null @@ -1,62 +0,0 @@ ---- -label: Person -hide_body: true -fields: -- name: title - label: Title - type: text - hidden: false - default: '' - description: Full name of the individual - config: - required: true -- name: first_name - label: First name - type: text - hidden: false - default: '' - config: - required: true -- name: last_name - label: Last name - type: text - hidden: false - default: '' - config: - required: true -- type: select - name: role - config: - source: - type: simple - required: true - options: - - alumni - - doctoral - - lab-member - - masters - - post-doctoral - - project-manager - - supervisor - label: role - description: Individual's relation to DDMAL (alumni, current student, etc...) - default: alumni -- name: link - label: Link - type: text - hidden: false - default: '' - description: Link to a personal/professional website related to individual -- name: affiliation - label: Affiliation - type: text - hidden: false - default: '' - description: 'Usually for alumni role: where the DDMAL member is now working/studying' -- name: degree - label: Degree - type: text - hidden: false - default: '' - description: 'Usually for alumni role: what degrees do they possess since leaving - McGill (ex. Post Doc, PhD, Masters)' diff --git a/.forestry/front_matter/templates/post-forestry.yml b/.forestry/front_matter/templates/post-forestry.yml deleted file mode 100644 index 921a8cbf..00000000 --- a/.forestry/front_matter/templates/post-forestry.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- -label: Blog Post -hide_body: false -fields: -- type: text - label: title - description: Title of post - config: - required: true - name: title -- type: text - name: layout - label: layout - description: Usually "post" or "page" - config: - required: true - default: page - hidden: true -- type: text - name: permalink - label: permalink - description: Override standard url extension to better organize site - hidden: true - config: - required: true - default: "/blog/:title" -pages: -- _posts/2018-12-20-test-post.md -- _posts/2018-12-21-test-post-2.md diff --git a/.forestry/front_matter/templates/research-project.yml b/.forestry/front_matter/templates/research-project.yml deleted file mode 100644 index 6f987375..00000000 --- a/.forestry/front_matter/templates/research-project.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- -label: Research Project -hide_body: false -fields: -- name: title - label: Title - type: text - hidden: false - default: '' -- name: layout - label: Layout - type: text - hidden: false - default: '' -- name: tab - label: Tab - type: text - hidden: false - default: '' -- name: permalink - label: Permalink - type: text - hidden: false - default: '' -- name: type - label: Type - type: text - hidden: false - default: '' diff --git a/.forestry/settings.yml b/.forestry/settings.yml deleted file mode 100644 index f46be77e..00000000 --- a/.forestry/settings.yml +++ /dev/null @@ -1,62 +0,0 @@ ---- -new_page_extension: md -auto_deploy: false -admin_path: -webhook_url: -sections: -- type: document - path: index.html - label: Home -- type: jekyll-posts - label: Blog - create: all - templates: - - post-forestry -- type: directory - path: _people - label: People - create: all - match: "**/*" - templates: - - person -- type: directory - path: _publications - label: Publications - create: all - match: "**/*" -- type: directory - path: _research - label: Research - create: all - match: "**/*" -- type: directory - path: _software - label: Software - create: all - match: "**/*" -- type: directory - path: _events - label: Events - create: all - match: "**/*" -- type: directory - path: _resources - label: Resources - create: all - match: "**/*" -upload_dir: assets -public_path: "{{ site.url }}/assets" -front_matter_path: '' -use_front_matter_path: false -file_template: ":filename:" -build: - preview_command: bundle exec jekyll build --drafts --unpublished --future -d _site - publish_command: bundle exec jekyll build -d _site - preview_env: - - JEKYLL_ENV=staging - publish_env: - - JEKYLL_ENV=production - preview_output_directory: _site - output_directory: _site - instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future - --port 8080 --host 0.0.0.0 -d _site diff --git a/.github/workflows/broken-link-checker.yml b/.github/workflows/broken-link-checker.yml new file mode 100644 index 00000000..e658d3c4 --- /dev/null +++ b/.github/workflows/broken-link-checker.yml @@ -0,0 +1,84 @@ +name: Check for Broken Links + +on: [push, pull_request] + +jobs: + build_and_check: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + with: + node-version: 16 + + - name: Setup Simple HTTP Server + run: | + nohup python -m http.server 8000 --bind 127.0.0.1 & # bind to IPv4 address + + - name: Wait for HTTP server + run: | + for i in {1..30}; do # maximum wait time is 30 seconds + if curl -s http://127.0.0.1:8000 > /dev/null; then + echo "HTTP server is up" + break + fi + echo "Waiting for HTTP server" + sleep 1 + done + + - name: Install dependencies + run: npm install -g broken-link-checker # Install the broken-link-checker package globally + + - name: Execute Link Checker and Show Broken Links + env: + TEMPORARY_WEBSITE_URL: "http://127.0.0.1:8000" + ACTUAL_WEBSITE_URL: "https://ddmal.music.mcgill.ca" + run: | + output=$(blc $TEMPORARY_WEBSITE_URL -re | \ + grep -v -E '├───OK───|└───OK───' | \ + awk ' + BEGIN { + p=1; + buf="" + } + + # The logic between the following two statements ensures lines started with "Getting links from:" + # and immediately followed by a line starting with "Finished!" and containing "0 broken" get removed + /^Getting links from:/ { + buf=$0; + next + } + /^Finished!.*0 broken\./ { + if (length(buf)>0) { + buf=""; + next + } + } + + { + if(length(buf)>0) + print buf; + if (NF > 0) # ensures only lines with non-zero fields are printed + print; + buf="" + } + + # Printing an empty line after any single "Finished!" keyword to separate the outputs + /^Finished!/ { + print "" + } + ' | sed "s|$TEMPORARY_WEBSITE_URL|$ACTUAL_WEBSITE_URL|g") + + echo "$output" + + # Fail the github actions only if there's a single HTTP 404 found + echo "$output" | grep -q 'HTTP_404' && flag=1 + + if [ "$flag" -eq "1" ]; then + echo "Broken links were found, exiting with an error." + exit 1 + else + echo "No broken links were found (although there may be other HTTP errors - check above), exiting successfully." + exit 0 + fi diff --git a/404.html b/404.html index f725f859..c6081539 100644 --- a/404.html +++ b/404.html @@ -1,10 +1,96 @@ ---- -layout: default -title: "404: Page not found" -permalink: 404.html ---- - -
-

404: Page not found

-

Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. Head back home to try finding it again.

-
+ + + + + + + + + + + + + + + 404: Page not found · DDMAL + + + + + + + + + + + + + + + +
+
+
+

404: Page not found

+

Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. Head back home to try finding it again.

+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/Gemfile b/Gemfile deleted file mode 100644 index e21c9eef..00000000 --- a/Gemfile +++ /dev/null @@ -1,43 +0,0 @@ -source "https://rubygems.org" - -# Hello! This is where you manage which Jekyll version is used to run. -# When you want to use a different version, change it below, save the -# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: -# -# bundle exec jekyll serve -# -# This will help ensure the proper Jekyll version is running. -# Happy Jekylling! -gem "jekyll", "~> 4.2.1" -# This is the default theme for new Jekyll sites. You may change this to anything you like. - -gem "minima", "~> 2.0" -gem 'contrast' -gem 'linear' -gem 'jekyll-theme-midnight' -gem 'jekyll-paginate' -gem 'jekyll-redirect-from' -# gem 'github-pages', '104', group: :jekyll_plugins - -# If you want to use GitHub Pages, remove the "gem "jekyll"" above and -# uncomment the line below. To upgrade, run `bundle update github-pages`. -# gem "github-pages", group: :jekyll_plugins - -# If you have any plugins, put them here! -group :jekyll_plugins do - gem "jekyll-feed", "~> 0.6" -end - -# Windows-specific dependencies - -# Windows does not include zoneinfo files, so bundle the tzinfo-data gem -# gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] - -# Performance-booster for watching directories on Windows -#gem "wdm", "~> 0.1.0" if Gem.win_platform? -#gem "nokogiri", ">= 1.11.4" - -# macOS-specific dependencies - -# macOS dependency for Ruby version 3.0.0 or higher -gem "webrick", "~> 1.8" diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index 0b6f354e..00000000 --- a/Gemfile.lock +++ /dev/null @@ -1,103 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - addressable (2.8.0) - public_suffix (>= 2.0.2, < 5.0) - awesome_print (1.8.0) - blankslate (3.1.3) - colorator (1.1.0) - concurrent-ruby (1.1.9) - contrast (1.1.0) - awesome_print - subtle - em-websocket (0.5.3) - eventmachine (>= 0.12.9) - http_parser.rb (~> 0) - eventmachine (1.2.7) - ffi (1.15.4) - forwardable-extended (2.6.0) - http_parser.rb (0.8.0) - i18n (1.8.11) - concurrent-ruby (~> 1.0) - jekyll (4.2.1) - addressable (~> 2.4) - colorator (~> 1.0) - em-websocket (~> 0.5) - i18n (~> 1.0) - jekyll-sass-converter (~> 2.0) - jekyll-watch (~> 2.0) - kramdown (~> 2.3) - kramdown-parser-gfm (~> 1.0) - liquid (~> 4.0) - mercenary (~> 0.4.0) - pathutil (~> 0.9) - rouge (~> 3.0) - safe_yaml (~> 1.0) - terminal-table (~> 2.0) - jekyll-feed (0.13.0) - jekyll (>= 3.7, < 5.0) - jekyll-paginate (1.1.0) - jekyll-redirect-from (0.15.0) - jekyll (>= 3.3, < 5.0) - jekyll-sass-converter (2.1.0) - sassc (> 2.0.1, < 3.0) - jekyll-seo-tag (2.7.1) - jekyll (>= 3.8, < 5.0) - jekyll-theme-midnight (0.2.0) - jekyll (> 3.5, < 5.0) - jekyll-seo-tag (~> 2.0) - jekyll-watch (2.2.1) - listen (~> 3.0) - kramdown (2.3.1) - rexml - kramdown-parser-gfm (1.1.0) - kramdown (~> 2.0) - linear (0.0.0) - liquid (4.0.3) - listen (3.7.0) - rb-fsevent (~> 0.10, >= 0.10.3) - rb-inotify (~> 0.9, >= 0.9.10) - mercenary (0.4.0) - mini_portile2 (2.8.1) - minima (2.5.1) - jekyll (>= 3.5, < 5.0) - jekyll-feed (~> 0.9) - jekyll-seo-tag (~> 2.1) - nokogiri (1.14.3) - mini_portile2 (~> 2.8.0) - racc (~> 1.4) - pathutil (0.16.2) - forwardable-extended (~> 2.6) - public_suffix (4.0.6) - racc (1.6.2) - rb-fsevent (0.11.0) - rb-inotify (0.10.1) - ffi (~> 1.0) - rexml (3.2.5) - rouge (3.26.1) - safe_yaml (1.0.5) - sassc (2.4.0) - ffi (~> 1.9) - subtle (1.2.0) - blankslate - terminal-table (2.0.0) - unicode-display_width (~> 1.1, >= 1.1.1) - unicode-display_width (1.8.0) - -PLATFORMS - ruby - -DEPENDENCIES - contrast - jekyll (~> 4.2.1) - jekyll-feed (~> 0.6) - jekyll-paginate - jekyll-redirect-from - jekyll-theme-midnight - linear - minima (~> 2.0) - nokogiri (>= 1.11.4) - tzinfo-data - -BUNDLED WITH - 2.0.2 diff --git a/README.md b/README.md index b92a9b98..e1ce02b4 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,19 @@ # [DDMAL](https://DDMAL.github.io/DDMAL-new-site) -This is the repository for the new DDMAL website distributed via GitHub Pages. It is a static website built using Jekyll, meaning that there is no backend presence, and the entirety of the site is stored in this repository, blog contents included. The formatting was adapted from the Lanyon theme, developed by Mark Otto. +This is the repository for the new DDMAL website distributed via GitHub Pages. It is a static website that has been modified to run without a CMS. The entirety of the site is stored in this repository, blog contents included. The formatting was adapted from the Lanyon theme, developed by Mark Otto. + +To view the old version using Forestry CMS, consult the 'old-forestry-version' branch. ## Contents - [Local Setup](#local-setup) -- [CMS](#cms) - - [CMS Navigation](#cms-navigation) - - [Organization](#organization) - - [Media](#media) +- [How to Create Lab Member Page](#creating-your-lab-member-page) - [Troubleshooting](#troubleshooting) ## Local Setup ### macOS / Windows Install -You will need to download a full [Ruby development environment](https://jekyllrb.com/docs/installation/) to install Jekyll. Follow steps 1 and 2 of [these instructions](https://jekyllrb.com/docs/) after installing Ruby. Note that mac users may need to install a package manager to configure the local Ruby version correctly, and [here](https://www.ruby-lang.org/en/documentation/installation/) is a link with instructions on how-to. - Assuming you have [Git](https://www.atlassian.com/git/tutorials/install-git) installed, open a terminal and clone the repository into any known location on your computer. The documents folder is recommended, though it is up to you. ### Configuration and building site locally @@ -25,134 +22,25 @@ Assuming you have [Git](https://www.atlassian.com/git/tutorials/install-git) ins git clone https://github.com/DDMAL/ddmal.github.io.git ``` -Enter the directory with `cd ddmal.github.io`, and pull from the repository to your local folder. Specifically, pull from the 'master' branch, the branch used by GitHub Pages to host the site. +Enter the directory with `cd ddmal.github.io`, and pull from the repository to your local folder. Specifically, pull from the 'deforested' branch, the branch used by GitHub Pages to host the site. ``` -git pull origin master +git pull origin deforested ``` -At this point, the site is able to be edited and run locally. Assuming steps 1 and 2 of the Jekyll documentation were followed correctly, run: - -``` -bundle exec jekyll serve --watch -``` +At this point, the site is able to be edited and run locally. Use the VSCode "Live Server" extension to view the static website in your browser and track changes automatically. -The built site can then be viewed at 'localhost:4000'. The `--watch` option automatically checks for updates to the local files and can be immediately viewed by refreshing the page. `--watch` is not supported by Windows, thus the command above will need to be rerun after each edit. +## Creating your lab member page -### Important! +Create a new folder following the **firstname_lastname** convention under the appropriate subfolder (undergraduate, masters, etc.) in **lab_members**. Copy the template file from **TEMPLATES/lab_member_template** into your newly created folder (do not rename the file). Follow the TODO comments and fill in the desired information. -- For macOS users, it may be necessary to uncomment the lines under ```macOs-specific dependencies``` in the Gemfile and comment those under ```Windows-specific dependencies```. -- For Windows users, comment everything under ```macOs-specific dependencies``` and uncomment the lines under ```Windows-specific dependencies```. +When adding an image for a lab member page, place it in the **assets/lab_members** directory. Reference the exact filename in the profile photo's `src` attribute in your **index.html** file. -After making changes to the 'Gemfile' at the root directory of the repository, run: +You will also need to add a link to your new page in **lab_members/index.html**. Copy and paste a `
  • ` item from the appropriate subsection in the appropriate alphabetical position. Make sure to update your name in the content and the path to your page. Add a thumnbail to the **assets/lab_members/thumbnail** folder and link it in the image `src`, or use the placeholder image. It should resemble this format (undergraduate used as an example here): ``` -bundle install +
  • First Last
  • ``` -to install any updated or newly-added gems for the build. The site can then be rebuilt with `bundle exec jekyll serve --watch`. - -### Troubleshooting for macOS - -- If you are using Homebrew for package management, make sure to run ```brew doctor``` to check if there are any warnings that need to be addressed. - -- General compilation issues may occur due to incompatible versions of Ruby. One recommendation would be to use Homebrew to get `ruby-install` and `chruby` for compilation, installation, and switching between different Ruby versions. After installing, the following configurations in the ~/.zshrc file are necessary for correct functionality: - - - ```source /opt/homebrew/opt/chruby/share/chruby/chruby.sh```, to make the chruby program available in the shell. - - ```source /opt/homebrew/opt/chruby/share/chruby/auto.sh```, to enable auto-switching of Rubies specified by .ruby-version files. - - ```chruby ruby-x.y.z```, sets the desired Ruby version (note that you may need to install it first via ```ruby-install ruby x.y.z```). Where x.y.z is to be replaced with the version number. When switching between Ruby versions, this is the line that needs to be updated. Check for correct setup with ```ruby -v```, it should print out a line that starts with *ruby x.y.z*. -- using Ruby version 3.0.0 may cause additional failures when executing ```bundle exec jekyll serve```, a possible fix could be to uncomment the `gem` command under `# macOS dependency for Ruby version 3.0.0 or higher` in the Gemfile. If that does not work, then it is possible that a newer version is needed, so you may have to execute ```bundle add webrick```. Note that running the `bundle add webrick` command will update the Gemfile with a specific webrick version. The command performs `bundle install` automatically so it is not needed to execute it again. -- a Ruby version higher than 2.6 is needed to execute any `gem` or `bundle` commands. -- if you installed the newest version of Ruby, downgrading to an older version may be necessary for some dependencies to work. - -## Creating your lab member page - -Inside the **_lab_members** folder, there are five different folders that contain markdown files for your respective page on the website as a lab member. Choose the folder related to your affiliation, and copy an existing user file to add your own details to. Vanilla templates for each of the five lab member categories are also available in the **TEMPLATES** folder at the root directory. Copy, paste, and rename in the correct subfolder within **_lab_members**. - -When adding an image for a lab member page, place it in the **assets/lab_members** directory. Reference the exact filename for the *photo* variable in the respective lab member's markdown file. - -### Variables - -Here is the updated list of variables to edit for each lab member's markdown page. If a list is shown in brackets ([]), the possible variable values can **only** be one of the entries. Variables in italics are optional. These are also case-sensitive for the time being! - -* layout: **DON'T EDIT** -* category: [Principal, Manager, Postdoc, PhD, Masters, Undergraduate, Alumni] -* title: your name -* degree: what degree you are pursuing (ex: BSc in Computer Science, MA in Music Technology, PhD in Music Technology -* photo: the exact file name (with extension) in the **assets/lab_member** directory -* *cv*: the exact file name of CV (with extension) stored locally in **assets/lab_member/cv** -* *social*: - * *github_username*: [USERNAME] from https://github.com/[USERNAME] - * *linkedin_username*: [USERNAME] from https://www.linkedin.com/in/[USERNAME]/ - * *instagram_username*: [USERNAME] from https://www.instagram.com/[USERNAME]/ - * *bandcamp_username*: [USERNAME] from https://[USERNAME].bandcamp.com/releases - * *soundcloud_username*: [USERNAME] from https://soundcloud.com/[USERNAME] - * *twitter_username*: [USERNAME] from https://www.twitter.com/[USERNAME] - * *personal_webpage*: entire url of personal website -* *current_focus*: Your main area of focus in research or work related to the lab. (Ex: Generative Adversarial Networks (GANs)) -* *research_interests*: any number of hyphenated entries for research areas of interest (check template or an existing user page) -* *academic_record*: any number of hyphenated entries for previously pursued degrees and respective universities -* *publications*: - -**Write your biography below the second '---' on the markdown page.** - -## CMS - -
    - -![](readme-img/site-to-forestry.png) - -
    - -The content management system (CMS) used for this site is [Forestry](https://forestry.io/). This is where blog entries and website contents are added, edited, and maintained. - -Blog entries and website content are written in Markdown, which makes it easy to add text, links, images, and lists to a new post. Here is a [Markdown Cheat Sheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) to consult for any necessary formatting. - -In the picture above, you can see how each of the links for navigation on the DDMAL website correspond to an editable tab on the sidebar of the CMS. The next section will explain in further detail how each component is edited and what output should be expected. - -If the blog post will feature images and files, upload them to the 'Media' library which can be accessed on the sidebar. To add them in the WYSIWYG post editor, hit `ctrl+shift+u`. This will open the media library where each image or file can be selected and added inline to the post. The images will be center-justified when posted to the blog. - -### CMS Navigation - -Any content that needs to be added or adjusted on the DDMAL site can mostly be done in the Forestry CMS. When selecting any of the tabs on the sidebar, you will either be taken to a Markdown file or folder. When editing or adding a new Markdown file, the default editing style is a What-You-See-Is-What-You-Get (WYSIWIG [wiss-e-wig]) editor. Formatting for each paragraph, header, link, etc. will automatically take place, and explicit Markdown syntax will automatically be reflected in the editor. If it is preferred, click on the ellipsis in the upper right hand corner to change to edit in 'Raw' mode, where the Markdown is explicitly written. Markdown files can also be injected with HTML if the default styling is not satisfactory. - -
    - -![](readme-img/wysiwyg-vs-raw.png) - -
    - - -Every Markdown file has a number of fields in the leftmost column to edit which are referred to as Front Matter. This information is used for automatically placing content where the CMS suggests it should be added. Each tab on the sidebar is restricted to a subset of Front Matter templates respectively that require the content manager to add titles, descriptors, and other information for organizing the new content properly. - -
    - -![](readme-img/alumni-example.png) - -
    - -In the example above, selecting the group "alumni" from the dropdown for __Role__ will automatically place the individual in that respective group on the website. Other details such as "link" and "affiliation" are not required, but they can be used to link to others' work and provide more context. - -Some tabs such as "People" only include editable front matter as their respective Markdown files contain little information other than names, affiliations, and links to external websites. There is no need for a body of content for those files. Otherwise, tabs like "Research" and "Blog" include front matter and Markdown editing for correctly filing and editing entire pages. - -### Organization - -For most of the tabs on the sidebar in Forestry, there is a corresponding Markdown file for each at the root of the respective tab's folder. For example, the **Software** tab features a file called **software.md** within it. This is the the landing page that a user will see when selecting "Software" from the navigation bar on the actual website. - -The folder architecture automatically appends to the URL based on the progression from the root URL through each child folder. The front matter for the **software.md** file at the root of the **Software** folder requires a "permalink" field since we would like to see that page at "DDMAL-new-site/software/" instead of "DDMAL-new-site/software/software/". The permalink should only need to be specified for landing pages found within the subfolder they are representing with the same name. Here's a quick example: - -* software [**folder**] - * software.md (permalink: /software/) ---| - * LibMEI.md <---------------------------| - * neon.md <-----------------------------| - -The **LibMEI.md** and **neon.md** files are linked to from **software.md**, and their URLs will immediately be correct without the need for a permalink since they are a subset of the software landing page inside the software folder. As folders are nested in an increasing website architecture, the same principle applies, and each parent folder will be one further step back in the entire URL. - - -### Media - -Blog posts, workshops, and individual pages often include images and downloads on the DDMAL website, and Forestry includes a "Media" area to upload these files. On the sidebar under "Site", select "Media" to view all of the existing media present in the website's repository. By selecting the "Upload" button in the top right corner, you can upload any files directly to the CMS/repository for later usage in various posts. - -When writing or editing a Markdown entry that will include an image or file, hit `ctrl+shift+u` to open the Media folder. Then, you can select any existing media and drop it right into the new post; Forestry handles the file path automatically, and it should not need to be altered. Images will be center-justified when posted to the website. ### Updating citations @@ -172,4 +60,4 @@ these scenarios but I didn't get to it -EH) ## Troubleshooting -If you are having any difficulties with setup, the CMS, or local development, please use the issues tab found in this repository. +If you are having any difficulties with setup or local development, please use the issues tab found in this repository. diff --git a/TEMPLATES/alumni_template.md b/TEMPLATES/alumni_template.md deleted file mode 100644 index 21f964ab..00000000 --- a/TEMPLATES/alumni_template.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Alumni # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Alumni template -photo: placeholder.png -# cv: -# social: -# github_username: -# linkedin_username: -# instagram_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/TEMPLATES/lab_member_template/index.html b/TEMPLATES/lab_member_template/index.html new file mode 100644 index 00000000..6805a49e --- /dev/null +++ b/TEMPLATES/lab_member_template/index.html @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + <!-- TODO: add your name here --> + Your Name · DDMAL + + + + + + + + + + + + + + + + +
    +
    +
    +
    + +

    Your Name

    + + + +
    + +
    +
    +

    + + [degree] in [subject] (McGill University) + +

    + +

    Current Focus

    + +
    +
    +
    + +

    Your bio goes here.

    +
    +
    + +
    +

    Research Interests

    +
      +
    • Research Interest 1
    • +
    • Research Interest 2
    • +
    +
    + +
    +

    Academic Record

    +
      +
    • [degree 1] in [subject 1], [school 1]
    • +
    • [degree 2] in [subject 2], [school 2]
    • +
    +
    +
    + +
    +

    Publications

    +
      +
    • https://doi.org/10.1145/2970044.2970047
    • +
    +
    +
    +
    +
    +
    +
    + + + + + + + + \ No newline at end of file diff --git a/TEMPLATES/manager_template.md b/TEMPLATES/manager_template.md deleted file mode 100644 index 72de5471..00000000 --- a/TEMPLATES/manager_template.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Manager # One of [Alumni, Masters, PhD, Postdoc, Principal, Manager, Undergraduate] -title: Project manager template -photo: placeholder.png -# cv: -# social: -# github_username: -# linkedin_username: -# instagram_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/TEMPLATES/masters_template.md b/TEMPLATES/masters_template.md deleted file mode 100644 index 5516af7a..00000000 --- a/TEMPLATES/masters_template.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Masters # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Alumni template -photo: placeholder.png -# cv: -# social: -# github_username: -# linkedin_username: -# instagram_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/TEMPLATES/phd_template.md b/TEMPLATES/phd_template.md deleted file mode 100644 index 5d57ee17..00000000 --- a/TEMPLATES/phd_template.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: PhD # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: PhD template -photo: placeholder.png -# cv: -# social: -# github_username: -# linkedin_username: -# instagram_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/TEMPLATES/pi_template.md b/TEMPLATES/pi_template.md deleted file mode 100644 index 4d0b4b72..00000000 --- a/TEMPLATES/pi_template.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Principal # One of [Alumni, Masters, PhD, Postdoc, Principal, Manager, Undergraduate] -title: PI template -photo: placeholder.png -# cv: -# social: -# github_username: -# linkedin_username: -# instagram_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/TEMPLATES/postdoc_template.md b/TEMPLATES/postdoc_template.md deleted file mode 100644 index f98776bb..00000000 --- a/TEMPLATES/postdoc_template.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Postdoc # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Postdoc template -photo: placeholder.png -# cv: -# social: -# github_username: -# linkedin_username: -# instagram_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/TEMPLATES/undergrad_template.md b/TEMPLATES/undergrad_template.md deleted file mode 100644 index 8a830bee..00000000 --- a/TEMPLATES/undergrad_template.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Undergraduate # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Undergraduate template -photo: placeholder.png -# cv: -# social: -# github_username: -# linkedin_username: -# instagram_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/_OMRbibliography/1966/Pruslin_Automatic_recognition_of_sheet_music_1966.md b/_OMRbibliography/1966/Pruslin_Automatic_recognition_of_sheet_music_1966.md deleted file mode 100644 index 61c58d0d..00000000 --- a/_OMRbibliography/1966/Pruslin_Automatic_recognition_of_sheet_music_1966.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1966 -year: 1966 ---- - -Pruslin, Dennis. 1966. “Automatic Recognition of Sheet Music.” Massachusetts Institute of Technology. \ No newline at end of file diff --git a/_OMRbibliography/1970/Kassler_An_essay_toward_specification_of_a_music-reading_machine_1970.md b/_OMRbibliography/1970/Kassler_An_essay_toward_specification_of_a_music-reading_machine_1970.md deleted file mode 100644 index 05af8427..00000000 --- a/_OMRbibliography/1970/Kassler_An_essay_toward_specification_of_a_music-reading_machine_1970.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1970 -year: 1970 ---- - -Kassler, Michael. 1970. “An Essay toward Specification of a Music-Reading Machine.” In Musicology and the Computer, edited by Barry Brook, 151–75. New York: City University of New York Press. \ No newline at end of file diff --git a/_OMRbibliography/1971/Prerau_Computer_pattern_recognition_of_printed_music_1971.md b/_OMRbibliography/1971/Prerau_Computer_pattern_recognition_of_printed_music_1971.md deleted file mode 100644 index e433ec6d..00000000 --- a/_OMRbibliography/1971/Prerau_Computer_pattern_recognition_of_printed_music_1971.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1971 -year: 1971 ---- - -Prerau, David. 1971. “Computer Pattern Recognition of Printed Music.” AFIP Joint Computer Conferences 39:153–62. \ No newline at end of file diff --git a/_OMRbibliography/1972/Kassler_Optical_character_recognition_of_printed_music_A_review_of_two_dissertations_1972.md b/_OMRbibliography/1972/Kassler_Optical_character_recognition_of_printed_music_A_review_of_two_dissertations_1972.md deleted file mode 100644 index c4f07455..00000000 --- a/_OMRbibliography/1972/Kassler_Optical_character_recognition_of_printed_music_A_review_of_two_dissertations_1972.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1972 -year: 1972 ---- - -Kassler, Michael. 1972. “Optical Character Recognition of Printed Music: A Review of Two Dissertations.” Perspectives of New Music 11:250–54. \ No newline at end of file diff --git a/_OMRbibliography/1973/Nelson_Pattern_recognition_in_musical_score_-_project_no._M88_1973.md b/_OMRbibliography/1973/Nelson_Pattern_recognition_in_musical_score_-_project_no._M88_1973.md deleted file mode 100644 index cd107480..00000000 --- a/_OMRbibliography/1973/Nelson_Pattern_recognition_in_musical_score_-_project_no._M88_1973.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1973 -year: 1973 ---- - -Nelson, Gary, and Terry R. Penney. 1973. “Pattern Recognition in Musical Score - Project No. M88.” In Computers and the Humanities, 8:50–51. \ No newline at end of file diff --git a/_OMRbibliography/1973/Wittlich_Project_Score_1973.md b/_OMRbibliography/1973/Wittlich_Project_Score_1973.md deleted file mode 100644 index 8611d1dc..00000000 --- a/_OMRbibliography/1973/Wittlich_Project_Score_1973.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1973 -year: 1973 ---- - -Wittlich, Gary. 1973. “Project Score.” Computational Musicology Newsletter 1 (1):6. \ No newline at end of file diff --git a/_OMRbibliography/1974/Wittlich_Non-physics_measurements_on_the_PEPR_system:_Seismograms_and_music_scores_1974.md b/_OMRbibliography/1974/Wittlich_Non-physics_measurements_on_the_PEPR_system:_Seismograms_and_music_scores_1974.md deleted file mode 100644 index f1ffc077..00000000 --- a/_OMRbibliography/1974/Wittlich_Non-physics_measurements_on_the_PEPR_system:_Seismograms_and_music_scores_1974.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1974 -year: 1974 ---- - -Wittlich, Gary E. 1974. Non-physics measurements on the PEPR system: Seismograms and music scores. \ No newline at end of file diff --git a/_OMRbibliography/1975/Prerau_Do-re-mi:_A_program_that_recognizes_music_notation_1975.md b/_OMRbibliography/1975/Prerau_Do-re-mi:_A_program_that_recognizes_music_notation_1975.md deleted file mode 100644 index 9fa50793..00000000 --- a/_OMRbibliography/1975/Prerau_Do-re-mi:_A_program_that_recognizes_music_notation_1975.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1975 -year: 1975 ---- - -Prerau, David Stewart. 1975. “Do-Re-Mi: A Program That Recognizes Music Notation.” Computer and the Humanities 9 (1):25–29. \ No newline at end of file diff --git a/_OMRbibliography/1978/Fischer_Computer_recognition_of_engraved_music_1978.md b/_OMRbibliography/1978/Fischer_Computer_recognition_of_engraved_music_1978.md deleted file mode 100644 index 0427edfb..00000000 --- a/_OMRbibliography/1978/Fischer_Computer_recognition_of_engraved_music_1978.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1978 -year: 1978 ---- - -Fischer, K.N. 1978. Computer Recognition of Engraved Music. University of Tennessee. \ No newline at end of file diff --git a/_OMRbibliography/1978/Nakamura_Input_method_of_[musical]_note_and_realization_of_folk_music_data-base_(in_Japanese)_1978.md b/_OMRbibliography/1978/Nakamura_Input_method_of_[musical]_note_and_realization_of_folk_music_data-base_(in_Japanese)_1978.md deleted file mode 100644 index 766d9fa6..00000000 --- a/_OMRbibliography/1978/Nakamura_Input_method_of_[musical]_note_and_realization_of_folk_music_data-base_(in_Japanese)_1978.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1978 -year: 1978 ---- - -Nakamura, Y., M. Shindo, and Seiji Inokuchi. 1978. “Input Method of [Musical] Note and Realization of Folk Music Data-Base (in Japanese).” In Institute of Electronics and Communications Engineers of Japan (IECE), 78:41–50. 73. \ No newline at end of file diff --git a/_OMRbibliography/1978/Wittlich_A_system_for_interactive_encoding_of_music_scores_under_computer_control_1978.md b/_OMRbibliography/1978/Wittlich_A_system_for_interactive_encoding_of_music_scores_under_computer_control_1978.md deleted file mode 100644 index 8e97180f..00000000 --- a/_OMRbibliography/1978/Wittlich_A_system_for_interactive_encoding_of_music_scores_under_computer_control_1978.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1978 -year: 1978 ---- - -Wittlich, Gary, Donald Byrd, and Rosalee Nerheim. 1978. “A system for interactive encoding of music scores under computer control.” Computers and the Humanities 12 (4):309–19. \ No newline at end of file diff --git a/_OMRbibliography/1979/Onoe_Experiment_on_automatic_music_reading_(in_Japanese)_1979.md b/_OMRbibliography/1979/Onoe_Experiment_on_automatic_music_reading_(in_Japanese)_1979.md deleted file mode 100644 index 3d76cff6..00000000 --- a/_OMRbibliography/1979/Onoe_Experiment_on_automatic_music_reading_(in_Japanese)_1979.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1979 -year: 1979 ---- - -Onoe Morio, Ishizuka Mitsuru, and Tsuboi Kuniaki. 1979. “Experiment on automatic music reading (in Japanese).” In Proceedings of the 20th IPSJ National Conference, 6–65. \ No newline at end of file diff --git a/_OMRbibliography/1982/Andronico_On_automatic_pattern_recognition_and_acquisition_of_printed_music_1982.md b/_OMRbibliography/1982/Andronico_On_automatic_pattern_recognition_and_acquisition_of_printed_music_1982.md deleted file mode 100644 index 38411203..00000000 --- a/_OMRbibliography/1982/Andronico_On_automatic_pattern_recognition_and_acquisition_of_printed_music_1982.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1982 -year: 1982 ---- - -Andronico, Alfio, and Alberto Ciampa. 1982. “On Automatic Pattern Recognition and Acquisition of Printed Music.” In Proceedings of the International Computer Music Conference, 245–78. \ No newline at end of file diff --git a/_OMRbibliography/1982/Aoyama_Automatic_recognition_of_music_score_(in_Japanese)_1982.md b/_OMRbibliography/1982/Aoyama_Automatic_recognition_of_music_score_(in_Japanese)_1982.md deleted file mode 100644 index 5f6811f0..00000000 --- a/_OMRbibliography/1982/Aoyama_Automatic_recognition_of_music_score_(in_Japanese)_1982.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1982 -year: 1982 ---- - -Aoyama, Hiroshi, and A. Tojo. 1982a. “Automatic Recognition of Music Score (in Japanese).” In Electronic Image Conference Journal, 11:427–35. 5. \ No newline at end of file diff --git a/_OMRbibliography/1982/Aoyama_Automatic_recognition_of_printed_music_(in_Japanese)_1982.md b/_OMRbibliography/1982/Aoyama_Automatic_recognition_of_printed_music_(in_Japanese)_1982.md deleted file mode 100644 index c9871c4a..00000000 --- a/_OMRbibliography/1982/Aoyama_Automatic_recognition_of_printed_music_(in_Japanese)_1982.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1982 -year: 1982 ---- - -Aoyama, Hiroshi, and A. Tojo. 1982b. “Automatic Recognition of Printed Music (in Japanese).” In Institute of Electronics and Communications Engineers of Japan (IECE), 33–40. \ No newline at end of file diff --git a/_OMRbibliography/1982/Mahoney_Automatic_analysis_of_musical_score_images_1982.md b/_OMRbibliography/1982/Mahoney_Automatic_analysis_of_musical_score_images_1982.md deleted file mode 100644 index 4caedb0e..00000000 --- a/_OMRbibliography/1982/Mahoney_Automatic_analysis_of_musical_score_images_1982.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1982 -year: 1982 ---- - -Mahoney, James Victor. 1982. Automatic Analysis of Musical Score Images. Massachusetts Institute of Technology. \ No newline at end of file diff --git a/_OMRbibliography/1982/Tojo_Automatic_recognition_of_music_score_1982.md b/_OMRbibliography/1982/Tojo_Automatic_recognition_of_music_score_1982.md deleted file mode 100644 index fd5e4856..00000000 --- a/_OMRbibliography/1982/Tojo_Automatic_recognition_of_music_score_1982.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1982 -year: 1982 ---- - -Tojo, A., and Hiroshi Aoyama. 1982. “Automatic Recognition of Music Score.” In Sixth International Conference on Pattern Recognition. Vol. 1223. \ No newline at end of file diff --git a/_OMRbibliography/1983/Maenaka_Recognition_of_music_using_the_special_image-input-device_enabling_to_scan_the_staff_of_music_as_the_supporting_system_for_the_blind_(in_Japanese)_1983.md b/_OMRbibliography/1983/Maenaka_Recognition_of_music_using_the_special_image-input-device_enabling_to_scan_the_staff_of_music_as_the_supporting_system_for_the_blind_(in_Japanese)_1983.md deleted file mode 100644 index 443538dd..00000000 --- a/_OMRbibliography/1983/Maenaka_Recognition_of_music_using_the_special_image-input-device_enabling_to_scan_the_staff_of_music_as_the_supporting_system_for_the_blind_(in_Japanese)_1983.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1983 -year: 1983 ---- - -Maenaka, Karl, and Tadokoro Yoshiaki. 1983. “Recognition of Music Using the Special Image-Input-Device Enabling to Scan the Staff of Music as the Supporting System for the Blind (in Japanese).” Prl83-60, 37–45. \ No newline at end of file diff --git a/_OMRbibliography/1984/Ohteru_A_multi_processor_system_for_high_speed_recognition_of_printed_music_(in_Japanese)_1984.md b/_OMRbibliography/1984/Ohteru_A_multi_processor_system_for_high_speed_recognition_of_printed_music_(in_Japanese)_1984.md deleted file mode 100644 index 8c158220..00000000 --- a/_OMRbibliography/1984/Ohteru_A_multi_processor_system_for_high_speed_recognition_of_printed_music_(in_Japanese)_1984.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1984 -year: 1984 ---- - -Ohteru Sadamu. 1984. “A multi processor system for high speed recognition of printed music (in Japanese).” In National Convention Records of IECE. \ No newline at end of file diff --git a/_OMRbibliography/1985/Fujimoto_The_keyboard_playing_robot_WABOT-2_1985.md b/_OMRbibliography/1985/Fujimoto_The_keyboard_playing_robot_WABOT-2_1985.md deleted file mode 100644 index 745a5576..00000000 --- a/_OMRbibliography/1985/Fujimoto_The_keyboard_playing_robot_WABOT-2_1985.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1985 -year: 1985 ---- - -Fujimoto, Yoichi. 1985. “The Keyboard Playing Robot WABOT-2.” Bulletin of Science and Engineering Research Laboratory 112. \ No newline at end of file diff --git a/_OMRbibliography/1985/Lee_The_recognition_of_printed_music_score_and_performance_using_computer_vision_system_(in_Korean_and_English_translation)_1985.md b/_OMRbibliography/1985/Lee_The_recognition_of_printed_music_score_and_performance_using_computer_vision_system_(in_Korean_and_English_translation)_1985.md deleted file mode 100644 index 49086123..00000000 --- a/_OMRbibliography/1985/Lee_The_recognition_of_printed_music_score_and_performance_using_computer_vision_system_(in_Korean_and_English_translation)_1985.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1985 -year: 1985 ---- - -Lee, Myung Woo, and Jong Soo Choi. 1985. “The Recognition of Printed Music Score and Performance Using Computer Vision System (in Korean and English Translation).” Journal of the Korean Institute of Electronic Engineers 22 (5):429–35. \ No newline at end of file diff --git a/_OMRbibliography/1985/Matsushima_Automated_high_speed_recognition_of_printed_music_(WABOT-2_vision_system)_1985.md b/_OMRbibliography/1985/Matsushima_Automated_high_speed_recognition_of_printed_music_(WABOT-2_vision_system)_1985.md deleted file mode 100644 index d4b9fce5..00000000 --- a/_OMRbibliography/1985/Matsushima_Automated_high_speed_recognition_of_printed_music_(WABOT-2_vision_system)_1985.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1985 -year: 1985 ---- - -Matsushima, Toshiaki, Itaru Sonomoto, Tadanori Harada, Katsuhiro Kanamori, and Sadamu Ohteru. 1985. “Automated High Speed Recognition of Printed Music (WABOT-2 Vision System).” In Proceedings of the 1985 International Conference on Advanced Robotics, 477–82. \ No newline at end of file diff --git a/_OMRbibliography/1985/Matsushima_Automated_recognition_system_for_musical_score:_The_vision_system_of_WABOT-2_1985.md b/_OMRbibliography/1985/Matsushima_Automated_recognition_system_for_musical_score:_The_vision_system_of_WABOT-2_1985.md deleted file mode 100644 index df2e83a0..00000000 --- a/_OMRbibliography/1985/Matsushima_Automated_recognition_system_for_musical_score:_The_vision_system_of_WABOT-2_1985.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1985 -year: 1985 ---- - -Matsushima, Toshiaki, Tadanori Harada, Itaru Sonomoto, Katsuhiro Kanamori, Akio Uesugi, Yuji Nimura, Shuji Hashimoto, and Sadamu Ohteru. 1985. “Automated Recognition System for Musical Score: The Vision System of WABOT-2.” Bulletin of Science and Engineering Research Laboratory 112:25–52. \ No newline at end of file diff --git a/_OMRbibliography/1985/Matsushima_Automatic_recognition_of_printed_music_(in_Japanese)_1985.md b/_OMRbibliography/1985/Matsushima_Automatic_recognition_of_printed_music_(in_Japanese)_1985.md deleted file mode 100644 index 628b376b..00000000 --- a/_OMRbibliography/1985/Matsushima_Automatic_recognition_of_printed_music_(in_Japanese)_1985.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1985 -year: 1985 ---- - -Matsushima, Toshiaki, Sadamu Ohteru, and Katsuhiro Kanamori. 1985. “Automatic Recognition of Printed Music (in Japanese).” Japan Acoustics Society Journal 41 (6):412–15. \ No newline at end of file diff --git a/_OMRbibliography/1985/Sonomoto_Automated_recognition_system_of_printed_music_for_playing_keyboards_(in_Japanese)_1985.md b/_OMRbibliography/1985/Sonomoto_Automated_recognition_system_of_printed_music_for_playing_keyboards_(in_Japanese)_1985.md deleted file mode 100644 index b567b7c0..00000000 --- a/_OMRbibliography/1985/Sonomoto_Automated_recognition_system_of_printed_music_for_playing_keyboards_(in_Japanese)_1985.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1985 -year: 1985 ---- - -Sonomoto, Itaru, Tadanori Harada, Toshiaki Matsushima, Katsuhiro Kanamori, M. Konuma, Akio Uesugi, Yuji Nimura, Shuji Hashimoto, and Sadamu Ohteru. 1985. “Automated Recognition System of Printed Music for Playing Keyboards (in Japanese).” Acoustical Society of Japan 84 (22):17–22. \ No newline at end of file diff --git a/_OMRbibliography/1986/Roads_The_Tsukuba_musical_robot_1986.md b/_OMRbibliography/1986/Roads_The_Tsukuba_musical_robot_1986.md deleted file mode 100644 index 28a6bf18..00000000 --- a/_OMRbibliography/1986/Roads_The_Tsukuba_musical_robot_1986.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1986 -year: 1986 ---- - -Roads, Curtis. 1986. “The Tsukuba Musical Robot.” Computer Music Journal 10 (2):39–43. \ No newline at end of file diff --git a/_OMRbibliography/1986/Tonnesland_Symfoni:_System_for_note_coding_(in_Norwegian)_1986.md b/_OMRbibliography/1986/Tonnesland_Symfoni:_System_for_note_coding_(in_Norwegian)_1986.md deleted file mode 100644 index 7cbf89f3..00000000 --- a/_OMRbibliography/1986/Tonnesland_Symfoni:_System_for_note_coding_(in_Norwegian)_1986.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1986 -year: 1986 ---- - -Tonnesland, S. 1986. Symfoni: System for note coding (in Norwegian). Institute of Informatics, Oslo, Norway. \ No newline at end of file diff --git a/_OMRbibliography/1987/Hachimura_A_system_for_the_representation_of_human_body_movements_from_dance_scores_1987.md b/_OMRbibliography/1987/Hachimura_A_system_for_the_representation_of_human_body_movements_from_dance_scores_1987.md deleted file mode 100644 index 2d7c50e8..00000000 --- a/_OMRbibliography/1987/Hachimura_A_system_for_the_representation_of_human_body_movements_from_dance_scores_1987.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1987 -year: 1987 ---- - -Hachimura, Kozaburo, and Yutaka Ohno. 1987. “A system for the representation of human body movements from dance scores.” Pattern Recognition Letters 5:1–9. \ No newline at end of file diff --git a/_OMRbibliography/1987/Kim_Recognition_system_for_a_printed_music_score_1987.md b/_OMRbibliography/1987/Kim_Recognition_system_for_a_printed_music_score_1987.md deleted file mode 100644 index 54a28b9c..00000000 --- a/_OMRbibliography/1987/Kim_Recognition_system_for_a_printed_music_score_1987.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1987 -year: 1987 ---- - -Kim, Woong-Tae J., Myung Jin Chung, and Zeungnam Bien. 1987. “Recognition System for a Printed Music Score.” In Proceedings of TENCON 87: 1987 IEEE Region 10 Conference ’Computers and Communications Technology Toward, 2000:573–77. \ No newline at end of file diff --git a/_OMRbibliography/1987/Martin_Towards_computer_recognition_of_the_printed_musical_score_1987.md b/_OMRbibliography/1987/Martin_Towards_computer_recognition_of_the_printed_musical_score_1987.md deleted file mode 100644 index 03516fbb..00000000 --- a/_OMRbibliography/1987/Martin_Towards_computer_recognition_of_the_printed_musical_score_1987.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1987 -year: 1987 ---- - -Martin, Neil G. 1987. Towards Computer Recognition of the Printed Musical Score. Thames Polytechnic. \ No newline at end of file diff --git a/_OMRbibliography/1987/Ohteru_Automatic_recognition_of_music_score_(in_Japanese)_1987.md b/_OMRbibliography/1987/Ohteru_Automatic_recognition_of_music_score_(in_Japanese)_1987.md deleted file mode 100644 index ed22687f..00000000 --- a/_OMRbibliography/1987/Ohteru_Automatic_recognition_of_music_score_(in_Japanese)_1987.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1987 -year: 1987 ---- - -Ohteru Sadamu. 1987. “Automatic recognition of music score (in Japanese).” Bit (special issue on Computer and Music), 92–100. \ No newline at end of file diff --git a/_OMRbibliography/1988/Alphonce_Optical_music_recognition:_A_progress_report_1988.md b/_OMRbibliography/1988/Alphonce_Optical_music_recognition:_A_progress_report_1988.md deleted file mode 100644 index b771dfda..00000000 --- a/_OMRbibliography/1988/Alphonce_Optical_music_recognition:_A_progress_report_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Alphonce, Bo, Bruce Pennycook, Ichiro Fujinaga, and Nathalie Boisvert. 1988. “Optical Music Recognition: A Progress Report.” In Proceedings of the Small Computers in the Arts, 8–12. \ No newline at end of file diff --git a/_OMRbibliography/1988/Bacon_Recognising_music_automatically_1988.md b/_OMRbibliography/1988/Bacon_Recognising_music_automatically_1988.md deleted file mode 100644 index 34604c25..00000000 --- a/_OMRbibliography/1988/Bacon_Recognising_music_automatically_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Bacon, Richard A., and Nicholas P. Carter. 1988. “Recognising Music Automatically.” Physics Bulletin 39:265. \ No newline at end of file diff --git a/_OMRbibliography/1988/Carter_The_acquisition,_representation_and_reconstruction_of_printed_music_by_computer:_A_review_1988.md b/_OMRbibliography/1988/Carter_The_acquisition,_representation_and_reconstruction_of_printed_music_by_computer:_A_review_1988.md deleted file mode 100644 index d33b5482..00000000 --- a/_OMRbibliography/1988/Carter_The_acquisition,_representation_and_reconstruction_of_printed_music_by_computer:_A_review_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Carter, Nicholas, Richard Bacon, and Thomas Messenger. 1988. “The Acquisition, Representation and Reconstruction of Printed Music by Computer: A Review.” Computers and the Humanities 22 (2):117–36. \ No newline at end of file diff --git a/_OMRbibliography/1988/Clarke_Inexpensive_optical_character_recognition_of_music_notation:_A_new_alternative_for_publishers_1988.md b/_OMRbibliography/1988/Clarke_Inexpensive_optical_character_recognition_of_music_notation:_A_new_alternative_for_publishers_1988.md deleted file mode 100644 index 475321f6..00000000 --- a/_OMRbibliography/1988/Clarke_Inexpensive_optical_character_recognition_of_music_notation:_A_new_alternative_for_publishers_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Clarke, Alastair T., B.Malcolm Brown, and Michael P. Thorne. 1988a. “Inexpensive Optical Character Recognition of Music Notation: A New Alternative for Publishers.” In Proceedings of the Computers in Music Research Conference, 84–87. \ No newline at end of file diff --git a/_OMRbibliography/1988/Clarke_Using_a_micro_to_automate_data_acquisition_in_music_publishing_1988.md b/_OMRbibliography/1988/Clarke_Using_a_micro_to_automate_data_acquisition_in_music_publishing_1988.md deleted file mode 100644 index 358a9225..00000000 --- a/_OMRbibliography/1988/Clarke_Using_a_micro_to_automate_data_acquisition_in_music_publishing_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Clarke, Alastair T., B.Malcolm Brown, and Michael P. Thorne. 1988b. “Using a micro to automate data acquisition in music publishing.” Microprocessing and Microprogramming 24:549–54. \ No newline at end of file diff --git a/_OMRbibliography/1988/Fletcher_A_robust_algorithm_for_text_string_separation_from_mixed_text_graphics_images_1988.md b/_OMRbibliography/1988/Fletcher_A_robust_algorithm_for_text_string_separation_from_mixed_text_graphics_images_1988.md deleted file mode 100644 index 4220e674..00000000 --- a/_OMRbibliography/1988/Fletcher_A_robust_algorithm_for_text_string_separation_from_mixed_text_graphics_images_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Fletcher, Lloyd Alan, and Rangachar Kasturi. 1988. “A Robust Algorithm for Text String Separation from Mixed Text/Graphics Images.” IEEE Transactions on Pattern Analysis and Machine Intelligence 10 (6):910–18. \ No newline at end of file diff --git a/_OMRbibliography/1988/Fluhr_Music_pattern_recognition_1988.md b/_OMRbibliography/1988/Fluhr_Music_pattern_recognition_1988.md deleted file mode 100644 index cc011d00..00000000 --- a/_OMRbibliography/1988/Fluhr_Music_pattern_recognition_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Fluhr, Christian, and J. Abouassly. 1988. “Music Pattern Recognition.” In Proceedings of the EEC Concerted Action on Technology and Blindness. at Toulouse, France. \ No newline at end of file diff --git a/_OMRbibliography/1988/Fujinaga_Optical_music_recognition_using_projections_1988.md b/_OMRbibliography/1988/Fujinaga_Optical_music_recognition_using_projections_1988.md deleted file mode 100644 index 6dc28d38..00000000 --- a/_OMRbibliography/1988/Fujinaga_Optical_music_recognition_using_projections_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Fujinaga, Ichiro. 1988. Optical Music Recognition Using Projections. McGill University. \ No newline at end of file diff --git a/_OMRbibliography/1988/Kato_Automatic_recognition_of_printed_piano_music_based_on_bar_unit_processing_(in_Japanese)_1988.md b/_OMRbibliography/1988/Kato_Automatic_recognition_of_printed_piano_music_based_on_bar_unit_processing_(in_Japanese)_1988.md deleted file mode 100644 index ba6cd1d9..00000000 --- a/_OMRbibliography/1988/Kato_Automatic_recognition_of_printed_piano_music_based_on_bar_unit_processing_(in_Japanese)_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Kato, Hirokazu, and Seiji Inokuchi. 1988. “Automatic Recognition of Printed Piano Music Based on Bar Unit Processing (in Japanese).” Transactions of I. E. C. E 71 (5):894–901. \ No newline at end of file diff --git a/_OMRbibliography/1988/Matsushima_Automatic_Printed-Music-to-Braille_Translation_System_1988.md b/_OMRbibliography/1988/Matsushima_Automatic_Printed-Music-to-Braille_Translation_System_1988.md deleted file mode 100644 index cc7bdca7..00000000 --- a/_OMRbibliography/1988/Matsushima_Automatic_Printed-Music-to-Braille_Translation_System_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Matsushima, Toshiaki. 1988. “Automatic Printed-Music-to-Braille Translation System.” Journal of Information Processing 11 (4):249–57. \ No newline at end of file diff --git a/_OMRbibliography/1988/Ohteru_Data_entry_and_automatic_recognition_of_music_score_(in_Japanese)_1988.md b/_OMRbibliography/1988/Ohteru_Data_entry_and_automatic_recognition_of_music_score_(in_Japanese)_1988.md deleted file mode 100644 index c09bc52d..00000000 --- a/_OMRbibliography/1988/Ohteru_Data_entry_and_automatic_recognition_of_music_score_(in_Japanese)_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Ohteru Sadamu. 1988. “Data entry and automatic recognition of music score (in Japanese).” Journal of the Information Processing Society of Japan 29 (6):586–92. \ No newline at end of file diff --git a/_OMRbibliography/1988/Ostenstad_Oppdeling_av_abjektene_I_et_digitalt_notebilde_I_klassifiserbare_enheter_(in_Norwegian)_1988.md b/_OMRbibliography/1988/Ostenstad_Oppdeling_av_abjektene_I_et_digitalt_notebilde_I_klassifiserbare_enheter_(in_Norwegian)_1988.md deleted file mode 100644 index 7cfeeceb..00000000 --- a/_OMRbibliography/1988/Ostenstad_Oppdeling_av_abjektene_I_et_digitalt_notebilde_I_klassifiserbare_enheter_(in_Norwegian)_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Ostenstad, Berge. 1988. Oppdeling av abjektene I et digitalt notebilde I klassifiserbare enheter (in Norwegian). Institute of Informatics, Oslo, Norway. \ No newline at end of file diff --git a/_OMRbibliography/1988/Roach_Using_domain_knowledge_in_low-level_visual_processing_to_interpret_handwritten_music:_An_experiment_1988.md b/_OMRbibliography/1988/Roach_Using_domain_knowledge_in_low-level_visual_processing_to_interpret_handwritten_music:_An_experiment_1988.md deleted file mode 100644 index b4b0fafd..00000000 --- a/_OMRbibliography/1988/Roach_Using_domain_knowledge_in_low-level_visual_processing_to_interpret_handwritten_music:_An_experiment_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Roach, John W., and James E. Tatem. 1988. “Using Domain Knowledge in Low-Level Visual Processing to Interpret Handwritten Music: An Experiment.” Pattern Recognition 21 (1):33–44. \ No newline at end of file diff --git a/_OMRbibliography/1988/Thorud_Analyse_av_notebilder_(in_Norwegian)_1988.md b/_OMRbibliography/1988/Thorud_Analyse_av_notebilder_(in_Norwegian)_1988.md deleted file mode 100644 index 85294a12..00000000 --- a/_OMRbibliography/1988/Thorud_Analyse_av_notebilder_(in_Norwegian)_1988.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1988 -year: 1988 ---- - -Thorud, Elise. 1988. Analyse Av Notebilder (in Norwegian). Institute of Informatics, Oslo, Norway. \ No newline at end of file diff --git a/_OMRbibliography/1989/Clarke_Coping_with_some_really_rotten_problems_in_automatic_music_recognition_1989.md b/_OMRbibliography/1989/Clarke_Coping_with_some_really_rotten_problems_in_automatic_music_recognition_1989.md deleted file mode 100644 index d2b259e0..00000000 --- a/_OMRbibliography/1989/Clarke_Coping_with_some_really_rotten_problems_in_automatic_music_recognition_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Clarke, Alastair, Malcolm B. Brown, and Michael Thorne. 1989. “Coping with Some Really Rotten Problems in Automatic Music Recognition.” Microprocessing & Microprogramming 27 (1–5):547–50. \ No newline at end of file diff --git a/_OMRbibliography/1989/Fujinaga_Computer_recognition_of_musical_notation_1989.md b/_OMRbibliography/1989/Fujinaga_Computer_recognition_of_musical_notation_1989.md deleted file mode 100644 index 257da097..00000000 --- a/_OMRbibliography/1989/Fujinaga_Computer_recognition_of_musical_notation_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Fujinaga, Ichiro, Bruce Pennycook, and Bo Alphonce. 1989. “Computer Recognition of Musical Notation.” In Proceedings of the First International Conference on Music Perception and Cognition, 87–90. at Kyoto, Japan. \ No newline at end of file diff --git a/_OMRbibliography/1989/Fujinaga_Issues_in_the_design_of_an_optical_music_recognition_system_1989.md b/_OMRbibliography/1989/Fujinaga_Issues_in_the_design_of_an_optical_music_recognition_system_1989.md deleted file mode 100644 index c26d4ae2..00000000 --- a/_OMRbibliography/1989/Fujinaga_Issues_in_the_design_of_an_optical_music_recognition_system_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Fujinaga, Ichiro, Bo Alphonce, and Bruce Pennycook. 1989. “Issues in the Design of an Optical Music Recognition System.” In Proceedings of the International Computer Music Conference, 113–16. \ No newline at end of file diff --git a/_OMRbibliography/1989/Fujinaga_Optical_recognition_of_music_notation_by_computer_1989.md b/_OMRbibliography/1989/Fujinaga_Optical_recognition_of_music_notation_by_computer_1989.md deleted file mode 100644 index b3e23c42..00000000 --- a/_OMRbibliography/1989/Fujinaga_Optical_recognition_of_music_notation_by_computer_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Fujinaga, Ichiro, Bo Alphonce, Bruce Pennycook, and Nathalie Boisvert. 1989. “Optical Recognition of Music Notation by Computer.” In Computers in Music Research, 1:161–64. \ No newline at end of file diff --git a/_OMRbibliography/1989/Glass_Optical_music_recognition_1989.md b/_OMRbibliography/1989/Glass_Optical_music_recognition_1989.md deleted file mode 100644 index 8f256975..00000000 --- a/_OMRbibliography/1989/Glass_Optical_music_recognition_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Glass, S. 1989. Optical Music Recognition. University of Canterbury. \ No newline at end of file diff --git a/_OMRbibliography/1989/Katayose_An_approach_to_an_artificial_music_expert_1989.md b/_OMRbibliography/1989/Katayose_An_approach_to_an_artificial_music_expert_1989.md deleted file mode 100644 index e740967a..00000000 --- a/_OMRbibliography/1989/Katayose_An_approach_to_an_artificial_music_expert_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Katayose, Haruhiro, Hirokazu Kato, Masakazu Imai, and Seiji Inokuchi. 1989. “An Approach to an Artificial Music Expert.” In Proceedings of the International Computer Music Conference, 139–46. \ No newline at end of file diff --git a/_OMRbibliography/1989/Katayose_The_kansei_music_system_1989.md b/_OMRbibliography/1989/Katayose_The_kansei_music_system_1989.md deleted file mode 100644 index a8219054..00000000 --- a/_OMRbibliography/1989/Katayose_The_kansei_music_system_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Katayose, Haruhiro, and Seiji Inokuchi. 1989. “The kansei music system.” Computer Music Journal 13 (4):72–77. \ No newline at end of file diff --git "a/_OMRbibliography/1989/Martin_Reconnaissance_de_partitions_musicales_et_r\303\251seaux_de_neurones:_Une_\303\251tude_1989.md" "b/_OMRbibliography/1989/Martin_Reconnaissance_de_partitions_musicales_et_r\303\251seaux_de_neurones:_Une_\303\251tude_1989.md" deleted file mode 100644 index 01e004f1..00000000 --- "a/_OMRbibliography/1989/Martin_Reconnaissance_de_partitions_musicales_et_r\303\251seaux_de_neurones:_Une_\303\251tude_1989.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Martin, Philippe. 1989. “Reconnaissance de partitions musicales et réseaux de neurones: Une étude.” In Actes 7 ième Congrs AFCET de Reconnaissance des Formes et Intelligence Artificielle, 217–26. \ No newline at end of file diff --git a/_OMRbibliography/1989/Matsushima_An_integrated_music_information_processing_system_1989.md b/_OMRbibliography/1989/Matsushima_An_integrated_music_information_processing_system_1989.md deleted file mode 100644 index d3f2fc1a..00000000 --- a/_OMRbibliography/1989/Matsushima_An_integrated_music_information_processing_system_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Matsushima, Toshiaki, Sadamu Ohteru, and Shuji Hashimoto. 1989. “An Integrated Music Information Processing System.” In Proceedings of the International Computer Music Conference, 191–98. \ No newline at end of file diff --git a/_OMRbibliography/1989/McGee_Optical_recognition_of_music_using_page_straightening_1989.md b/_OMRbibliography/1989/McGee_Optical_recognition_of_music_using_page_straightening_1989.md deleted file mode 100644 index 7061b60d..00000000 --- a/_OMRbibliography/1989/McGee_Optical_recognition_of_music_using_page_straightening_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -McGee, William F., and P. Merkley. 1989. Optical Recognition of Music Using Page Straightening. \ No newline at end of file diff --git a/_OMRbibliography/1989/Nagy_Document_analysis_and_optical_character_recognition_1989.md b/_OMRbibliography/1989/Nagy_Document_analysis_and_optical_character_recognition_1989.md deleted file mode 100644 index 2e1b57de..00000000 --- a/_OMRbibliography/1989/Nagy_Document_analysis_and_optical_character_recognition_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Nagy, George. 1989. “Document Analysis and Optical Character Recognition.” In Fifth International Conference on Image Analysis and Processing, 511–29. \ No newline at end of file diff --git a/_OMRbibliography/1989/Yin_Principle_on_designing_the_music_reading_system_(in_Chinese)_1989.md b/_OMRbibliography/1989/Yin_Principle_on_designing_the_music_reading_system_(in_Chinese)_1989.md deleted file mode 100644 index 55f51ab6..00000000 --- a/_OMRbibliography/1989/Yin_Principle_on_designing_the_music_reading_system_(in_Chinese)_1989.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1989 -year: 1989 ---- - -Yin, F., G. Qingshi, and Z. Xiang. 1989. “Principle on designing the music reading system (in Chinese).” Mini-Micro Systems 10 (12):1–10. \ No newline at end of file diff --git a/_OMRbibliography/1990/Akiyama_Automated_entry_system_for_printed_documents_1990.md b/_OMRbibliography/1990/Akiyama_Automated_entry_system_for_printed_documents_1990.md deleted file mode 100644 index f85c2a7c..00000000 --- a/_OMRbibliography/1990/Akiyama_Automated_entry_system_for_printed_documents_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Akiyama, Teruo, and Norihiro Hagita. 1990. “Automated Entry System for Printed Documents.” Pattern Recognition 23 (11):1141–54. \ No newline at end of file diff --git a/_OMRbibliography/1990/Blostein_Template_matching_for_rhythmic_analysis_of_music_keyboard_input_1990.md b/_OMRbibliography/1990/Blostein_Template_matching_for_rhythmic_analysis_of_music_keyboard_input_1990.md deleted file mode 100644 index 940dafbc..00000000 --- a/_OMRbibliography/1990/Blostein_Template_matching_for_rhythmic_analysis_of_music_keyboard_input_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Blostein, Dorothea, and Lippold Haken. 1990. “Template Matching for Rhythmic Analysis of Music Keyboard Input.” In Proceedings of 10th International Conference on Pattern Recognition, 767–70. \ No newline at end of file diff --git a/_OMRbibliography/1990/Carter_Automatic_recognition_of_music_notation_1990.md b/_OMRbibliography/1990/Carter_Automatic_recognition_of_music_notation_1990.md deleted file mode 100644 index 33109895..00000000 --- a/_OMRbibliography/1990/Carter_Automatic_recognition_of_music_notation_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Carter, Nicholas P., and Richard A. Bacon. 1990. “Automatic Recognition of Music Notation.” In Proceedings of the International Association for Pattern Recognition Workshop on Syntactic and Structural Pattern Recognition, 482. \ No newline at end of file diff --git a/_OMRbibliography/1990/Clarke_Problems_to_be_faced_by_developers_of_computer_based_automatic_music_recognisers_1990.md b/_OMRbibliography/1990/Clarke_Problems_to_be_faced_by_developers_of_computer_based_automatic_music_recognisers_1990.md deleted file mode 100644 index 870288fd..00000000 --- a/_OMRbibliography/1990/Clarke_Problems_to_be_faced_by_developers_of_computer_based_automatic_music_recognisers_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Clarke, Alastair, Malcolm Brown, and Michael Thorne. 1990. “Problems to Be Faced by Developers of Computer Based Automatic Music Recognisers.” In Proceedings of the International Computer Music Conference, 345–47. \ No newline at end of file diff --git a/_OMRbibliography/1990/Hewlett_Optical_recognition_of_musical_data_1990.md b/_OMRbibliography/1990/Hewlett_Optical_recognition_of_musical_data_1990.md deleted file mode 100644 index 0499de02..00000000 --- a/_OMRbibliography/1990/Hewlett_Optical_recognition_of_musical_data_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Hewlett, Walter B., and Eleanor Selfridge-Field. 1990. “Optical Recognition of Musical Data.” In Computing in Musicology: A Directory of Research, 36–45. \ No newline at end of file diff --git a/_OMRbibliography/1990/Inokuchi_Computer_and_music_1990.md b/_OMRbibliography/1990/Inokuchi_Computer_and_music_1990.md deleted file mode 100644 index 833d8973..00000000 --- a/_OMRbibliography/1990/Inokuchi_Computer_and_music_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Inokuchi, Seiji, and Haruhiro Katayose. 1990. “Computer and Music.” Journal of the Institute of Electronics, Information and Communication Engineers 73 (9):965–67. \ No newline at end of file diff --git a/_OMRbibliography/1990/Itagaki_Automatic_recognition_on_some_different_types_of_musical_notation_1990.md b/_OMRbibliography/1990/Itagaki_Automatic_recognition_on_some_different_types_of_musical_notation_1990.md deleted file mode 100644 index db779dd5..00000000 --- a/_OMRbibliography/1990/Itagaki_Automatic_recognition_on_some_different_types_of_musical_notation_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Itagaki, Takebumi S., Shuji Hashimoto, Masayuki Isogai, and Sadamu Ohteru. 1990. “Automatic Recognition on Some Different Types of Musical Notation.” In Proceedings of the International Association for Pattern Recognition Workshop on Syntactic and Structural Pattern Recognition, 488. \ No newline at end of file diff --git a/_OMRbibliography/1990/Katayose_Expression_extraction_in_virtuoso_music_performances_1990.md b/_OMRbibliography/1990/Katayose_Expression_extraction_in_virtuoso_music_performances_1990.md deleted file mode 100644 index 629ae0bc..00000000 --- a/_OMRbibliography/1990/Katayose_Expression_extraction_in_virtuoso_music_performances_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Katayose, Haruhiro, T. Fukuoka, K. Takami, and Seiji Inokuchi. 1990. “Expression Extraction in Virtuoso Music Performances.” In Proceedings of the Tenth International Conference on Pattern Recognition, 780–84. \ No newline at end of file diff --git a/_OMRbibliography/1990/Kato_The_recognition_system_for_printed_piano_music_using_musical_knowledge_and_constraints_1990.md b/_OMRbibliography/1990/Kato_The_recognition_system_for_printed_piano_music_using_musical_knowledge_and_constraints_1990.md deleted file mode 100644 index b0e09f13..00000000 --- a/_OMRbibliography/1990/Kato_The_recognition_system_for_printed_piano_music_using_musical_knowledge_and_constraints_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Kato, Hirokazu, and Seiji Inokuchi. 1990. “The Recognition System for Printed Piano Music Using Musical Knowledge and Constraints.” In Proceedings of the International Association for Pattern Recognition Workshop on Syntactic and Structural Pattern Recognition, 231–48. \ No newline at end of file diff --git a/_OMRbibliography/1990/Miyao_Recognition_for_printed_piano_scores_(in_Japanese)_1990.md b/_OMRbibliography/1990/Miyao_Recognition_for_printed_piano_scores_(in_Japanese)_1990.md deleted file mode 100644 index f01ec52e..00000000 --- a/_OMRbibliography/1990/Miyao_Recognition_for_printed_piano_scores_(in_Japanese)_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Miyao, Hidetoshi T., T. Ejima, M. Miyahara, and K. Kotani. 1990. Recognition for Printed Piano Scores (in Japanese). Vol. 34. 90–74. \ No newline at end of file diff --git a/_OMRbibliography/1990/Pennycook_Towards_advanced_optical_music_recognition_1990.md b/_OMRbibliography/1990/Pennycook_Towards_advanced_optical_music_recognition_1990.md deleted file mode 100644 index 378a2150..00000000 --- a/_OMRbibliography/1990/Pennycook_Towards_advanced_optical_music_recognition_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Pennycook, Bruce. 1990. “Towards Advanced Optical Music Recognition.” Advanced Imaging, 54–57. \ No newline at end of file diff --git a/_OMRbibliography/1990/Richard_Godel_tune:_Formal_models_in_music_recognition_systems_1990.md b/_OMRbibliography/1990/Richard_Godel_tune:_Formal_models_in_music_recognition_systems_1990.md deleted file mode 100644 index c5205382..00000000 --- a/_OMRbibliography/1990/Richard_Godel_tune:_Formal_models_in_music_recognition_systems_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Richard, Dominique M. 1990. “Godel Tune: Formal Models in Music Recognition Systems.” In ICMC Glasgow 1990 Proceedings, 338–40. \ No newline at end of file diff --git a/_OMRbibliography/1990/Sawada_A_practical_bilateral_translation_system_between_printed_music_and_braille_1990.md b/_OMRbibliography/1990/Sawada_A_practical_bilateral_translation_system_between_printed_music_and_braille_1990.md deleted file mode 100644 index 5ba9f4dc..00000000 --- a/_OMRbibliography/1990/Sawada_A_practical_bilateral_translation_system_between_printed_music_and_braille_1990.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1990 -year: 1990 ---- - -Sawada, Hideyuki, Toshiaki Matsushima, Takebumi Itakagi, and Sadamu Ohteru. 1990. “A Practical Bilateral Translation System between Printed Music and Braille.” In Proceedings of Sixth International Workshop on Computer Applications for the Visually Handicapped. \ No newline at end of file diff --git a/_OMRbibliography/1991/Bainbridge_Preliminary_experiments_in_musical_score_recognition_1991.md b/_OMRbibliography/1991/Bainbridge_Preliminary_experiments_in_musical_score_recognition_1991.md deleted file mode 100644 index 194690e2..00000000 --- a/_OMRbibliography/1991/Bainbridge_Preliminary_experiments_in_musical_score_recognition_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Bainbridge, David. 1991. Preliminary Experiments in Musical Score Recognition. University of Edinburgh. \ No newline at end of file diff --git a/_OMRbibliography/1991/Blostein_Justification_of_printed_music_1991.md b/_OMRbibliography/1991/Blostein_Justification_of_printed_music_1991.md deleted file mode 100644 index 04237a28..00000000 --- a/_OMRbibliography/1991/Blostein_Justification_of_printed_music_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Blostein, Dorothea, and Lippold Haken. 1991. “Justification of Printed Music.” Communications of the ACM 34 (3):88–99. \ No newline at end of file diff --git a/_OMRbibliography/1991/Carter_Automatic_recognition_and_related_topics:_Guildford_1991.md b/_OMRbibliography/1991/Carter_Automatic_recognition_and_related_topics:_Guildford_1991.md deleted file mode 100644 index 505ed46e..00000000 --- a/_OMRbibliography/1991/Carter_Automatic_recognition_and_related_topics:_Guildford_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Carter, Nicholas. 1991. “Automatic Recognition and Related Topics: Guildford.” Computing in Musicology 7:109–11. \ No newline at end of file diff --git a/_OMRbibliography/1991/Choi_Optical_recognition_of_the_printed_musical_score_1991.md b/_OMRbibliography/1991/Choi_Optical_recognition_of_the_printed_musical_score_1991.md deleted file mode 100644 index 9a26b47e..00000000 --- a/_OMRbibliography/1991/Choi_Optical_recognition_of_the_printed_musical_score_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Choi, James. 1991. Optical Recognition of the Printed Musical Score. University of Illinois at Chicago. \ No newline at end of file diff --git "a/_OMRbibliography/1991/Co\303\274asnon_R\303\251seaux_de_neurones_appliqu\303\251s_\303\240_la_reconnaissance_de_partitions_musicales_1991.md" "b/_OMRbibliography/1991/Co\303\274asnon_R\303\251seaux_de_neurones_appliqu\303\251s_\303\240_la_reconnaissance_de_partitions_musicales_1991.md" deleted file mode 100644 index f93874c8..00000000 --- "a/_OMRbibliography/1991/Co\303\274asnon_R\303\251seaux_de_neurones_appliqu\303\251s_\303\240_la_reconnaissance_de_partitions_musicales_1991.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Coüasnon, Bertrand. 1991. Réseaux de neurones appliqués à la reconnaissance de partitions musicales. Université de Rennes: Irisa. \ No newline at end of file diff --git a/_OMRbibliography/1991/Fahmy_A_graph-grammar_approach_to_high-level_music_recognition_1991.md b/_OMRbibliography/1991/Fahmy_A_graph-grammar_approach_to_high-level_music_recognition_1991.md deleted file mode 100644 index c4ad2c1e..00000000 --- a/_OMRbibliography/1991/Fahmy_A_graph-grammar_approach_to_high-level_music_recognition_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Fahmy, Hoda. 1991. A Graph-Grammar Approach to High-Level Music Recognition. Queen’s University. \ No newline at end of file diff --git a/_OMRbibliography/1991/Fahmy_A_graph_grammar_for_high-level_recognition_of_music_notation_1991.md b/_OMRbibliography/1991/Fahmy_A_graph_grammar_for_high-level_recognition_of_music_notation_1991.md deleted file mode 100644 index a79da566..00000000 --- a/_OMRbibliography/1991/Fahmy_A_graph_grammar_for_high-level_recognition_of_music_notation_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Fahmy, Hoda, and Dorothea Blostein. 1991. “A Graph Grammar for High-Level Recognition of Music Notation.” First International Conference on Document Analysis 1:70–78. \ No newline at end of file diff --git a/_OMRbibliography/1991/Fujinaga_Optical_music_recognition:_Progress_report_1991.md b/_OMRbibliography/1991/Fujinaga_Optical_music_recognition:_Progress_report_1991.md deleted file mode 100644 index 68d320b7..00000000 --- a/_OMRbibliography/1991/Fujinaga_Optical_music_recognition:_Progress_report_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Fujinaga, Ichiro, Bo Alphonce, Bruce Pennycook, and Kharim Hogan. 1991. “Optical Music Recognition: Progress Report.” In Proceedings of the International Computer Music Conference, 66–73. at Montreal, QC. \ No newline at end of file diff --git a/_OMRbibliography/1991/Fujinaga_The_optical_music_recognition_project_1991.md b/_OMRbibliography/1991/Fujinaga_The_optical_music_recognition_project_1991.md deleted file mode 100644 index 1f37db52..00000000 --- a/_OMRbibliography/1991/Fujinaga_The_optical_music_recognition_project_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Fujinaga, Ichiro, Bruce Pennycook, and Bo Alphonce. 1991. “The Optical Music Recognition Project.” In Computers in Music Research, 3:139–42. \ No newline at end of file diff --git a/_OMRbibliography/1991/Leplumey_Comparison_of_region_labelling_for_musical_scores_1991.md b/_OMRbibliography/1991/Leplumey_Comparison_of_region_labelling_for_musical_scores_1991.md deleted file mode 100644 index 06b60308..00000000 --- a/_OMRbibliography/1991/Leplumey_Comparison_of_region_labelling_for_musical_scores_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Leplumey, I., and Jean Camillerapp. 1991a. “Comparison of Region Labelling for Musical Scores.” In First International Conference on Document Analysis, 2:674–82. \ No newline at end of file diff --git "a/_OMRbibliography/1991/Leplumey_Coopration_entre_la_segmentation_des_r\303\251gions_blanches_et_des_r\303\251gions_noires_pour_l'analyse_de_partitions_musicales_1991.md" "b/_OMRbibliography/1991/Leplumey_Coopration_entre_la_segmentation_des_r\303\251gions_blanches_et_des_r\303\251gions_noires_pour_l'analyse_de_partitions_musicales_1991.md" deleted file mode 100644 index 6b9704c2..00000000 --- "a/_OMRbibliography/1991/Leplumey_Coopration_entre_la_segmentation_des_r\303\251gions_blanches_et_des_r\303\251gions_noires_pour_l'analyse_de_partitions_musicales_1991.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Leplumey, I., and Jean Camillerapp. 1991b. “Coopration entre la segmentation des régions blanches et des régions noires pour l’analyse de partitions musicales.” In 8ème Congrès Reconnaissance des Formes et Intelligence Artificielle, 3:1045–52. \ No newline at end of file diff --git a/_OMRbibliography/1991/Martin_Low-level_analysis_of_music_drawing_images_1991.md b/_OMRbibliography/1991/Martin_Low-level_analysis_of_music_drawing_images_1991.md deleted file mode 100644 index b0eeb53d..00000000 --- a/_OMRbibliography/1991/Martin_Low-level_analysis_of_music_drawing_images_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Martin, Philippe, and Camille Bellissant. 1991a. “Low-Level Analysis of Music Drawing Images.” In International Conference on Document Analysis and Recognition, 417–25. \ No newline at end of file diff --git a/_OMRbibliography/1991/Martin_Neural_networks_at_different_levels_of_musical_score_image_analysis_system_1991.md b/_OMRbibliography/1991/Martin_Neural_networks_at_different_levels_of_musical_score_image_analysis_system_1991.md deleted file mode 100644 index 2bb219cb..00000000 --- a/_OMRbibliography/1991/Martin_Neural_networks_at_different_levels_of_musical_score_image_analysis_system_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Martin, Philippe, and Camille Bellissant. 1991b. “Neural Networks at Different Levels of Musical Score Image Analysis System.” In Seventh Scandinavian Conference on Image Analysis, 1102–9. \ No newline at end of file diff --git a/_OMRbibliography/1991/McGee_The_optical_scanning_of_medieval_music_1991.md b/_OMRbibliography/1991/McGee_The_optical_scanning_of_medieval_music_1991.md deleted file mode 100644 index 9d13a53b..00000000 --- a/_OMRbibliography/1991/McGee_The_optical_scanning_of_medieval_music_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -McGee, William, and Paul Merkley. 1991. “The Optical Scanning of Medieval Music.” Computers and the Humanities 25 (1):47–53. \ No newline at end of file diff --git a/_OMRbibliography/1991/McLean_Music_recognition_1991.md b/_OMRbibliography/1991/McLean_Music_recognition_1991.md deleted file mode 100644 index e025f805..00000000 --- a/_OMRbibliography/1991/McLean_Music_recognition_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -McLean, Graeme. 1991. Music Recognition. Heriot-Watt University. \ No newline at end of file diff --git a/_OMRbibliography/1991/Rothstein_Coda_Finale-PC_2.0_Notation_Software_for_IBM_PCs_1991.md b/_OMRbibliography/1991/Rothstein_Coda_Finale-PC_2.0_Notation_Software_for_IBM_PCs_1991.md deleted file mode 100644 index 270f462d..00000000 --- a/_OMRbibliography/1991/Rothstein_Coda_Finale-PC_2.0_Notation_Software_for_IBM_PCs_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Rothstein, Joseph. 1991. “Coda Finale-PC 2.0 Notation Software for IBM PCs.” Computer Music Journal 15 (4):115. https://doi.org/10.2307/3681091. \ No newline at end of file diff --git a/_OMRbibliography/1991/Ruttenberg_Optical_reading_of_typeset_music_1991.md b/_OMRbibliography/1991/Ruttenberg_Optical_reading_of_typeset_music_1991.md deleted file mode 100644 index 8571c5e0..00000000 --- a/_OMRbibliography/1991/Ruttenberg_Optical_reading_of_typeset_music_1991.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1991 -year: 1991 ---- - -Ruttenberg, Alan. 1991. Optical Reading of Typeset Music. Massachusetts Institute of Technology. \ No newline at end of file diff --git a/_OMRbibliography/1992/Baumann_Transforming_printed_piano_music_into_midi_1992.md b/_OMRbibliography/1992/Baumann_Transforming_printed_piano_music_into_midi_1992.md deleted file mode 100644 index 51564d19..00000000 --- a/_OMRbibliography/1992/Baumann_Transforming_printed_piano_music_into_midi_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Baumann, Stephan, and Andreas Dengel. 1992. “Transforming Printed Piano Music into Midi.” In Proceedings of International Workshop on Structural and Syntactic Pattern Recognition, 363–72. \ No newline at end of file diff --git a/_OMRbibliography/1992/Blostein_A_critical_survey_of_music_image_analysis_1992.md b/_OMRbibliography/1992/Blostein_A_critical_survey_of_music_image_analysis_1992.md deleted file mode 100644 index c85d27cc..00000000 --- a/_OMRbibliography/1992/Blostein_A_critical_survey_of_music_image_analysis_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Blostein, Dorothea, and Henry S. Baird. 1992. “A Critical Survey of Music Image Analysis.” In Structured Document Image Analysis, edited by Henry S. Baird, Horst Bunke, and Kazuhiko Yamamoto. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/1992/Blostein_Recognition_of_music_notation:_Sspr_'90_working_group_report,_Structured_document_image_analysis_1992.md b/_OMRbibliography/1992/Blostein_Recognition_of_music_notation:_Sspr_'90_working_group_report,_Structured_document_image_analysis_1992.md deleted file mode 100644 index d137dd1b..00000000 --- a/_OMRbibliography/1992/Blostein_Recognition_of_music_notation:_Sspr_'90_working_group_report,_Structured_document_image_analysis_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Blostein, Dorothea, and Nicholas Carter. 1992. Recognition of Music Notation: Sspr ’90 Working Group Report, Structured Document Image Analysis. Edited by Henry Baird, Horst Bunke, and Kazuhiko Yamamoto. Berlin: Springer Verlag. \ No newline at end of file diff --git a/_OMRbibliography/1992/Bulis_Computerized_recognition_of_hand-written_musical_notes_1992.md b/_OMRbibliography/1992/Bulis_Computerized_recognition_of_hand-written_musical_notes_1992.md deleted file mode 100644 index 5e9c9a16..00000000 --- a/_OMRbibliography/1992/Bulis_Computerized_recognition_of_hand-written_musical_notes_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Bulis, Alex, Roy Almog, Moti Gerner, and Uri Shimony. 1992. “Computerized Recognition of Hand-Written Musical Notes.” In Proceedings of the International Computer Music Conference, 110–12. \ No newline at end of file diff --git "a/_OMRbibliography/1992/Carter_A_new_edition_of_Walton's_Fa\303\247ade_using_automatic_score_recognition_1992.md" "b/_OMRbibliography/1992/Carter_A_new_edition_of_Walton's_Fa\303\247ade_using_automatic_score_recognition_1992.md" deleted file mode 100644 index aba6be58..00000000 --- "a/_OMRbibliography/1992/Carter_A_new_edition_of_Walton's_Fa\303\247ade_using_automatic_score_recognition_1992.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Carter, Nicholas P. 1992a. “A New Edition of Walton’s Façade Using Automatic Score Recognition.” In Proceedings of International Workshop on Structural and Syntactic Pattern Recognition, 352–62. \ No newline at end of file diff --git a/_OMRbibliography/1992/Carter_Automatic_recognition_of_printed_music_1992.md b/_OMRbibliography/1992/Carter_Automatic_recognition_of_printed_music_1992.md deleted file mode 100644 index 086a5c91..00000000 --- a/_OMRbibliography/1992/Carter_Automatic_recognition_of_printed_music_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Carter, Nicholas, and Richard Bacon. 1992. “Automatic Recognition of Printed Music.” In Structured Document Image Analysis, edited by Henry Baird, Horst Bunke, and Kazuhiko Yamamoto. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/1992/Carter_Segmentation_and_preliminary_recognition_of_madrigals_notated_in_white_mensural_notation_1992.md b/_OMRbibliography/1992/Carter_Segmentation_and_preliminary_recognition_of_madrigals_notated_in_white_mensural_notation_1992.md deleted file mode 100644 index dbbb52f5..00000000 --- a/_OMRbibliography/1992/Carter_Segmentation_and_preliminary_recognition_of_madrigals_notated_in_white_mensural_notation_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Carter, Nicholas P. 1992b. “Segmentation and Preliminary Recognition of Madrigals Notated in White Mensural Notation.” Machine Vision and Applications 5 (3):223–30. \ No newline at end of file diff --git a/_OMRbibliography/1992/Di_Lettura_automatica_di_partiture_musicali_1992.md b/_OMRbibliography/1992/Di_Lettura_automatica_di_partiture_musicali_1992.md deleted file mode 100644 index 42b652d0..00000000 --- a/_OMRbibliography/1992/Di_Lettura_automatica_di_partiture_musicali_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Di, Riso and Giuseppe. 1992. Lettura automatica di partiture musicali. Universit di Salerno. \ No newline at end of file diff --git a/_OMRbibliography/1992/Fahmy_Graph_grammar_processing_of_uncertain_data_1992.md b/_OMRbibliography/1992/Fahmy_Graph_grammar_processing_of_uncertain_data_1992.md deleted file mode 100644 index 5da520c1..00000000 --- a/_OMRbibliography/1992/Fahmy_Graph_grammar_processing_of_uncertain_data_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Fahmy, Hoda, and Dorothea Blostein. 1992. “Graph Grammar Processing of Uncertain Data.” In Proceedings of International Workshop on Structural and Syntactic Pattern Recognition, 373–82. \ No newline at end of file diff --git a/_OMRbibliography/1992/Fujinaga_An_optical_music_recognition_system_that_learns_1992.md b/_OMRbibliography/1992/Fujinaga_An_optical_music_recognition_system_that_learns_1992.md deleted file mode 100644 index a7c62cdd..00000000 --- a/_OMRbibliography/1992/Fujinaga_An_optical_music_recognition_system_that_learns_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Fujinaga, Ichiro. 1992. “An Optical Music Recognition System That Learns.” In Proceedings of SPIE, Enabling Technologies for High-Bandwidth Applications, 1785:210–17. Boston: MA. \ No newline at end of file diff --git a/_OMRbibliography/1992/Fujinaga_Interactive_optical_music_recognition_1992.md b/_OMRbibliography/1992/Fujinaga_Interactive_optical_music_recognition_1992.md deleted file mode 100644 index a6dab8ef..00000000 --- a/_OMRbibliography/1992/Fujinaga_Interactive_optical_music_recognition_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Fujinaga, Ichiro, Bo Alphonce, and Bruce Pennycook. 1992. “Interactive Optical Music Recognition.” In Proceedings of the International Computer Music Conference, 117–20. \ No newline at end of file diff --git a/_OMRbibliography/1992/Fujinaga_Optical_music_recognition_on_next_workstation_1992.md b/_OMRbibliography/1992/Fujinaga_Optical_music_recognition_on_next_workstation_1992.md deleted file mode 100644 index c9d15478..00000000 --- a/_OMRbibliography/1992/Fujinaga_Optical_music_recognition_on_next_workstation_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Fujinaga, Ichiro, Bo Alphonce, Glendon Diener, and Bruce Pennycook. 1992. “Optical Music Recognition on next Workstation.” In Proceedings of the Second International Conference on Music Perception and Cognition. at Los Angeles, CA. \ No newline at end of file diff --git a/_OMRbibliography/1992/Itagaki_Automatic_recognition_of_several_types_of_musical_notation_1992.md b/_OMRbibliography/1992/Itagaki_Automatic_recognition_of_several_types_of_musical_notation_1992.md deleted file mode 100644 index a0825b0d..00000000 --- a/_OMRbibliography/1992/Itagaki_Automatic_recognition_of_several_types_of_musical_notation_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Itagaki, Takebumi, Shuji Hashimoto, Masayuki Isogai, and Sadamu Ohteru. 1992. “Automatic Recognition of Several Types of Musical Notation.” In Structured Document Image Analysis, edited by Henry Baird, Horst Bunke, and Kazuhiko Yamamoto, 466–76. Berlin: Springer-Verlag. \ No newline at end of file diff --git a/_OMRbibliography/1992/Kasturi_Document_image_analysis_techniques_1992.md b/_OMRbibliography/1992/Kasturi_Document_image_analysis_techniques_1992.md deleted file mode 100644 index b8a51abe..00000000 --- a/_OMRbibliography/1992/Kasturi_Document_image_analysis_techniques_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Kasturi, Rangachar, and Lawrence O’Gorman. 1992. “Document image analysis techniques.” In Machine Vision and Applications, 5:141–42. 3. \ No newline at end of file diff --git a/_OMRbibliography/1992/Kato_A_recognition_system_for_printed_piano_music_using_musical_knowledge_and_constraints,_Structured_document_image_analysis_1992.md b/_OMRbibliography/1992/Kato_A_recognition_system_for_printed_piano_music_using_musical_knowledge_and_constraints,_Structured_document_image_analysis_1992.md deleted file mode 100644 index d354c14f..00000000 --- a/_OMRbibliography/1992/Kato_A_recognition_system_for_printed_piano_music_using_musical_knowledge_and_constraints,_Structured_document_image_analysis_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Kato, Hirokazu, and Seiji Inokuchi. 1992. “A Recognition System for Printed Piano Music Using Musical Knowledge and Constraints, Structured Document Image Analysis.” In Structured Document Image Analysis, edited by Henry S. Baird, Horst Bunke, and Kazuhiko Yamamoto, 435–55. Berlin: Springer-Verlag. \ No newline at end of file diff --git a/_OMRbibliography/1992/Martin_Neural_networks_for_the_recognition_of_engraved_musical_scores_1992.md b/_OMRbibliography/1992/Martin_Neural_networks_for_the_recognition_of_engraved_musical_scores_1992.md deleted file mode 100644 index 92cc0652..00000000 --- a/_OMRbibliography/1992/Martin_Neural_networks_for_the_recognition_of_engraved_musical_scores_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Martin, Philippe, and Camille Bellissant. 1992. “Neural Networks for the Recognition of Engraved Musical Scores.” International Journal of Pattern Recognition and Artificial Intelligence 6 (1):193–208. \ No newline at end of file diff --git "a/_OMRbibliography/1992/Martin_R\303\251seaux_de_neurones_artificiels:_Application_la_reconnaissance_optique_de_partitions_musicales_1992.md" "b/_OMRbibliography/1992/Martin_R\303\251seaux_de_neurones_artificiels:_Application_la_reconnaissance_optique_de_partitions_musicales_1992.md" deleted file mode 100644 index 340c3175..00000000 --- "a/_OMRbibliography/1992/Martin_R\303\251seaux_de_neurones_artificiels:_Application_la_reconnaissance_optique_de_partitions_musicales_1992.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Martin, Philippe. 1992. “Réseaux de neurones artificiels: Application la reconnaissance optique de partitions musicales.” PhD Thesis, Institut IMAG. \ No newline at end of file diff --git a/_OMRbibliography/1992/Matsushima_Computerized_Japanese_traditional_music_processing_system_1992.md b/_OMRbibliography/1992/Matsushima_Computerized_Japanese_traditional_music_processing_system_1992.md deleted file mode 100644 index d4a1857d..00000000 --- a/_OMRbibliography/1992/Matsushima_Computerized_Japanese_traditional_music_processing_system_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Matsushima, Toshiaki. 1992. “Computerized Japanese Traditional Music Processing System.” In Proceedings of the International Computer Music Conference, 121–24. \ No newline at end of file diff --git a/_OMRbibliography/1992/Miyao_Symbol_recognition_for_printed_piano_scores_based_on_the_musical_knowledge_(in_Japanese)_1992.md b/_OMRbibliography/1992/Miyao_Symbol_recognition_for_printed_piano_scores_based_on_the_musical_knowledge_(in_Japanese)_1992.md deleted file mode 100644 index 9022b815..00000000 --- a/_OMRbibliography/1992/Miyao_Symbol_recognition_for_printed_piano_scores_based_on_the_musical_knowledge_(in_Japanese)_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Miyao, Hidetoshi T., T. Ejima, M. Miyahara, and K. Kotani. 1992. “Symbol Recognition for Printed Piano Scores Based on the Musical Knowledge (in Japanese).” Transactions of the Institute of Electronics, Information and Communication Engineers D-II 75 (11):1848–55. \ No newline at end of file diff --git a/_OMRbibliography/1992/Modayur_Muser-a_prototype_musical_recognition_system_using_mathematical_morphology_1992.md b/_OMRbibliography/1992/Modayur_Muser-a_prototype_musical_recognition_system_using_mathematical_morphology_1992.md deleted file mode 100644 index 93570f4d..00000000 --- a/_OMRbibliography/1992/Modayur_Muser-a_prototype_musical_recognition_system_using_mathematical_morphology_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Modayur, Bharath R., Visvanathan Ramesh, Robert Martin Haralick, and Linda G. Shapiro. 1992. “Muser-a Prototype Musical Recognition System Using Mathematical Morphology.” EE Dept, FT-10 University of Washington: Intelligent Systems Laboratory. \ No newline at end of file diff --git a/_OMRbibliography/1992/Modayur_On_printed_music_score_symbol_recognition_1992.md b/_OMRbibliography/1992/Modayur_On_printed_music_score_symbol_recognition_1992.md deleted file mode 100644 index b0b8af34..00000000 --- a/_OMRbibliography/1992/Modayur_On_printed_music_score_symbol_recognition_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Modayur, Bharath R., Robert Martin Haralick, and Linda G. Shapiro. 1992. “On Printed Music Score Symbol Recognition.” In Proceedings of the Symposium on Document Analysis and Information Retrieval, 16–18. \ No newline at end of file diff --git a/_OMRbibliography/1992/Ng_Segmentation_of_music_primitives_1992.md b/_OMRbibliography/1992/Ng_Segmentation_of_music_primitives_1992.md deleted file mode 100644 index b31d6b5f..00000000 --- a/_OMRbibliography/1992/Ng_Segmentation_of_music_primitives_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Ng, Kia, and Roger David Boyle. 1992. “Segmentation of Music Primitives.” In Proceedings of the British Machine Vision Conference, 472–80. at Leeds, UK. \ No newline at end of file diff --git a/_OMRbibliography/1992/Roth_OMR-optical_music_recognition_1992.md b/_OMRbibliography/1992/Roth_OMR-optical_music_recognition_1992.md deleted file mode 100644 index 687dbf68..00000000 --- a/_OMRbibliography/1992/Roth_OMR-optical_music_recognition_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Roth, Martin. 1992. OMR-Optical Music Recognition. Swiss Federal Institute of Technology. \ No newline at end of file diff --git a/_OMRbibliography/1992/Sicard_An_efficient_method_for_the_recognition_of_printed_music_1992.md b/_OMRbibliography/1992/Sicard_An_efficient_method_for_the_recognition_of_printed_music_1992.md deleted file mode 100644 index 8b055a27..00000000 --- a/_OMRbibliography/1992/Sicard_An_efficient_method_for_the_recognition_of_printed_music_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Sicard, Etienne. 1992. “An Efficient Method for the Recognition of Printed Music.” In Proceedings of 11th International Conference on Pattern Recognition (IAPR), 573–76. \ No newline at end of file diff --git a/_OMRbibliography/1992/Stevens_A_comparison_of_connectionist_models_of_music_recognition_and_human_performance_1992.md b/_OMRbibliography/1992/Stevens_A_comparison_of_connectionist_models_of_music_recognition_and_human_performance_1992.md deleted file mode 100644 index 214ed392..00000000 --- a/_OMRbibliography/1992/Stevens_A_comparison_of_connectionist_models_of_music_recognition_and_human_performance_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Stevens, Catherine, and Cyril Latimer. 1992. “A Comparison of Connectionist Models of Music Recognition and Human Performance.” Minds and Machines 2 (4):379–400. \ No newline at end of file diff --git a/_OMRbibliography/1992/Wolman_Recognition_of_handwritten_music_notation_1992.md b/_OMRbibliography/1992/Wolman_Recognition_of_handwritten_music_notation_1992.md deleted file mode 100644 index cf112f05..00000000 --- a/_OMRbibliography/1992/Wolman_Recognition_of_handwritten_music_notation_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Wolman, (J) Amnon, James Choi, Shahab Asgharzadeh, and Jason Kahana. 1992. “Recognition of Handwritten Music Notation.” In Proceedings of the International Computer Music Conference, 125–27. \ No newline at end of file diff --git a/_OMRbibliography/1992/Yadid-Pecht_Ramit:_Neural_network_for_recognition_of_musical_notes_1992.md b/_OMRbibliography/1992/Yadid-Pecht_Ramit:_Neural_network_for_recognition_of_musical_notes_1992.md deleted file mode 100644 index 79c6b90f..00000000 --- a/_OMRbibliography/1992/Yadid-Pecht_Ramit:_Neural_network_for_recognition_of_musical_notes_1992.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1992 -year: 1992 ---- - -Yadid-Pecht, Orly, Eliyahu Brutman, Lior Dvir, Moti Gerner, and Uri Shimony. 1992. “Ramit: Neural Network for Recognition of Musical Notes.” In Proceedings of the International Computer Music Conference, 128–31. \ No newline at end of file diff --git a/_OMRbibliography/1993/Armand_Musical_score_recognition:_A_hierarchical_and_recursive_approach_1993.md b/_OMRbibliography/1993/Armand_Musical_score_recognition:_A_hierarchical_and_recursive_approach_1993.md deleted file mode 100644 index aea41a27..00000000 --- a/_OMRbibliography/1993/Armand_Musical_score_recognition:_A_hierarchical_and_recursive_approach_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Armand, Jean-Pierre. 1993. “Musical Score Recognition: A Hierarchical and Recursive Approach.” In Proceedings of the Second International Conference on Document Analysis and Recognition, 906–9. \ No newline at end of file diff --git a/_OMRbibliography/1993/Baumann_Document_recognition_of_printed_scores_and_transformation_into_MIDI_1993.md b/_OMRbibliography/1993/Baumann_Document_recognition_of_printed_scores_and_transformation_into_MIDI_1993.md deleted file mode 100644 index 129294b5..00000000 --- a/_OMRbibliography/1993/Baumann_Document_recognition_of_printed_scores_and_transformation_into_MIDI_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Baumann, Stephan. 1993. “Document recognition of printed scores and transformation into MIDI.” In Proceedings of the Deutsches Forschungszentrum fuer Kuenstliche Intelligenz GmbH (DFKI). Kaiserslautern. \ No newline at end of file diff --git a/_OMRbibliography/1993/Carter_A_generalized_approach_to_automatic_recognition_of_music_scores_1993.md b/_OMRbibliography/1993/Carter_A_generalized_approach_to_automatic_recognition_of_music_scores_1993.md deleted file mode 100644 index 502e3b07..00000000 --- a/_OMRbibliography/1993/Carter_A_generalized_approach_to_automatic_recognition_of_music_scores_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Carter, Nicholas P. 1993. A Generalized Approach to Automatic Recognition of Music Scores. Department of Music, Stanford University. \ No newline at end of file diff --git a/_OMRbibliography/1993/Clarke_Recognising_musical_text_1993.md b/_OMRbibliography/1993/Clarke_Recognising_musical_text_1993.md deleted file mode 100644 index 53a4dda1..00000000 --- a/_OMRbibliography/1993/Clarke_Recognising_musical_text_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Clarke, Alastair T., B.Malcolm Brown, and Michael P. Thorne. 1993. “Recognising Musical Text.” In Proceedings of the SPIE, 2064:222–33. \ No newline at end of file diff --git a/_OMRbibliography/1993/Distasi_An_automatic_system_for_reading_musical_scores_1993.md b/_OMRbibliography/1993/Distasi_An_automatic_system_for_reading_musical_scores_1993.md deleted file mode 100644 index 3ad62cec..00000000 --- a/_OMRbibliography/1993/Distasi_An_automatic_system_for_reading_musical_scores_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Distasi, Riccardo, Michele Nappi, and Sergio Vitulano. 1993. “An Automatic System for Reading Musical Scores.” In Proceedings of the Eighth Scandinavian Conference on Image Analysis, 1307–10. \ No newline at end of file diff --git a/_OMRbibliography/1993/Distasi_Automatic_system_for_reading_scores_1993.md b/_OMRbibliography/1993/Distasi_Automatic_system_for_reading_scores_1993.md deleted file mode 100644 index c6aa63ad..00000000 --- a/_OMRbibliography/1993/Distasi_Automatic_system_for_reading_scores_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Distasi, Riccardo, and et al. 1993. “Automatic System for Reading Scores.” In Eighth Scandinavian Conference on Image Analysis, 1307–10. \ No newline at end of file diff --git a/_OMRbibliography/1993/Fahmy_A_graph_grammar_programming_style_for_recognition_of_music_notation_1993.md b/_OMRbibliography/1993/Fahmy_A_graph_grammar_programming_style_for_recognition_of_music_notation_1993.md deleted file mode 100644 index 39df1f28..00000000 --- a/_OMRbibliography/1993/Fahmy_A_graph_grammar_programming_style_for_recognition_of_music_notation_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Fahmy, Hoda, and Dorothea Blostein. 1993. “A Graph Grammar Programming Style for Recognition of Music Notation.” Machine Vision and Applications 6:83–99. \ No newline at end of file diff --git a/_OMRbibliography/1993/Fujinaga_Optical_music_recognition_system_which_learns_1993.md b/_OMRbibliography/1993/Fujinaga_Optical_music_recognition_system_which_learns_1993.md deleted file mode 100644 index 0d60e6e6..00000000 --- a/_OMRbibliography/1993/Fujinaga_Optical_music_recognition_system_which_learns_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Fujinaga, Ichiro. 1993. “Optical Music Recognition System Which Learns.” In Proceedings of the SPIE, 1785:210–17. \ No newline at end of file diff --git a/_OMRbibliography/1993/Geggus_A_model-based_approach_to_sheet_music_recognition_1993.md b/_OMRbibliography/1993/Geggus_A_model-based_approach_to_sheet_music_recognition_1993.md deleted file mode 100644 index b055ce99..00000000 --- a/_OMRbibliography/1993/Geggus_A_model-based_approach_to_sheet_music_recognition_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Geggus, Karl Michael, and Elizabeth C. Botha. 1993. “A Model-Based Approach to Sheet Music Recognition.” Elektron 10 (1):25–29. \ No newline at end of file diff --git a/_OMRbibliography/1993/Kobayakawa_Auto_music_score_recognition_system_1993.md b/_OMRbibliography/1993/Kobayakawa_Auto_music_score_recognition_system_1993.md deleted file mode 100644 index 8c071bd8..00000000 --- a/_OMRbibliography/1993/Kobayakawa_Auto_music_score_recognition_system_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Kobayakawa, Tatsu. 1993. “Auto Music Score Recognition System.” In Proceedings SPIE: Character Recognition Technologies, 1906:112–23. \ No newline at end of file diff --git a/_OMRbibliography/1993/Leplumey_A_robust_detector_for_music_staves_1993.md b/_OMRbibliography/1993/Leplumey_A_robust_detector_for_music_staves_1993.md deleted file mode 100644 index f37598d8..00000000 --- a/_OMRbibliography/1993/Leplumey_A_robust_detector_for_music_staves_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Leplumey, I., and G.Lorette Jean Camillerapp. 1993. “A Robust Detector for Music Staves.” In Proceedings of the International Conference on Document Analysis and Recognition, 902–5. \ No newline at end of file diff --git a/_OMRbibliography/1993/Modayur_Muser:_A_prototype_musical_recognition_system_using_mathematical_morphology_1993.md b/_OMRbibliography/1993/Modayur_Muser:_A_prototype_musical_recognition_system_using_mathematical_morphology_1993.md deleted file mode 100644 index 9e75ad4a..00000000 --- a/_OMRbibliography/1993/Modayur_Muser:_A_prototype_musical_recognition_system_using_mathematical_morphology_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Modayur, Bharath R., Visvanathan Ramesh, Robert Martin Haralick, and Linda G. Shapiro. 1993. “Muser: A Prototype Musical Recognition System Using Mathematical Morphology.” In Machine Vision and Applications, 6:140–50. 2–3. \ No newline at end of file diff --git a/_OMRbibliography/1993/Newell_Midiscan_for_windows_1993.md b/_OMRbibliography/1993/Newell_Midiscan_for_windows_1993.md deleted file mode 100644 index f5d62a53..00000000 --- a/_OMRbibliography/1993/Newell_Midiscan_for_windows_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Newell, Christopher, and Homenda Wladyslaw. 1993. Midiscan for Windows. \ No newline at end of file diff --git a/_OMRbibliography/1993/Perrotti_Pre-processamento,_exctracao_de_atributos_e_primeiro_nivel_de_classiccao_para_un_sistema_de_reconhecimento_otico_de_simbolos_musicais_1993.md b/_OMRbibliography/1993/Perrotti_Pre-processamento,_exctracao_de_atributos_e_primeiro_nivel_de_classiccao_para_un_sistema_de_reconhecimento_otico_de_simbolos_musicais_1993.md deleted file mode 100644 index ca16cca8..00000000 --- a/_OMRbibliography/1993/Perrotti_Pre-processamento,_exctracao_de_atributos_e_primeiro_nivel_de_classiccao_para_un_sistema_de_reconhecimento_otico_de_simbolos_musicais_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Perrotti, Francesco Artur, and Roberto de Alencar Lotufo. 1993. “Pre-processamento, exctracao de atributos e primeiro nivel de classiccao para un sistema de reconhecimento otico de simbolos musicais.” In Proceedings of the VI Brazilian Symposium in Computer Graphics and Image Processing (SINGRAPI). \ No newline at end of file diff --git a/_OMRbibliography/1993/Randriamahefa_Printed_music_recognition_1993.md b/_OMRbibliography/1993/Randriamahefa_Printed_music_recognition_1993.md deleted file mode 100644 index 28b58175..00000000 --- a/_OMRbibliography/1993/Randriamahefa_Printed_music_recognition_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Randriamahefa, R., C.Fluhr Jean-Pierre Cocquerez, F. Pépin, and S. Philipp. 1993. “Printed Music Recognition.” In Proceedings of the International Conference on Document Analysis and Recognition, 898–901. at Tsukuba, Japan. \ No newline at end of file diff --git a/_OMRbibliography/1993/d'Andecy_Segmentation_et_reconnaissance_optique_de_partitions_musicales_1993.md b/_OMRbibliography/1993/d'Andecy_Segmentation_et_reconnaissance_optique_de_partitions_musicales_1993.md deleted file mode 100644 index 04971923..00000000 --- a/_OMRbibliography/1993/d'Andecy_Segmentation_et_reconnaissance_optique_de_partitions_musicales_1993.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1993 -year: 1993 ---- - -Andecy, Vincent Poulain d’. 1993. Segmentation et reconnaissance optique de partitions musicales. Rennes, France: IRISA/INSA. \ No newline at end of file diff --git a/_OMRbibliography/1994/Bainbridge_A_complete_optical_music_recognition_system:_Looking_to_the_future_1994.md b/_OMRbibliography/1994/Bainbridge_A_complete_optical_music_recognition_system:_Looking_to_the_future_1994.md deleted file mode 100644 index 27f15b51..00000000 --- a/_OMRbibliography/1994/Bainbridge_A_complete_optical_music_recognition_system:_Looking_to_the_future_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Bainbridge, David. 1994a. A Complete Optical Music Recognition System: Looking to the Future. \ No newline at end of file diff --git a/_OMRbibliography/1994/Bainbridge_Optical_music_recognition:_Progress_report_1_1994.md b/_OMRbibliography/1994/Bainbridge_Optical_music_recognition:_Progress_report_1_1994.md deleted file mode 100644 index a617a92f..00000000 --- a/_OMRbibliography/1994/Bainbridge_Optical_music_recognition:_Progress_report_1_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Bainbridge, David. 1994b. Optical Music Recognition: Progress Report 1. Department of Computer Science, University of Canterbury, NZ. \ No newline at end of file diff --git a/_OMRbibliography/1994/Carter_Conversion_of_the_Haydn_symphonies_into_electronic_form_using_automatic_score_recognition:_A_pilot_study_1994.md b/_OMRbibliography/1994/Carter_Conversion_of_the_Haydn_symphonies_into_electronic_form_using_automatic_score_recognition:_A_pilot_study_1994.md deleted file mode 100644 index 56e233b9..00000000 --- a/_OMRbibliography/1994/Carter_Conversion_of_the_Haydn_symphonies_into_electronic_form_using_automatic_score_recognition:_A_pilot_study_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Carter, Nicholas P. 1994a. “Conversion of the Haydn Symphonies into Electronic Form Using Automatic Score Recognition: A Pilot Study.” In Proceedings of SPIE, 2181:279–90. \ No newline at end of file diff --git a/_OMRbibliography/1994/Carter_Music_score_recognition:_Problems_and_prospects_1994.md b/_OMRbibliography/1994/Carter_Music_score_recognition:_Problems_and_prospects_1994.md deleted file mode 100644 index 4ef05c11..00000000 --- a/_OMRbibliography/1994/Carter_Music_score_recognition:_Problems_and_prospects_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Carter, Nicholas P. 1994b. “Music Score Recognition: Problems and Prospects.” Computing in Musicology 9:152–58. \ No newline at end of file diff --git "a/_OMRbibliography/1994/Co\303\274asnon_Using_grammars_to_segment_and_recognize_music_scores_1994.md" "b/_OMRbibliography/1994/Co\303\274asnon_Using_grammars_to_segment_and_recognize_music_scores_1994.md" deleted file mode 100644 index ef3ab8d9..00000000 --- "a/_OMRbibliography/1994/Co\303\274asnon_Using_grammars_to_segment_and_recognize_music_scores_1994.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Coüasnon, Bertrand, and Jean Camillerapp. 1994. “Using Grammars to Segment and Recognize Music Scores.” In International Association for Pattern Recognition Workshop on Document Analysis Systems, 15–27. \ No newline at end of file diff --git a/_OMRbibliography/1994/Fahmy_A_graph-rewriting_approach_to_discrete_relaxation:_Application_to_music_recognition_1994.md b/_OMRbibliography/1994/Fahmy_A_graph-rewriting_approach_to_discrete_relaxation:_Application_to_music_recognition_1994.md deleted file mode 100644 index 501d5eb4..00000000 --- a/_OMRbibliography/1994/Fahmy_A_graph-rewriting_approach_to_discrete_relaxation:_Application_to_music_recognition_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Fahmy, Hoda, and Dorothea Blostein. 1994. “A Graph-Rewriting Approach to Discrete Relaxation: Application to Music Recognition.” In Proceedings of the SPIE, 2181:291–302. \ No newline at end of file diff --git a/_OMRbibliography/1994/Goolsby_Eye_movement_in_music_reading:_Effects_of_reading_ability,_notational_complexity,_and_encounters_1994.md b/_OMRbibliography/1994/Goolsby_Eye_movement_in_music_reading:_Effects_of_reading_ability,_notational_complexity,_and_encounters_1994.md deleted file mode 100644 index 0837bc01..00000000 --- a/_OMRbibliography/1994/Goolsby_Eye_movement_in_music_reading:_Effects_of_reading_ability,_notational_complexity,_and_encounters_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Goolsby, Thomas W. 1994a. “Eye Movement in Music Reading: Effects of Reading Ability, Notational Complexity, and Encounters.” Music Perception 12 (1):77–96. \ No newline at end of file diff --git a/_OMRbibliography/1994/Goolsby_Profiles_of_processing:_Eye_movements_during_sightreading_1994.md b/_OMRbibliography/1994/Goolsby_Profiles_of_processing:_Eye_movements_during_sightreading_1994.md deleted file mode 100644 index 28fa8340..00000000 --- a/_OMRbibliography/1994/Goolsby_Profiles_of_processing:_Eye_movements_during_sightreading_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Goolsby, Thomas W. 1994b. “Profiles of Processing: Eye Movements during Sightreading.” Music Perception 12 (1):97–123. \ No newline at end of file diff --git a/_OMRbibliography/1994/Lee_Recognition_of_music_scores_using_neural_networks_1994.md b/_OMRbibliography/1994/Lee_Recognition_of_music_scores_using_neural_networks_1994.md deleted file mode 100644 index a28c5d87..00000000 --- a/_OMRbibliography/1994/Lee_Recognition_of_music_scores_using_neural_networks_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Lee, Soo-Young, and J. Shin. 1994. “Recognition of Music Scores Using Neural Networks.” Journal of the Korea Information Science Society 21 (7):1358–66. \ No newline at end of file diff --git a/_OMRbibliography/1994/McGee_Musicreader:_An_interactive_optical_music_recognition_system_1994.md b/_OMRbibliography/1994/McGee_Musicreader:_An_interactive_optical_music_recognition_system_1994.md deleted file mode 100644 index 66da611a..00000000 --- a/_OMRbibliography/1994/McGee_Musicreader:_An_interactive_optical_music_recognition_system_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -McGee, William F. 1994. “Musicreader: An Interactive Optical Music Recognition System.” In Computing in Musicology, 9:146–51. \ No newline at end of file diff --git a/_OMRbibliography/1994/Ng_Reconstruction_of_music_scores_from_primitive_sub-segmentation_1994.md b/_OMRbibliography/1994/Ng_Reconstruction_of_music_scores_from_primitive_sub-segmentation_1994.md deleted file mode 100644 index e5400419..00000000 --- a/_OMRbibliography/1994/Ng_Reconstruction_of_music_scores_from_primitive_sub-segmentation_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Ng, Kia, and Roger David Boyle. 1994. Reconstruction of Music Scores from Primitive Sub-Segmentation. \ No newline at end of file diff --git a/_OMRbibliography/1994/Roth_An_approach_to_recognition_of_printed_music_1994.md b/_OMRbibliography/1994/Roth_An_approach_to_recognition_of_printed_music_1994.md deleted file mode 100644 index 27296fd8..00000000 --- a/_OMRbibliography/1994/Roth_An_approach_to_recognition_of_printed_music_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Roth, Martin. 1994. An Approach to Recognition of Printed Music. Swiss Federal Institute of Technology. \ No newline at end of file diff --git a/_OMRbibliography/1994/Selfridge-Field_How_practical_is_optical_music_recognition_as_an_input_method?_1994.md b/_OMRbibliography/1994/Selfridge-Field_How_practical_is_optical_music_recognition_as_an_input_method?_1994.md deleted file mode 100644 index 3744c6cd..00000000 --- a/_OMRbibliography/1994/Selfridge-Field_How_practical_is_optical_music_recognition_as_an_input_method?_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Selfridge-Field, Eleanor. 1994a. “How Practical Is Optical Music Recognition as an Input Method?” In Computing in Musicology, 9:159–66. 1993–94. \ No newline at end of file diff --git a/_OMRbibliography/1994/Selfridge-Field_Optical_recognition_of_musical_notation:_A_survey_of_current_work_1994.md b/_OMRbibliography/1994/Selfridge-Field_Optical_recognition_of_musical_notation:_A_survey_of_current_work_1994.md deleted file mode 100644 index 70209e35..00000000 --- a/_OMRbibliography/1994/Selfridge-Field_Optical_recognition_of_musical_notation:_A_survey_of_current_work_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Selfridge-Field, Eleanor. 1994b. “Optical Recognition of Musical Notation: A Survey of Current Work.” In Computing in Musicology, 9:109–45. \ No newline at end of file diff --git a/_OMRbibliography/1994/Watkins_A_fuzzy_syntactic_approach_to_recognising_hand-written_music_1994.md b/_OMRbibliography/1994/Watkins_A_fuzzy_syntactic_approach_to_recognising_hand-written_music_1994.md deleted file mode 100644 index c3f3e281..00000000 --- a/_OMRbibliography/1994/Watkins_A_fuzzy_syntactic_approach_to_recognising_hand-written_music_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Watkins, Greg. 1994. “A Fuzzy Syntactic Approach to Recognising Hand-Written Music.” In Proceedings of the International Computer Music Conference, 297–302. \ No newline at end of file diff --git a/_OMRbibliography/1994/Wright_Optical_music_recognition:_A_deterministic,_object-oriented_approach_1994.md b/_OMRbibliography/1994/Wright_Optical_music_recognition:_A_deterministic,_object-oriented_approach_1994.md deleted file mode 100644 index 6e837b5f..00000000 --- a/_OMRbibliography/1994/Wright_Optical_music_recognition:_A_deterministic,_object-oriented_approach_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Wright, D.James. 1994. Optical music recognition: A deterministic, object-oriented approach. University of Victoria. \ No newline at end of file diff --git "a/_OMRbibliography/1994/d'Andecy_D\303\251tecteur_robuste_de_segments-application_l'analyse_de_partitions_musicales_1994.md" "b/_OMRbibliography/1994/d'Andecy_D\303\251tecteur_robuste_de_segments-application_l'analyse_de_partitions_musicales_1994.md" deleted file mode 100644 index eb53f780..00000000 --- "a/_OMRbibliography/1994/d'Andecy_D\303\251tecteur_robuste_de_segments-application_l'analyse_de_partitions_musicales_1994.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Andecy, Vincent Poulain d’, Jean Camillerapp, and Ivan Leplumey. 1994a. “Détecteur robuste de segments-application l’analyse de partitions musicales.” In 9ème Congrès AFCET Reconnaissance des Formes et Intelligence Artificielle. \ No newline at end of file diff --git a/_OMRbibliography/1994/d'Andecy_Kalman_filtering_for_segment_detection:_Application_to_music_scores_analysis_1994.md b/_OMRbibliography/1994/d'Andecy_Kalman_filtering_for_segment_detection:_Application_to_music_scores_analysis_1994.md deleted file mode 100644 index 183adf8d..00000000 --- a/_OMRbibliography/1994/d'Andecy_Kalman_filtering_for_segment_detection:_Application_to_music_scores_analysis_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Andecy, Vincent Poulain d’, Jean Camillerapp, and Ivan Leplumey. 1994b. “Kalman Filtering for Segment Detection: Application to Music Scores Analysis.” In Proceedings of the 12th IAPR International Conference on Pattern Recognition, 301–5. \ No newline at end of file diff --git a/_OMRbibliography/1994/no_author_Musitek_1994.md b/_OMRbibliography/1994/no_author_Musitek_1994.md deleted file mode 100644 index 09a714b9..00000000 --- a/_OMRbibliography/1994/no_author_Musitek_1994.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1994 -year: 1994 ---- - -Musitek. 1994. “Musitek.” Keyboard 20 (3):136. \ No newline at end of file diff --git a/_OMRbibliography/1995/Bainbridge_Optical_music_recognition:_Progress_report_2_1995.md b/_OMRbibliography/1995/Bainbridge_Optical_music_recognition:_Progress_report_2_1995.md deleted file mode 100644 index afacb92f..00000000 --- a/_OMRbibliography/1995/Bainbridge_Optical_music_recognition:_Progress_report_2_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Bainbridge, David. 1995. Optical Music Recognition: Progress Report 2. Department of Computer Science, University of Canterbury, NZ. \ No newline at end of file diff --git a/_OMRbibliography/1995/Baumann_A_simplified_attributed_graph_grammar_for_high-level_music_recognition_1995.md b/_OMRbibliography/1995/Baumann_A_simplified_attributed_graph_grammar_for_high-level_music_recognition_1995.md deleted file mode 100644 index e8d5def9..00000000 --- a/_OMRbibliography/1995/Baumann_A_simplified_attributed_graph_grammar_for_high-level_music_recognition_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Baumann, Stephan. 1995. “A Simplified Attributed Graph Grammar for High-Level Music Recognition.” In Proceedings of the Third International Conference on Document Analysis and Recognition, 2:1080–83. \ No newline at end of file diff --git a/_OMRbibliography/1995/Baumann_Report_of_the_line_drawing_and_music_recognition_working_group_1995.md b/_OMRbibliography/1995/Baumann_Report_of_the_line_drawing_and_music_recognition_working_group_1995.md deleted file mode 100644 index 3766a89e..00000000 --- a/_OMRbibliography/1995/Baumann_Report_of_the_line_drawing_and_music_recognition_working_group_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Baumann, Stephan, and Karl Tombre. 1995. Report of the Line Drawing and Music Recognition Working Group. World Scientific. \ No newline at end of file diff --git a/_OMRbibliography/1995/Capitaine_Automatic_recognition_of_musical_scores_1995.md b/_OMRbibliography/1995/Capitaine_Automatic_recognition_of_musical_scores_1995.md deleted file mode 100644 index 6f81b4cb..00000000 --- a/_OMRbibliography/1995/Capitaine_Automatic_recognition_of_musical_scores_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Capitaine, Thierry, E. Mouaddib, Harold Trannois, and André Lebrun. 1995. “Automatic Recognition of Musical Scores.” In Second Asian Conference on Computer Vision, 1:422–24. \ No newline at end of file diff --git "a/_OMRbibliography/1995/Co\303\274asnon_A_way_to_separate_knowledge_from_program_in_structured_document_analysis:_Application_to_optical_music_recognition_1995.md" "b/_OMRbibliography/1995/Co\303\274asnon_A_way_to_separate_knowledge_from_program_in_structured_document_analysis:_Application_to_optical_music_recognition_1995.md" deleted file mode 100644 index fe412033..00000000 --- "a/_OMRbibliography/1995/Co\303\274asnon_A_way_to_separate_knowledge_from_program_in_structured_document_analysis:_Application_to_optical_music_recognition_1995.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Coüasnon, Bertrand, and Jean Camillerapp. 1995. “A Way to Separate Knowledge from Program in Structured Document Analysis: Application to Optical Music Recognition.” In International Conference on Document Analysis and Recognition, 1092–97. \ No newline at end of file diff --git "a/_OMRbibliography/1995/Co\303\274asnon_Using_a_grammar_for_a_reliable_full_score_recognition_system_1995.md" "b/_OMRbibliography/1995/Co\303\274asnon_Using_a_grammar_for_a_reliable_full_score_recognition_system_1995.md" deleted file mode 100644 index 31ae135b..00000000 --- "a/_OMRbibliography/1995/Co\303\274asnon_Using_a_grammar_for_a_reliable_full_score_recognition_system_1995.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Coüasnon, Bertrand, and Bernard Rétif. 1995a. “Using a Grammar for a Reliable Full Score Recognition System.” In International Computer Music Conference, 187–94. \ No newline at end of file diff --git "a/_OMRbibliography/1995/Co\303\274asnon_Using_logic_programming_languages_for_optical_music_recognition_1995.md" "b/_OMRbibliography/1995/Co\303\274asnon_Using_logic_programming_languages_for_optical_music_recognition_1995.md" deleted file mode 100644 index c5623325..00000000 --- "a/_OMRbibliography/1995/Co\303\274asnon_Using_logic_programming_languages_for_optical_music_recognition_1995.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Coüasnon, Bertrand, Brisset Pascal, and Igor Stephan. 1995. “Using Logic Programming Languages for Optical Music Recognition.” In International Conference on the Practical Application of Prolog, 115–34. \ No newline at end of file diff --git "a/_OMRbibliography/1995/Co\303\274asnon_Utilisation_d'une_grammaire_dans_la_reconnaissance_de_partitions_d'orchestre_1995.md" "b/_OMRbibliography/1995/Co\303\274asnon_Utilisation_d'une_grammaire_dans_la_reconnaissance_de_partitions_d'orchestre_1995.md" deleted file mode 100644 index 71c2be82..00000000 --- "a/_OMRbibliography/1995/Co\303\274asnon_Utilisation_d'une_grammaire_dans_la_reconnaissance_de_partitions_d'orchestre_1995.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Coüasnon, Bertrand, and Bernard Rétif. 1995b. “Utilisation d’une grammaire dans la reconnaissance de partitions d’orchestre.” In Deuxièmes Journées d’Informatique Musicale, 143–52. \ No newline at end of file diff --git a/_OMRbibliography/1995/Homenda_Optical_pattern_recognition_for_printed_music_notation_1995.md b/_OMRbibliography/1995/Homenda_Optical_pattern_recognition_for_printed_music_notation_1995.md deleted file mode 100644 index 1795446d..00000000 --- a/_OMRbibliography/1995/Homenda_Optical_pattern_recognition_for_printed_music_notation_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Homenda, Wladyslaw. 1995. “Optical Pattern Recognition for Printed Music Notation.” In Proceedings of the SPIE, 2490:230–39. \ No newline at end of file diff --git a/_OMRbibliography/1995/Kopec_Markov_source_model_for_printed_music_decoding_1995.md b/_OMRbibliography/1995/Kopec_Markov_source_model_for_printed_music_decoding_1995.md deleted file mode 100644 index 99f6dff5..00000000 --- a/_OMRbibliography/1995/Kopec_Markov_source_model_for_printed_music_decoding_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Kopec, Gary, Philip Chou, and David Maltz. 1995. “Markov Source Model for Printed Music Decoding.” In Proceedings of the SPIE, 2422:115–25. \ No newline at end of file diff --git a/_OMRbibliography/1995/Miyao_Head_and_stem_extraction_from_printed_music_scores_using_a_neural_network_approach_1995.md b/_OMRbibliography/1995/Miyao_Head_and_stem_extraction_from_printed_music_scores_using_a_neural_network_approach_1995.md deleted file mode 100644 index 0a332734..00000000 --- a/_OMRbibliography/1995/Miyao_Head_and_stem_extraction_from_printed_music_scores_using_a_neural_network_approach_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Miyao, Hidetoshi, and Yasuaki Nakano. 1995. “Head and Stem Extraction from Printed Music Scores Using a Neural Network Approach.” In Proceedings of the Third International Conference on Document Analysis Recognition, 1074–79. at Montreal, QC. \ No newline at end of file diff --git a/_OMRbibliography/1995/Ng_Automated_optical_musical_score_recognition_and_its_enhancement_using_high-level_musical_knowledge_1995.md b/_OMRbibliography/1995/Ng_Automated_optical_musical_score_recognition_and_its_enhancement_using_high-level_musical_knowledge_1995.md deleted file mode 100644 index e42e13ec..00000000 --- a/_OMRbibliography/1995/Ng_Automated_optical_musical_score_recognition_and_its_enhancement_using_high-level_musical_knowledge_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Ng, Kia, Roger Boyle, and David Cooper. 1995a. “Automated Optical Musical Score Recognition and Its Enhancement Using High-Level Musical Knowledge.” In Proceedings of the XI Colloquium on Musical Informatics, 167–70. at Bologna, Italy. \ No newline at end of file diff --git a/_OMRbibliography/1995/Ng_Low-_and_high-level_approaches_to_optical_music_score_recognition_1995.md b/_OMRbibliography/1995/Ng_Low-_and_high-level_approaches_to_optical_music_score_recognition_1995.md deleted file mode 100644 index f763c232..00000000 --- a/_OMRbibliography/1995/Ng_Low-_and_high-level_approaches_to_optical_music_score_recognition_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Ng, Kia, Roger Boyle, and David Cooper. 1995b. “Low- and High-Level Approaches to Optical Music Score Recognition.” In IEEE Colloquium on Document Image Processing and Multimedia Environments, 3:1–6. \ No newline at end of file diff --git a/_OMRbibliography/1995/Reed_Optical_music_recognition_1995.md b/_OMRbibliography/1995/Reed_Optical_music_recognition_1995.md deleted file mode 100644 index cd98d685..00000000 --- a/_OMRbibliography/1995/Reed_Optical_music_recognition_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Reed, Todd K. 1995. Optical Music Recognition. University of Calgary. \ No newline at end of file diff --git a/_OMRbibliography/1995/Seales_Interpreting_music_manuscripts:_A_logic-based,_object-oriented_approach_1995.md b/_OMRbibliography/1995/Seales_Interpreting_music_manuscripts:_A_logic-based,_object-oriented_approach_1995.md deleted file mode 100644 index 13155af1..00000000 --- a/_OMRbibliography/1995/Seales_Interpreting_music_manuscripts:_A_logic-based,_object-oriented_approach_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Seales, William, and Arcot Rajasekar. 1995. “Interpreting Music Manuscripts: A Logic-Based, Object-Oriented Approach.” In Proceedings of the Third International Computer Science Conference on Image Analysis Applications and Computer Graphics, 181–88. \ No newline at end of file diff --git a/_OMRbibliography/1995/Wilk_Converting_graphic_musical_data_to_a_machine_playable_form_1995.md b/_OMRbibliography/1995/Wilk_Converting_graphic_musical_data_to_a_machine_playable_form_1995.md deleted file mode 100644 index 3a3ab041..00000000 --- a/_OMRbibliography/1995/Wilk_Converting_graphic_musical_data_to_a_machine_playable_form_1995.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1995 -year: 1995 ---- - -Wilk, Randy. 1995. Converting Graphic Musical Data to a Machine Playable Form. McGill University. \ No newline at end of file diff --git a/_OMRbibliography/1996/Anstice_The_design_of_a_pen-based_musical_input_system_1996.md b/_OMRbibliography/1996/Anstice_The_design_of_a_pen-based_musical_input_system_1996.md deleted file mode 100644 index affbac59..00000000 --- a/_OMRbibliography/1996/Anstice_The_design_of_a_pen-based_musical_input_system_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Anstice, Jamie, Tim Bell, Andy Cockburn, and Martin Setchell. 1996. “The Design of a Pen-Based Musical Input System.” In Proceedings Sixth Australian Conference on Computer-Human Interaction, 260–67. \ No newline at end of file diff --git a/_OMRbibliography/1996/Bainbridge_An_extensible_optical_music_recognition_system_1996.md b/_OMRbibliography/1996/Bainbridge_An_extensible_optical_music_recognition_system_1996.md deleted file mode 100644 index 0f3064fb..00000000 --- a/_OMRbibliography/1996/Bainbridge_An_extensible_optical_music_recognition_system_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Bainbridge, David, and Tim Bell. 1996. “An Extensible Optical Music Recognition System.” Australian Computer Science Communications 18 (1):308–17. \ No newline at end of file diff --git a/_OMRbibliography/1996/Bainbridge_Optical_music_recognition:_A_generalised_approach_1996.md b/_OMRbibliography/1996/Bainbridge_Optical_music_recognition:_A_generalised_approach_1996.md deleted file mode 100644 index 0b4dfd44..00000000 --- a/_OMRbibliography/1996/Bainbridge_Optical_music_recognition:_A_generalised_approach_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Bainbridge, David. 1996. “Optical Music Recognition: A Generalised Approach.” In Proceedings of the Second New Zealand Computer Science Graduate Conference. \ No newline at end of file diff --git a/_OMRbibliography/1996/Cho_Recognition_of_piano_score_using_skeletal_lines_and_run-length_information_1996.md b/_OMRbibliography/1996/Cho_Recognition_of_piano_score_using_skeletal_lines_and_run-length_information_1996.md deleted file mode 100644 index 2187a593..00000000 --- a/_OMRbibliography/1996/Cho_Recognition_of_piano_score_using_skeletal_lines_and_run-length_information_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Cho, Kyung Eun Cho, (K)Huyng Je. 1996. “Recognition of Piano Score Using Skeletal Lines and Run-Length Information.” Journal of KISS(C) (Computing Practices) 2 (4):461–73. \ No newline at end of file diff --git "a/_OMRbibliography/1996/Co\303\274asnon_Formalisation_grammaticale_de_la_connaissance_a_priori_pour_l'analyse_de_documents:_Application_aux_partitions_d'orchestre_1996.md" "b/_OMRbibliography/1996/Co\303\274asnon_Formalisation_grammaticale_de_la_connaissance_a_priori_pour_l'analyse_de_documents:_Application_aux_partitions_d'orchestre_1996.md" deleted file mode 100644 index 4c3d1283..00000000 --- "a/_OMRbibliography/1996/Co\303\274asnon_Formalisation_grammaticale_de_la_connaissance_a_priori_pour_l'analyse_de_documents:_Application_aux_partitions_d'orchestre_1996.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Coüasnon, Bertrand. 1996. “Formalisation grammaticale de la connaissance a priori pour l’analyse de documents: Application aux partitions d’orchestre.” In Reconnaissance des Formes et Intelligence Artificielle, 465–74. \ No newline at end of file diff --git a/_OMRbibliography/1996/Fujinaga_Adaptive_optical_music_recognition_1996.md b/_OMRbibliography/1996/Fujinaga_Adaptive_optical_music_recognition_1996.md deleted file mode 100644 index c48f9d78..00000000 --- a/_OMRbibliography/1996/Fujinaga_Adaptive_optical_music_recognition_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Fujinaga, Ichiro. 1996a. “Adaptive Optical Music Recognition.” IEEE Transactions on Systems, Man, and Cybernetics. \ No newline at end of file diff --git a/_OMRbibliography/1996/Fujinaga_Exemplar-based_learning_in_adaptive_optical_music_recognition_system_1996.md b/_OMRbibliography/1996/Fujinaga_Exemplar-based_learning_in_adaptive_optical_music_recognition_system_1996.md deleted file mode 100644 index 967b1b40..00000000 --- a/_OMRbibliography/1996/Fujinaga_Exemplar-based_learning_in_adaptive_optical_music_recognition_system_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Fujinaga, Ichiro. 1996b. “Exemplar-Based Learning in Adaptive Optical Music Recognition System.” In International Computer Music Conference, 55–56. \ No newline at end of file diff --git a/_OMRbibliography/1996/Grande_The_Development_of_the_Notation_Interchange_File_Format_1996.md b/_OMRbibliography/1996/Grande_The_Development_of_the_Notation_Interchange_File_Format_1996.md deleted file mode 100644 index 2297cd87..00000000 --- a/_OMRbibliography/1996/Grande_The_Development_of_the_Notation_Interchange_File_Format_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Grande, Cindy, and Alan Belkin. 1996. “The Development of the Notation Interchange File Format.” Computer Music Journal 20 (4):33. https://doi.org/10.2307/3680416. \ No newline at end of file diff --git a/_OMRbibliography/1996/Homenda_Automatic_recognition_of_printed_music_and_its_conversion_into_playable_music_data_1996.md b/_OMRbibliography/1996/Homenda_Automatic_recognition_of_printed_music_and_its_conversion_into_playable_music_data_1996.md deleted file mode 100644 index 1fbca6b4..00000000 --- a/_OMRbibliography/1996/Homenda_Automatic_recognition_of_printed_music_and_its_conversion_into_playable_music_data_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Homenda, Wladyslaw. 1996. “Automatic recognition of printed music and its conversion into playable music data.” Control and Cybernetics 25 (2):353–67. \ No newline at end of file diff --git a/_OMRbibliography/1996/Miyao_Note_symbol_extraction_for_printed_piano_scores_using_neural_networks_1996.md b/_OMRbibliography/1996/Miyao_Note_symbol_extraction_for_printed_piano_scores_using_neural_networks_1996.md deleted file mode 100644 index ba9c0267..00000000 --- a/_OMRbibliography/1996/Miyao_Note_symbol_extraction_for_printed_piano_scores_using_neural_networks_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Miyao, Hidetoshi, and Yasuaki Nakano. 1996. “Note Symbol Extraction for Printed Piano Scores Using Neural Networks.” IEICE Transactions on Information and Systems 79 (5):548–54. \ No newline at end of file diff --git a/_OMRbibliography/1996/Modayur_Music_score_recognition:_A_selective_attention_approach_using_mathematical_morphology_1996.md b/_OMRbibliography/1996/Modayur_Music_score_recognition:_A_selective_attention_approach_using_mathematical_morphology_1996.md deleted file mode 100644 index cc30bf36..00000000 --- a/_OMRbibliography/1996/Modayur_Music_score_recognition:_A_selective_attention_approach_using_mathematical_morphology_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Modayur, Bharath. 1996. “Music Score Recognition: A Selective Attention Approach Using Mathematical Morphology.” EE Dept, FT-10 University of Washington: Intelligent Systems Laboratory. \ No newline at end of file diff --git a/_OMRbibliography/1996/Ng_Handwritten_music_manuscript_recognition_1996.md b/_OMRbibliography/1996/Ng_Handwritten_music_manuscript_recognition_1996.md deleted file mode 100644 index 48fed1aa..00000000 --- a/_OMRbibliography/1996/Ng_Handwritten_music_manuscript_recognition_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Ng, Kia, Roger Boyle, and David Cooper. 1996. “Handwritten Music Manuscript Recognition.” In Proceedings of the International Computer Music Conference, 354–57. at Hong Kong, China. \ No newline at end of file diff --git a/_OMRbibliography/1996/Ng_Recognition_and_reconstruction_of_primitives_in_music_scores_1996.md b/_OMRbibliography/1996/Ng_Recognition_and_reconstruction_of_primitives_in_music_scores_1996.md deleted file mode 100644 index a685111e..00000000 --- a/_OMRbibliography/1996/Ng_Recognition_and_reconstruction_of_primitives_in_music_scores_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Ng, Kia, and Roger David Boyle. 1996. “Recognition and Reconstruction of Primitives in Music Scores.” Image and Vision Computing 14 (1):39–46. \ No newline at end of file diff --git a/_OMRbibliography/1996/Reed_Automatic_computer_recognition_of_printed_music_1996.md b/_OMRbibliography/1996/Reed_Automatic_computer_recognition_of_printed_music_1996.md deleted file mode 100644 index f6a70639..00000000 --- a/_OMRbibliography/1996/Reed_Automatic_computer_recognition_of_printed_music_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Reed, Todd K., and James Parker. 1996. “Automatic Computer Recognition of Printed Music.” In 13th International Conference on Pattern Recognition, 3:803–7. \ No newline at end of file diff --git a/_OMRbibliography/1996/Yadid-Pecht_Recognition_of_handwritten_musical_notes_by_a_modified_neocognitron_1996.md b/_OMRbibliography/1996/Yadid-Pecht_Recognition_of_handwritten_musical_notes_by_a_modified_neocognitron_1996.md deleted file mode 100644 index 641631e1..00000000 --- a/_OMRbibliography/1996/Yadid-Pecht_Recognition_of_handwritten_musical_notes_by_a_modified_neocognitron_1996.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1996 -year: 1996 ---- - -Yadid-Pecht, Orly, Moti Gerner, Lior Dvir, Eliyahu Brutman, and Uri Shimony. 1996. “Recognition of Handwritten Musical Notes by a Modified Neocognitron.” In Machine Vision and Applications, 9:65–72. 2. \ No newline at end of file diff --git a/_OMRbibliography/1997/Bainbridge_Automatic_reading_of_music_notation,_Handbook_of_character_recognition_and_document_image_analysis_1997.md b/_OMRbibliography/1997/Bainbridge_Automatic_reading_of_music_notation,_Handbook_of_character_recognition_and_document_image_analysis_1997.md deleted file mode 100644 index c734181a..00000000 --- a/_OMRbibliography/1997/Bainbridge_Automatic_reading_of_music_notation,_Handbook_of_character_recognition_and_document_image_analysis_1997.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1997 -year: 1997 ---- - -Bainbridge, David, and Nicholas Carter. 1997. Automatic Reading of Music Notation, Handbook of Character Recognition and Document Image Analysis. Edited by Horst Bunke and and Patrick Wang. Singapore: World Scientific. \ No newline at end of file diff --git a/_OMRbibliography/1997/Bainbridge_Dealing_with_superimposed_objects_in_optical_music_recognition_1997.md b/_OMRbibliography/1997/Bainbridge_Dealing_with_superimposed_objects_in_optical_music_recognition_1997.md deleted file mode 100644 index 9ae3f539..00000000 --- a/_OMRbibliography/1997/Bainbridge_Dealing_with_superimposed_objects_in_optical_music_recognition_1997.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1997 -year: 1997 ---- - -Bainbridge, David, and Tim Bell. 1997. “Dealing with Superimposed Objects in Optical Music Recognition.” In Proceedings of the Sixth International Conference on Image Processing and Its Applications, 756–60. \ No newline at end of file diff --git a/_OMRbibliography/1997/Beran_Rozpoznavani_notoveho_zapisu_(in_czech)_1997.md b/_OMRbibliography/1997/Beran_Rozpoznavani_notoveho_zapisu_(in_czech)_1997.md deleted file mode 100644 index 2110bd41..00000000 --- a/_OMRbibliography/1997/Beran_Rozpoznavani_notoveho_zapisu_(in_czech)_1997.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1997 -year: 1997 ---- - -Beran, Tomáš. 1997. Rozpoznavani notoveho zapisu (in czech). Czech Technical University. \ No newline at end of file diff --git a/_OMRbibliography/1997/Sokei_Study_of_recognition_for_okinawa_syamisen_score_kunkunsi_1997.md b/_OMRbibliography/1997/Sokei_Study_of_recognition_for_okinawa_syamisen_score_kunkunsi_1997.md deleted file mode 100644 index 8ffc8e53..00000000 --- a/_OMRbibliography/1997/Sokei_Study_of_recognition_for_okinawa_syamisen_score_kunkunsi_1997.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1997 -year: 1997 ---- - -Sokei, Sanetoshi, Tsuyoshi Yamashiro, Zensei Iha, and Minoru Toguchi. 1997. Study of recognition for okinawa syamisen score kunkunsi. \ No newline at end of file diff --git "a/_OMRbibliography/1997/St\303\274ckelberg_A_preview_of_an_architecture_for_musical_score_recognition_1997.md" "b/_OMRbibliography/1997/St\303\274ckelberg_A_preview_of_an_architecture_for_musical_score_recognition_1997.md" deleted file mode 100644 index 6ed80849..00000000 --- "a/_OMRbibliography/1997/St\303\274ckelberg_A_preview_of_an_architecture_for_musical_score_recognition_1997.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1997 -year: 1997 ---- - -Stückelberg, Marc, Christian Pellegrini, and Mélanie Hillario. 1997. A Preview of an Architecture for Musical Score Recognition. CUI, University of Geneva, Geneva, Switzerland. \ No newline at end of file diff --git "a/_OMRbibliography/1997/St\303\274ckelberg_An_architecture_for_musical_score_recognition_using_high-level_domain_knowledge_1997.md" "b/_OMRbibliography/1997/St\303\274ckelberg_An_architecture_for_musical_score_recognition_using_high-level_domain_knowledge_1997.md" deleted file mode 100644 index 3ec4d3cc..00000000 --- "a/_OMRbibliography/1997/St\303\274ckelberg_An_architecture_for_musical_score_recognition_using_high-level_domain_knowledge_1997.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1997 -year: 1997 ---- - -Stückelberg, Marc, Christian Pellegrini, and Mélanie Hilario. 1997. “An Architecture for Musical Score Recognition Using High-Level Domain Knowledge.” In Proceedings of the Fourth International Conference on Document Analysis and Recognition, 2:813–18. \ No newline at end of file diff --git a/_OMRbibliography/1998/Bainbridge_Musical_image_compression_1998.md b/_OMRbibliography/1998/Bainbridge_Musical_image_compression_1998.md deleted file mode 100644 index fb6f957c..00000000 --- a/_OMRbibliography/1998/Bainbridge_Musical_image_compression_1998.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1998 -year: 1998 ---- - -Bainbridge, David, and Stuart Inglis. 1998. “Musical Image Compression.” In Proceedings of the Data Compression Conference, at Snowbird, 209–18. UT. \ No newline at end of file diff --git a/_OMRbibliography/1998/Chhabra_Graphic_symbol_recognition:_An_overview,_Graphics_recognition_algorithms_and_systems_1998.md b/_OMRbibliography/1998/Chhabra_Graphic_symbol_recognition:_An_overview,_Graphics_recognition_algorithms_and_systems_1998.md deleted file mode 100644 index 8201834a..00000000 --- a/_OMRbibliography/1998/Chhabra_Graphic_symbol_recognition:_An_overview,_Graphics_recognition_algorithms_and_systems_1998.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1998 -year: 1998 ---- - -Chhabra, Atul. 1998. Graphic symbol recognition: An overview, Graphics recognition algorithms and systems. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/1998/Fahmy_A_graph-rewriting_paradigm_for_discrete_relaxation:_Application_to_sheet-music_recognition_1998.md b/_OMRbibliography/1998/Fahmy_A_graph-rewriting_paradigm_for_discrete_relaxation:_Application_to_sheet-music_recognition_1998.md deleted file mode 100644 index 89e08709..00000000 --- a/_OMRbibliography/1998/Fahmy_A_graph-rewriting_paradigm_for_discrete_relaxation:_Application_to_sheet-music_recognition_1998.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1998 -year: 1998 ---- - -Fahmy, Hoda, and Dorothea Blostein. 1998. “A Graph-Rewriting Paradigm for Discrete Relaxation: Application to Sheet-Music Recognition.” International Journal of Pattern Recognition and Artificial Intelligence 12 (6):763–99. \ No newline at end of file diff --git a/_OMRbibliography/1998/Ferrand_Scheduling_to_reduce_uncertainty_in_syntactical_music_structures_1998.md b/_OMRbibliography/1998/Ferrand_Scheduling_to_reduce_uncertainty_in_syntactical_music_structures_1998.md deleted file mode 100644 index 9d8b18de..00000000 --- a/_OMRbibliography/1998/Ferrand_Scheduling_to_reduce_uncertainty_in_syntactical_music_structures_1998.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1998 -year: 1998 ---- - -Ferrand, Miguel, and Amilcar Cardoso. 1998. “Scheduling to Reduce Uncertainty in Syntactical Music Structures.” In 14th Brazilian Symposium on Artificial Intelligence, 249–58. \ No newline at end of file diff --git a/_OMRbibliography/1998/Fujinaga_Implementation_of_exemplar-based_learning_model_for_music_cognition_1998.md b/_OMRbibliography/1998/Fujinaga_Implementation_of_exemplar-based_learning_model_for_music_cognition_1998.md deleted file mode 100644 index 29c70d97..00000000 --- a/_OMRbibliography/1998/Fujinaga_Implementation_of_exemplar-based_learning_model_for_music_cognition_1998.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1998 -year: 1998 ---- - -Fujinaga, Ichiro, S. Moore, and D. Sullivan. 1998. “Implementation of Exemplar-Based Learning Model for Music Cognition.” In Proceedings of the International Conference on Music Perception and Cognition, 171–79. at Seoul, South Korea. \ No newline at end of file diff --git a/_OMRbibliography/1998/Kinoshita_Note_recognition_using_statistical_information_of_musical_note_transitions_1998.md b/_OMRbibliography/1998/Kinoshita_Note_recognition_using_statistical_information_of_musical_note_transitions_1998.md deleted file mode 100644 index b42d9043..00000000 --- a/_OMRbibliography/1998/Kinoshita_Note_recognition_using_statistical_information_of_musical_note_transitions_1998.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1998 -year: 1998 ---- - -Kinoshita, Tomoyoshi, Hideya Muraoka, and Hidehiko Tanaka. 1998. “Note Recognition Using Statistical Information of Musical Note Transitions.” Journal of the Acoustical Society of Japan 54 (3):190–98. \ No newline at end of file diff --git a/_OMRbibliography/1998/Leite_Riem:_A_system_for_recognition_and_interpretation_of_music_writing_(in_Portuguese)_1998.md b/_OMRbibliography/1998/Leite_Riem:_A_system_for_recognition_and_interpretation_of_music_writing_(in_Portuguese)_1998.md deleted file mode 100644 index 3186c153..00000000 --- a/_OMRbibliography/1998/Leite_Riem:_A_system_for_recognition_and_interpretation_of_music_writing_(in_Portuguese)_1998.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1998 -year: 1998 ---- - -Leite, João, Miguel Ferrand, and Amilcar Cardoso. 1998. Riem: A system for recognition and interpretation of music writing (in Portuguese). Dept. Engenharia Informatica, Faculdade de Cincias e Tecnologia, Universidade de Coimbra. \ No newline at end of file diff --git a/_OMRbibliography/1998/Sawaki_A_study_on_Syakuhachi_score_recognition_with_embedded_symbols_1998.md b/_OMRbibliography/1998/Sawaki_A_study_on_Syakuhachi_score_recognition_with_embedded_symbols_1998.md deleted file mode 100644 index 4455019a..00000000 --- a/_OMRbibliography/1998/Sawaki_A_study_on_Syakuhachi_score_recognition_with_embedded_symbols_1998.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1998 -year: 1998 ---- - -Sawaki, Minako, Hiroshi Murasei, Norihiro Hagita, and Kenichiro Ishii. 1998. “A Study on Syakuhachi Score Recognition with Embedded Symbols.” Transactions of the Institute of Electronics, Information and Communication Engineers 81 (10):2480–82. \ No newline at end of file diff --git a/_OMRbibliography/1999/Bainbridge_Bulk_processing_of_optically_scanned_music_1999.md b/_OMRbibliography/1999/Bainbridge_Bulk_processing_of_optically_scanned_music_1999.md deleted file mode 100644 index 5af11b59..00000000 --- a/_OMRbibliography/1999/Bainbridge_Bulk_processing_of_optically_scanned_music_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Bainbridge, David, and Kadir Wijaya. 1999. “Bulk Processing of Optically Scanned Music.” In Proceedings of the Seventh International Conference on Image Processing and Its Applications, 474–78. Manchester, UK. \ No newline at end of file diff --git a/_OMRbibliography/1999/Bainbridge_Towards_a_digital_library_of_popular_music_1999.md b/_OMRbibliography/1999/Bainbridge_Towards_a_digital_library_of_popular_music_1999.md deleted file mode 100644 index 42b99955..00000000 --- a/_OMRbibliography/1999/Bainbridge_Towards_a_digital_library_of_popular_music_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Bainbridge, David, Craig Nevill-Manning, Ian Witten, Lloyd Smith, and Rodger McNab. 1999. “Towards a Digital Library of Popular Music.” In Proceedings of the ACM Conference on Digital Libraries, 161–69. Berkeley, CA. \ No newline at end of file diff --git a/_OMRbibliography/1999/Beran_Recognition_of_printed_music_score_1999.md b/_OMRbibliography/1999/Beran_Recognition_of_printed_music_score_1999.md deleted file mode 100644 index 28c96bc0..00000000 --- a/_OMRbibliography/1999/Beran_Recognition_of_printed_music_score_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Beran, Tomáš, and Tomáš Macek. 1999. “Recognition of Printed Music Score.” In Machine Learning and Data Mining in Pattern Recognition. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/1999/Beran_Rozpoznavani_notoveho_zapisu_(in_Czech)_1999.md b/_OMRbibliography/1999/Beran_Rozpoznavani_notoveho_zapisu_(in_Czech)_1999.md deleted file mode 100644 index 3a699682..00000000 --- a/_OMRbibliography/1999/Beran_Rozpoznavani_notoveho_zapisu_(in_Czech)_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Beran, Tomáš. 1999. Rozpoznavani notoveho zapisu (in Czech). Czech Technical University. \ No newline at end of file diff --git a/_OMRbibliography/1999/Blostein_Using_diagram_generation_software_to_improve_diagram_recognition:_A_case_study_of_music_notation_1999.md b/_OMRbibliography/1999/Blostein_Using_diagram_generation_software_to_improve_diagram_recognition:_A_case_study_of_music_notation_1999.md deleted file mode 100644 index adce1bfa..00000000 --- a/_OMRbibliography/1999/Blostein_Using_diagram_generation_software_to_improve_diagram_recognition:_A_case_study_of_music_notation_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Blostein, Dorothea, and Lippold Haken. 1999. “Using Diagram Generation Software to Improve Diagram Recognition: A Case Study of Music Notation.” IEEE Transactions on Pattern Analysis and Machine Intelligence 21 (11):1121–36. \ No newline at end of file diff --git a/_OMRbibliography/1999/Ferrand_Hypothetical_reasoning:_An_application_to_optical_music_recognition_1999.md b/_OMRbibliography/1999/Ferrand_Hypothetical_reasoning:_An_application_to_optical_music_recognition_1999.md deleted file mode 100644 index 4b6b8b4a..00000000 --- a/_OMRbibliography/1999/Ferrand_Hypothetical_reasoning:_An_application_to_optical_music_recognition_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Ferrand, Miguel, João Alexandre Leite, and Amilcar Cardoso. 1999a. “Hypothetical Reasoning: An Application to Optical Music Recognition.” In Proceedings of the Joint Conference on Declarative Programming, 367–81. at Aquila, Italy. \ No newline at end of file diff --git a/_OMRbibliography/1999/Ferrand_Improving_optical_music_recognition_by_means_of_abductive_constraint_logic_programming_1999.md b/_OMRbibliography/1999/Ferrand_Improving_optical_music_recognition_by_means_of_abductive_constraint_logic_programming_1999.md deleted file mode 100644 index 2600c05b..00000000 --- a/_OMRbibliography/1999/Ferrand_Improving_optical_music_recognition_by_means_of_abductive_constraint_logic_programming_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Ferrand, Miguel, João Alexandre Leite, and Amilcar Cardoso. 1999b. “Improving Optical Music Recognition by Means of Abductive Constraint Logic Programming.” In Progress in Artificial Intelligence. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/1999/Hori_Automatic_music_score_recognition_play_system_based_on_decision_based_neural_network_1999.md b/_OMRbibliography/1999/Hori_Automatic_music_score_recognition_play_system_based_on_decision_based_neural_network_1999.md deleted file mode 100644 index d080fb95..00000000 --- a/_OMRbibliography/1999/Hori_Automatic_music_score_recognition_play_system_based_on_decision_based_neural_network_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Hori, Toyokazu, Sinichiro Wada, Tai Howzan, Sun-Yuan D.E. Kung, K. Bastiaan, and W. 1999. “Automatic Music Score Recognition/Play System Based on Decision Based Neural Network.” In Proceedings of the Third Workshop on Multimedia Signal Processing, 183–84. \ No newline at end of file diff --git a/_OMRbibliography/1999/Marinai_Projection_based_segmentation_of_musical_sheets_1999.md b/_OMRbibliography/1999/Marinai_Projection_based_segmentation_of_musical_sheets_1999.md deleted file mode 100644 index e9738fe5..00000000 --- a/_OMRbibliography/1999/Marinai_Projection_based_segmentation_of_musical_sheets_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Marinai, Simone, and Paolo Nesi. 1999. “Projection Based Segmentation of Musical Sheets.” In Proceedings of the International Conference on Document Analysis and Recognition, 515–18. at Bangalore, India. \ No newline at end of file diff --git a/_OMRbibliography/1999/Mosterd_Developing_A_New_Way_To_Transfer_Sheet_Music_Via_The_Internet_1999.md b/_OMRbibliography/1999/Mosterd_Developing_A_New_Way_To_Transfer_Sheet_Music_Via_The_Internet_1999.md deleted file mode 100644 index 99b914ab..00000000 --- a/_OMRbibliography/1999/Mosterd_Developing_A_New_Way_To_Transfer_Sheet_Music_Via_The_Internet_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Mosterd, Eric. 1999. “Developing A New Way To Transfer Sheet Music Via The Internet.” University of South Dakota. https://mosterd.org/coursework/csc/thesis/thesis.pdf. \ No newline at end of file diff --git a/_OMRbibliography/1999/Ng_Embracing_the_composer:_Optical_recognition_of_hand-written_manuscripts_1999.md b/_OMRbibliography/1999/Ng_Embracing_the_composer:_Optical_recognition_of_hand-written_manuscripts_1999.md deleted file mode 100644 index 5bb12f71..00000000 --- a/_OMRbibliography/1999/Ng_Embracing_the_composer:_Optical_recognition_of_hand-written_manuscripts_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Ng, Kia, David Cooper, Ewan Stefani, Roger Boyle, and Nick Bailey. 1999. “Embracing the Composer: Optical Recognition of Hand-Written Manuscripts.” In Proceedings of the International Computer Music Conference, 500–503. at Beijing, China. \ No newline at end of file diff --git "a/_OMRbibliography/1999/St\303\274ckelberg_Musical_score_recognition_using_probabilistic_inference_1999.md" "b/_OMRbibliography/1999/St\303\274ckelberg_Musical_score_recognition_using_probabilistic_inference_1999.md" deleted file mode 100644 index c7f5b8db..00000000 --- "a/_OMRbibliography/1999/St\303\274ckelberg_Musical_score_recognition_using_probabilistic_inference_1999.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Stückelberg, Marc. 1999. Musical Score Recognition Using Probabilistic Inference. \ No newline at end of file diff --git "a/_OMRbibliography/1999/St\303\274ckelberg_On_musical_score_recognition_using_probabilistic_reasoning_1999.md" "b/_OMRbibliography/1999/St\303\274ckelberg_On_musical_score_recognition_using_probabilistic_reasoning_1999.md" deleted file mode 100644 index 76203ea4..00000000 --- "a/_OMRbibliography/1999/St\303\274ckelberg_On_musical_score_recognition_using_probabilistic_reasoning_1999.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Stückelberg, Marc, and David Doermann. 1999. “On Musical Score Recognition Using Probabilistic Reasoning.” In Proceedings of the Fifth International Conference on Document Analysis and Recognition, 115–18. at Bangalore India. \ No newline at end of file diff --git a/_OMRbibliography/1999/Wijaya_Staff_line_restoration_1999.md b/_OMRbibliography/1999/Wijaya_Staff_line_restoration_1999.md deleted file mode 100644 index c1ac7077..00000000 --- a/_OMRbibliography/1999/Wijaya_Staff_line_restoration_1999.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 1999 -year: 1999 ---- - -Wijaya, Kenny, and David Bainbridge. 1999. “Staff Line Restoration.” In Seventh International Conference on Image Processing and Its Applications, 2:760–64. \ No newline at end of file diff --git a/_OMRbibliography/2000/Anquetil_A_symbol_classifier_able_to_reject_wrong_shapes_for_document_recognition_systems._Graphics_Recognition_Recent_Advances_2000.md b/_OMRbibliography/2000/Anquetil_A_symbol_classifier_able_to_reject_wrong_shapes_for_document_recognition_systems._Graphics_Recognition_Recent_Advances_2000.md deleted file mode 100644 index 990d4fd7..00000000 --- a/_OMRbibliography/2000/Anquetil_A_symbol_classifier_able_to_reject_wrong_shapes_for_document_recognition_systems._Graphics_Recognition_Recent_Advances_2000.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2000 -year: 2000 ---- - -Anquetil, Éric, and Bertrand Coüasnon. 2000. A Symbol Classifier Able to Reject Wrong Shapes for Document Recognition Systems. Graphics Recognition Recent Advances. Edited by Frédéric Dambreville, Atul K. Chhabra, and Dov Dori. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2000/Caldas_Ancient_music_recovery_for_digital_libraries_2000.md b/_OMRbibliography/2000/Caldas_Ancient_music_recovery_for_digital_libraries_2000.md deleted file mode 100644 index 0cb1b369..00000000 --- a/_OMRbibliography/2000/Caldas_Ancient_music_recovery_for_digital_libraries_2000.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2000 -year: 2000 ---- - -Caldas, Pinto, Pedro Vieira João, Mário Ramalho, Megan Mengucci, Pedro Pina, and Fernando Muge. 2000. “Ancient Music Recovery for Digital Libraries.” In Research and Advanced Technology for Digital Libraries. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2000/Choudhury_Digital_workflow_management:_The_Lester_s._Levy_digitized_collection_of_sheet_music_2000.md b/_OMRbibliography/2000/Choudhury_Digital_workflow_management:_The_Lester_s._Levy_digitized_collection_of_sheet_music_2000.md deleted file mode 100644 index 84c726ee..00000000 --- a/_OMRbibliography/2000/Choudhury_Digital_workflow_management:_The_Lester_s._Levy_digitized_collection_of_sheet_music_2000.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2000 -year: 2000 ---- - -Choudhury, G.Sayeed, Cynthia Requardt, Ichiro Fujinaga, Tim DiLauro, Elizabeth W. Brown, James W. Warner, and Brian Harrington. 2000. “Digital Workflow Management: The Lester s. Levy Digitized Collection of Sheet Music.” First Monday 5 (6). \ No newline at end of file diff --git a/_OMRbibliography/2000/Choudhury_Optical_music_recognition_system_within_a_large-scale_digitization_project_2000.md b/_OMRbibliography/2000/Choudhury_Optical_music_recognition_system_within_a_large-scale_digitization_project_2000.md deleted file mode 100644 index e6c3b229..00000000 --- a/_OMRbibliography/2000/Choudhury_Optical_music_recognition_system_within_a_large-scale_digitization_project_2000.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2000 -year: 2000 ---- - -Choudhury, G.Sayeed, Tim DiLauro, Michael Droettboom, Ichiro Fujinaga, Brian Harrington, and Karl MacMillan. 2000. “Optical Music Recognition System within a Large-Scale Digitization Project.” In Proceedings of the Proceedings ISMIR 00. \ No newline at end of file diff --git a/_OMRbibliography/2000/Cordella_Symbol_and_shape_recognition,_Graphics_recognition_recent_advances_2000.md b/_OMRbibliography/2000/Cordella_Symbol_and_shape_recognition,_Graphics_recognition_recent_advances_2000.md deleted file mode 100644 index d4ef189f..00000000 --- a/_OMRbibliography/2000/Cordella_Symbol_and_shape_recognition,_Graphics_recognition_recent_advances_2000.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2000 -year: 2000 ---- - -Cordella, Luigi, and Mari Vento. 2000. Symbol and Shape Recognition, Graphics Recognition Recent Advances. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2000/Fotinea_An_optical_notation_recognition_soystem_for_printed_music_based_on_template_matching_and_high_level_reasoning_2000.md b/_OMRbibliography/2000/Fotinea_An_optical_notation_recognition_soystem_for_printed_music_based_on_template_matching_and_high_level_reasoning_2000.md deleted file mode 100644 index 2d80c9e4..00000000 --- a/_OMRbibliography/2000/Fotinea_An_optical_notation_recognition_soystem_for_printed_music_based_on_template_matching_and_high_level_reasoning_2000.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2000 -year: 2000 ---- - -Fotinea, Stavroula-Evita, George Giakoupis, Aggelos Liveris, Stylianos Bakamidis, and George Carayannis. 2000. “An Optical Notation Recognition Soystem for Printed Music Based on Template Matching and High Level Reasoning.” In Proceedings of the Sixth Recherche d’Informations Assiste Par Ordinateur. at Paris, France. \ No newline at end of file diff --git a/_OMRbibliography/2000/Miyao_Format_of_ground_truth_data_used_in_the_evaluation_of_the_results_of_an_optical_music_recognition_system_2000.md b/_OMRbibliography/2000/Miyao_Format_of_ground_truth_data_used_in_the_evaluation_of_the_results_of_an_optical_music_recognition_system_2000.md deleted file mode 100644 index 53f01f6d..00000000 --- a/_OMRbibliography/2000/Miyao_Format_of_ground_truth_data_used_in_the_evaluation_of_the_results_of_an_optical_music_recognition_system_2000.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2000 -year: 2000 ---- - -Miyao, Hidetoshi, and Robert Haralick. 2000. “Format of Ground Truth Data Used in the Evaluation of the Results of an Optical Music Recognition System.” In Proceedings of the IAPR Workshop on Document Analysis Systems, 497–506. at Rio de Janeiro, Brazil. \ No newline at end of file diff --git a/_OMRbibliography/2000/Muge_Automatic_feature_extraction_and_recognition_for_digital_access_of_books_of_the_Renaissance_2000.md b/_OMRbibliography/2000/Muge_Automatic_feature_extraction_and_recognition_for_digital_access_of_books_of_the_Renaissance_2000.md deleted file mode 100644 index 9dc3d711..00000000 --- a/_OMRbibliography/2000/Muge_Automatic_feature_extraction_and_recognition_for_digital_access_of_books_of_the_Renaissance_2000.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2000 -year: 2000 ---- - -Muge, Fernando, I. Granado, Megan Mengucci, Pedro Pina, Vitorino Ramos, Nikolay Sirakov, João Caldas Pinto, et al. 2000. “Automatic Feature Extraction and Recognition for Digital Access of Books of the Renaissance.” In Research and Advanced Technology for Digital Libraries, edited by Joe Borbinha and Thomas Baker, 1–13. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2001/Bainbridge_The_challenge_of_optical_music_recognition_2001.md b/_OMRbibliography/2001/Bainbridge_The_challenge_of_optical_music_recognition_2001.md deleted file mode 100644 index 7170840b..00000000 --- a/_OMRbibliography/2001/Bainbridge_The_challenge_of_optical_music_recognition_2001.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -Bainbridge, David, and and Tim Bell. 2001. “The Challenge of Optical Music Recognition.” Computers and the Humanities 35 (2):95–121. \ No newline at end of file diff --git a/_OMRbibliography/2001/Bellini_Optical_music_sheet_segmentation_2001.md b/_OMRbibliography/2001/Bellini_Optical_music_sheet_segmentation_2001.md deleted file mode 100644 index feb1a08f..00000000 --- a/_OMRbibliography/2001/Bellini_Optical_music_sheet_segmentation_2001.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -Bellini, Pierfrancesco, Ivan Bruno, and Paolo Nesi. 2001. “Optical Music Sheet Segmentation.” In Proceedings of the First International Conference on Web Delivering of Music (WEDELMUSIC), 183–90. at Florence, Italy. \ No newline at end of file diff --git a/_OMRbibliography/2001/Choudhury_Strike_up_the_score_2001.md b/_OMRbibliography/2001/Choudhury_Strike_up_the_score_2001.md deleted file mode 100644 index 682adf56..00000000 --- a/_OMRbibliography/2001/Choudhury_Strike_up_the_score_2001.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -Choudhury, G.Sayeed, Tim Dilauro, Michael Droettboom, Ichiro Fujinaga, and Karl Macmillan. 2001. “Strike up the Score.” D-Lib Magazine 7. \ No newline at end of file diff --git a/_OMRbibliography/2001/Droettboom_Interpreting_the_semantics_of_music_notation_using_an_extensible_and_object-oriented_system_2001.md b/_OMRbibliography/2001/Droettboom_Interpreting_the_semantics_of_music_notation_using_an_extensible_and_object-oriented_system_2001.md deleted file mode 100644 index 575ed963..00000000 --- a/_OMRbibliography/2001/Droettboom_Interpreting_the_semantics_of_music_notation_using_an_extensible_and_object-oriented_system_2001.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -Droettboom, Michael, and Ichiro Fujinaga. 2001. “Interpreting the Semantics of Music Notation Using an Extensible and Object-Oriented System.” In Proceedings of the Ninth Python Conference. at Long Beach, CA. \ No newline at end of file diff --git a/_OMRbibliography/2001/Homenda_Optical_music_recognition:_The_case_of_granular_computing_2001.md b/_OMRbibliography/2001/Homenda_Optical_music_recognition:_The_case_of_granular_computing_2001.md deleted file mode 100644 index a9e152b2..00000000 --- a/_OMRbibliography/2001/Homenda_Optical_music_recognition:_The_case_of_granular_computing_2001.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -Homenda, Wladyslaw. 2001. “Optical Music Recognition: The Case of Granular Computing.” In Granular Computing: An Emerging Paradigm, edited by W. Pedrycz, 341–60. Heidelberg: Physica-Verlag. \ No newline at end of file diff --git a/_OMRbibliography/2001/MacMillan_Gamera:_A_structured_document_recognition_application_development_environment_2001.md b/_OMRbibliography/2001/MacMillan_Gamera:_A_structured_document_recognition_application_development_environment_2001.md deleted file mode 100644 index 6ca8ed2e..00000000 --- a/_OMRbibliography/2001/MacMillan_Gamera:_A_structured_document_recognition_application_development_environment_2001.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -MacMillan, Karl, Michael Droettboom, and Ichiro Fujinaga. 2001. “Gamera: A Structured Document Recognition Application Development Environment.” In Proceedings of the Second Annual International Symposium on Music Information Retrieval (ISMIR), 15–16. \ No newline at end of file diff --git a/_OMRbibliography/2001/McPherson_Coordinating_knowledge_within_an_optical_music_recognition_system_2001.md b/_OMRbibliography/2001/McPherson_Coordinating_knowledge_within_an_optical_music_recognition_system_2001.md deleted file mode 100644 index 3d9ef7e8..00000000 --- a/_OMRbibliography/2001/McPherson_Coordinating_knowledge_within_an_optical_music_recognition_system_2001.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -McPherson, John R., and David Bainbridge. 2001. “Coordinating Knowledge within an Optical Music Recognition System.” In Proceedings of the The 4th New Zealand Computer Science Research StudentsÕ Conference (NZCSRSCÕ01), 50–58. at Christchurch, New Zealand. \ No newline at end of file diff --git a/_OMRbibliography/2001/Ng_Towards_an_integrated_handwritten_music_manuscript_analysis_and_recognition_system_2001.md b/_OMRbibliography/2001/Ng_Towards_an_integrated_handwritten_music_manuscript_analysis_and_recognition_system_2001.md deleted file mode 100644 index 8f115051..00000000 --- a/_OMRbibliography/2001/Ng_Towards_an_integrated_handwritten_music_manuscript_analysis_and_recognition_system_2001.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -Ng, Kia, David Cooper, and Bee Ong. 2001. “Towards an Integrated Handwritten Music Manuscript Analysis and Recognition System.” In Proceedings of the Conference for Content Integrated Research in Creative User Systems (CIRCUS). \ No newline at end of file diff --git "a/_OMRbibliography/2001/Pugin_R\303\251alisation_d'un_syst\303\250me_de_superposition_de_partitions_de_musique_anciennes_2001.md" "b/_OMRbibliography/2001/Pugin_R\303\251alisation_d'un_syst\303\250me_de_superposition_de_partitions_de_musique_anciennes_2001.md" deleted file mode 100644 index 0b02a3cb..00000000 --- "a/_OMRbibliography/2001/Pugin_R\303\251alisation_d'un_syst\303\250me_de_superposition_de_partitions_de_musique_anciennes_2001.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -Pugin, Laurent. 2001. Réalisation d’un système de superposition de partitions de musique anciennes. Geneva University. \ No newline at end of file diff --git a/_OMRbibliography/2001/Su_Musical_symbol_recognition_using_som-based_fuzzy_systems_2001.md b/_OMRbibliography/2001/Su_Musical_symbol_recognition_using_som-based_fuzzy_systems_2001.md deleted file mode 100644 index f559ea26..00000000 --- a/_OMRbibliography/2001/Su_Musical_symbol_recognition_using_som-based_fuzzy_systems_2001.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -Su, Mu-Chun, Chee-Yuen Tew, and Hsin-Ha Chen. 2001. “Musical Symbol Recognition Using Som-Based Fuzzy Systems.” In Proceedings of the IFSA World Congress and 20th NAFIPS International Conference. \ No newline at end of file diff --git a/_OMRbibliography/2001/Vieira_Recognition_of_musical_symbols_in_ancient_manuscripts_2001.md b/_OMRbibliography/2001/Vieira_Recognition_of_musical_symbols_in_ancient_manuscripts_2001.md deleted file mode 100644 index f698deeb..00000000 --- a/_OMRbibliography/2001/Vieira_Recognition_of_musical_symbols_in_ancient_manuscripts_2001.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2001 -year: 2001 ---- - -Vieira, Pedro, and João Pintos Caldas. 2001. “Recognition of Musical Symbols in Ancient Manuscripts.” In Proceedings of the International Conference on Image Processing, 38–41. at Thessaloniki, Greece. \ No newline at end of file diff --git a/_OMRbibliography/2002/Barton_The_neumes_project:_Digital_transcription_of_medieval_chant_manuscripts_2002.md b/_OMRbibliography/2002/Barton_The_neumes_project:_Digital_transcription_of_medieval_chant_manuscripts_2002.md deleted file mode 100644 index 912057fb..00000000 --- a/_OMRbibliography/2002/Barton_The_neumes_project:_Digital_transcription_of_medieval_chant_manuscripts_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Barton, Lewis. 2002. “The Neumes Project: Digital Transcription of Medieval Chant Manuscripts.” In Proceedings of the Web Delivering of Music (WEDELMUSIC), 211–18. Darmstadt, Germany. \ No newline at end of file diff --git a/_OMRbibliography/2002/Droettboom_Optical_music_interpretation,_Structural,_syntactic_and_statistical_pattern_recognition_2002.md b/_OMRbibliography/2002/Droettboom_Optical_music_interpretation,_Structural,_syntactic_and_statistical_pattern_recognition_2002.md deleted file mode 100644 index 06af1c6e..00000000 --- a/_OMRbibliography/2002/Droettboom_Optical_music_interpretation,_Structural,_syntactic_and_statistical_pattern_recognition_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Droettboom, Michael, Ichiro Fujinaga, and Karl MacMillan. 2002. Optical Music Interpretation, Structural, Syntactic and Statistical Pattern Recognition. Edited by T. Caelli, A. Amin, R. Duin, M. Kamel, and D. de Ridder. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2002/Droettboom_Using_the_gamera_framework_for_the_recognition_of_cultural_heritage_materials_2002.md b/_OMRbibliography/2002/Droettboom_Using_the_gamera_framework_for_the_recognition_of_cultural_heritage_materials_2002.md deleted file mode 100644 index 979c148c..00000000 --- a/_OMRbibliography/2002/Droettboom_Using_the_gamera_framework_for_the_recognition_of_cultural_heritage_materials_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Droettboom, Michael, Ichiro Fujinaga, G.Sayeed Choudhury Karl MacMillan, M.Patton Tim DiLauro, and T. Anderson. 2002. “Using the Gamera Framework for the Recognition of Cultural Heritage Materials.” In Proceedings of the 2nd ACM/IEEE-CS Joint Conference on Digital Libraries, 17. \ No newline at end of file diff --git a/_OMRbibliography/2002/Gezerlis_Optical_character_recognition_of_the_Orthodox_Hellenic_Byzantine_music_notation_2002.md b/_OMRbibliography/2002/Gezerlis_Optical_character_recognition_of_the_Orthodox_Hellenic_Byzantine_music_notation_2002.md deleted file mode 100644 index 2cb899aa..00000000 --- a/_OMRbibliography/2002/Gezerlis_Optical_character_recognition_of_the_Orthodox_Hellenic_Byzantine_music_notation_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Gezerlis, Velissarios, and Sergios Theodoridis. 2002. “Optical Character Recognition of the Orthodox Hellenic Byzantine Music Notation.” Pattern Recognition 35 (4):895–914. \ No newline at end of file diff --git a/_OMRbibliography/2002/Luth_Automatic_identification_of_music_notations_2002.md b/_OMRbibliography/2002/Luth_Automatic_identification_of_music_notations_2002.md deleted file mode 100644 index b314ed0d..00000000 --- a/_OMRbibliography/2002/Luth_Automatic_identification_of_music_notations_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Luth, Nailja. 2002. “Automatic Identification of Music Notations.” In Proceedings of the Second International Conference on Web Delivering of Music (WEDELMUSIC), 203–10. \ No newline at end of file diff --git a/_OMRbibliography/2002/MacMillan_Gamera:_Optical_music_recognition_in_a_new_shell_2002.md b/_OMRbibliography/2002/MacMillan_Gamera:_Optical_music_recognition_in_a_new_shell_2002.md deleted file mode 100644 index f80a84c2..00000000 --- a/_OMRbibliography/2002/MacMillan_Gamera:_Optical_music_recognition_in_a_new_shell_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -MacMillan, Karl, Michael Droettboom, and Ichiro Fujinaga. 2002. “Gamera: Optical Music Recognition in a New Shell.” In Proceedings of the International Computer Music Conference, 482–85. \ No newline at end of file diff --git a/_OMRbibliography/2002/McPherson_Introducing_feedback_into_an_optical_music_recognition_system_2002.md b/_OMRbibliography/2002/McPherson_Introducing_feedback_into_an_optical_music_recognition_system_2002.md deleted file mode 100644 index d284a74e..00000000 --- a/_OMRbibliography/2002/McPherson_Introducing_feedback_into_an_optical_music_recognition_system_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -McPherson, John R. 2002. “Introducing Feedback into an Optical Music Recognition System.” In Proceedings of the Third International Conference on Music Information Retrieval (ISMIR). \ No newline at end of file diff --git a/_OMRbibliography/2002/Miyao_Stave_extraction_for_printed_music_scores_2002.md b/_OMRbibliography/2002/Miyao_Stave_extraction_for_printed_music_scores_2002.md deleted file mode 100644 index 35627ae5..00000000 --- a/_OMRbibliography/2002/Miyao_Stave_extraction_for_printed_music_scores_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Miyao, Hidetoshi. 2002. “Stave extraction for printed music scores.” In Intelligent data engineering and automated learning, edited by Hujun Yin, Nigel Allinson, Richard Freeman, John Keane, and Simon Hubbard, 562–68. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2002/Ng_Document_imaging_for_music_manuscript_2002.md b/_OMRbibliography/2002/Ng_Document_imaging_for_music_manuscript_2002.md deleted file mode 100644 index 2c71a3da..00000000 --- a/_OMRbibliography/2002/Ng_Document_imaging_for_music_manuscript_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Ng, Kia. 2002a. “Document Imaging for Music Manuscript.” In Proceedings of the Sixth World Multiconference on Systemics, Cybernetics and Informatics. at Florida, USA. \ No newline at end of file diff --git a/_OMRbibliography/2002/Ng_Music_manuscript_tracing_2002.md b/_OMRbibliography/2002/Ng_Music_manuscript_tracing_2002.md deleted file mode 100644 index ca624b94..00000000 --- a/_OMRbibliography/2002/Ng_Music_manuscript_tracing_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Ng, Kia. 2002b. “Music Manuscript Tracing.” In Graphics Recognition Algorithms and Applications, edited by Dorothea Blostein and Young-Bin Kwon, 330–42. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2002/Ng_Optical_music_analysis:_A_reverse_engineering_approach_2002.md b/_OMRbibliography/2002/Ng_Optical_music_analysis:_A_reverse_engineering_approach_2002.md deleted file mode 100644 index 45dd2598..00000000 --- a/_OMRbibliography/2002/Ng_Optical_music_analysis:_A_reverse_engineering_approach_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Ng, Kia, David Cooper, and Bee Ong. 2002. “Optical Music Analysis: A Reverse Engineering Approach.” In Proceedings of the EVA. at Florence, Italy. \ No newline at end of file diff --git a/_OMRbibliography/2002/Rossant_A_global_method_for_music_symbol_recognition_in_typeset_music_sheets_2002.md b/_OMRbibliography/2002/Rossant_A_global_method_for_music_symbol_recognition_in_typeset_music_sheets_2002.md deleted file mode 100644 index 3d69486c..00000000 --- a/_OMRbibliography/2002/Rossant_A_global_method_for_music_symbol_recognition_in_typeset_music_sheets_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Rossant, Florence. 2002. “A Global Method for Music Symbol Recognition in Typeset Music Sheets.” Pattern Recognition Letters 23 (10):1129–41. \ No newline at end of file diff --git a/_OMRbibliography/2002/Soak_Music_recognition_system_using_art-1_and_GA_2002.md b/_OMRbibliography/2002/Soak_Music_recognition_system_using_art-1_and_GA_2002.md deleted file mode 100644 index 243634c1..00000000 --- a/_OMRbibliography/2002/Soak_Music_recognition_system_using_art-1_and_GA_2002.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2002 -year: 2002 ---- - -Soak, Sang Moon, Seok Cheol Chang, Taehwan Shin, and Byung-Ha Ahn. 2002. “Music Recognition System Using Art-1 and GA.” In Proceedings of SPIE, 4734:171. \ No newline at end of file diff --git a/_OMRbibliography/2003/Bainbridge_A_music_notation_construction_engine_for_optical_music_recognition_2003.md b/_OMRbibliography/2003/Bainbridge_A_music_notation_construction_engine_for_optical_music_recognition_2003.md deleted file mode 100644 index 9c8bc845..00000000 --- a/_OMRbibliography/2003/Bainbridge_A_music_notation_construction_engine_for_optical_music_recognition_2003.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2003 -year: 2003 ---- - -Bainbridge, David, and Tim Bell. 2003. “A Music Notation Construction Engine for Optical Music Recognition.” Software: Practice and Experience 33 (2):173–200. \ No newline at end of file diff --git a/_OMRbibliography/2003/Bruder_Towards_a_digital_document_archive_for_historical_handwritten_music_scores_2003.md b/_OMRbibliography/2003/Bruder_Towards_a_digital_document_archive_for_historical_handwritten_music_scores_2003.md deleted file mode 100644 index 0c7ab9bd..00000000 --- a/_OMRbibliography/2003/Bruder_Towards_a_digital_document_archive_for_historical_handwritten_music_scores_2003.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2003 -year: 2003 ---- - -Bruder, Ilvio, Andreas Finger, Andreas Heuer, and Temenushka Ignatova. 2003. “Towards a Digital Document Archive for Historical Handwritten Music Scores.” Digital Libraries: Technology and Management of Indigenous Knowledge                for Global Access, 6th International Conference on Asian Digital Libraries, {ICADL} 2003, Kuala Lumpur, Malaysia, December 8-12, 2003, Proceedings, Lecture Notes in Computer Science, 2911:411–14. https://doi.org/10.1007/978-3-540-24594-0\_41. \ No newline at end of file diff --git a/_OMRbibliography/2003/Caldas_A_new_graph-like_classification_method_applied_to_ancient_handwritten_musical_symbols_2003.md b/_OMRbibliography/2003/Caldas_A_new_graph-like_classification_method_applied_to_ancient_handwritten_musical_symbols_2003.md deleted file mode 100644 index 581307ca..00000000 --- a/_OMRbibliography/2003/Caldas_A_new_graph-like_classification_method_applied_to_ancient_handwritten_musical_symbols_2003.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2003 -year: 2003 ---- - -Caldas, Pinto, Pedro Vieira João, and João Sousa. 2003. “A New Graph-like Classification Method Applied to Ancient Handwritten Musical Symbols.” International Journal on Document Analysis and Recognition 6 (1):10–22. \ No newline at end of file diff --git a/_OMRbibliography/2003/Droettboom_Correcting_broken_characters_in_the_recognition_of_historical_printed_documents_2003.md b/_OMRbibliography/2003/Droettboom_Correcting_broken_characters_in_the_recognition_of_historical_printed_documents_2003.md deleted file mode 100644 index 2effe615..00000000 --- a/_OMRbibliography/2003/Droettboom_Correcting_broken_characters_in_the_recognition_of_historical_printed_documents_2003.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2003 -year: 2003 ---- - -Droettboom, Michael. 2003. “Correcting Broken Characters in the Recognition of Historical Printed Documents.” In Proceedings of the Joint Conference on Digital Libraries, At, 364–66. Houston, TX. \ No newline at end of file diff --git a/_OMRbibliography/2003/Gao_A_hidden_Markov_model_based_approach_to_music_segmentation_and_identification_2003.md b/_OMRbibliography/2003/Gao_A_hidden_Markov_model_based_approach_to_music_segmentation_and_identification_2003.md deleted file mode 100644 index d57b2970..00000000 --- a/_OMRbibliography/2003/Gao_A_hidden_Markov_model_based_approach_to_music_segmentation_and_identification_2003.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2003 -year: 2003 ---- - -Gao, Sheng, Namunu Maddage, and Chin-Hui Lee. 2003. “A Hidden Markov Model Based Approach to Music Segmentation and Identification.” In Proceedings of the Joint Conference of the Fourth International Conference on Information, Communications and Signal Processing, and the Fourth Pacific Rim Conference on Multimedia, 1576–80. at Singapore. \ No newline at end of file diff --git a/_OMRbibliography/2003/George_Online_pen-based_recognition_of_music_notation_with_artificial_neural_networks_2003.md b/_OMRbibliography/2003/George_Online_pen-based_recognition_of_music_notation_with_artificial_neural_networks_2003.md deleted file mode 100644 index c3422b02..00000000 --- a/_OMRbibliography/2003/George_Online_pen-based_recognition_of_music_notation_with_artificial_neural_networks_2003.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2003 -year: 2003 ---- - -George, Susan. 2003. “Online Pen-Based Recognition of Music Notation with Artificial Neural Networks.” Computer Music Journal 27 (2):70–79. \ No newline at end of file diff --git "a/_OMRbibliography/2003/G\303\266cke_Pattern_Recognition_and_Applications_2003.md" "b/_OMRbibliography/2003/G\303\266cke_Pattern_Recognition_and_Applications_2003.md" deleted file mode 100644 index b400bfd8..00000000 --- "a/_OMRbibliography/2003/G\303\266cke_Pattern_Recognition_and_Applications_2003.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2003 -year: 2003 ---- - -Göcke, Roland. 2003. “Pattern Recognition and Applications.” In Proceedings of the International Conference on Signal Processing, 250–55. at Rhodes, Greece. \ No newline at end of file diff --git a/_OMRbibliography/2003/Luckner_Automatic_identification_of_selected_symbols_of_music_notation_2003.md b/_OMRbibliography/2003/Luckner_Automatic_identification_of_selected_symbols_of_music_notation_2003.md deleted file mode 100644 index bf7e12c6..00000000 --- a/_OMRbibliography/2003/Luckner_Automatic_identification_of_selected_symbols_of_music_notation_2003.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2003 -year: 2003 ---- - -Luckner, Marcin. 2003. Automatic Identification of Selected Symbols of Music Notation. Warsaw University of Technology. \ No newline at end of file diff --git a/_OMRbibliography/2003/Riley_Recommended_best_practices_for_digital_image_capture_of_musical_scores_2003.md b/_OMRbibliography/2003/Riley_Recommended_best_practices_for_digital_image_capture_of_musical_scores_2003.md deleted file mode 100644 index 3ae0bbb5..00000000 --- a/_OMRbibliography/2003/Riley_Recommended_best_practices_for_digital_image_capture_of_musical_scores_2003.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2003 -year: 2003 ---- - -Riley, Jenn, and Ichiro Fujinaga. 2003. “Recommended Best Practices for Digital Image Capture of Musical Scores.” OCLC Systems and Services 19 (2):62–69. \ No newline at end of file diff --git a/_OMRbibliography/2004/Bellini_An_off-line_optical_music_sheet_recognition_2004.md b/_OMRbibliography/2004/Bellini_An_off-line_optical_music_sheet_recognition_2004.md deleted file mode 100644 index 9d80d2dc..00000000 --- a/_OMRbibliography/2004/Bellini_An_off-line_optical_music_sheet_recognition_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -Bellini, Pierfrancesco, Ivan Bruno, and Paolo Nesi. 2004. “An Off-Line Optical Music Sheet Recognition.” In Visual Perception of Music Notation: Online and Offline Recognition, edited by S. George. Hershey, PA: IRM Press. \ No newline at end of file diff --git a/_OMRbibliography/2004/Clausen_A_unified_approach_to_content-based_and_fault-tolerant_music_recognition_2004.md b/_OMRbibliography/2004/Clausen_A_unified_approach_to_content-based_and_fault-tolerant_music_recognition_2004.md deleted file mode 100644 index b4c84a82..00000000 --- a/_OMRbibliography/2004/Clausen_A_unified_approach_to_content-based_and_fault-tolerant_music_recognition_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -Clausen, Michael, and Frank Kurth. 2004. “A Unified Approach to Content-Based and Fault-Tolerant Music Recognition.” IEEE Transactions on Multimedia 6 (5):717–31. \ No newline at end of file diff --git a/_OMRbibliography/2004/Droettboom_Symbol-level_groundtruthing_environment_for_OMR_2004.md b/_OMRbibliography/2004/Droettboom_Symbol-level_groundtruthing_environment_for_OMR_2004.md deleted file mode 100644 index 208618dd..00000000 --- a/_OMRbibliography/2004/Droettboom_Symbol-level_groundtruthing_environment_for_OMR_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -Droettboom, Michael, and Ichiro Fujinaga. 2004. “Symbol-Level Groundtruthing Environment for OMR.” In Proceedings of the Fifth International Conference on Music Information Retrieval (ISMIR), 497–500. at London, UK. \ No newline at end of file diff --git a/_OMRbibliography/2004/Fujinaga_Staff_detection_and_removal_2004.md b/_OMRbibliography/2004/Fujinaga_Staff_detection_and_removal_2004.md deleted file mode 100644 index d8b11414..00000000 --- a/_OMRbibliography/2004/Fujinaga_Staff_detection_and_removal_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -Fujinaga, Ichiro. 2004. “Staff Detection and Removal.” In Visual Perception of Music Notation, edited by Susan George, 1–39. Hershey: Idea Group Inc. \ No newline at end of file diff --git a/_OMRbibliography/2004/George_Evaluation_in_the_visual_perception_of_music_notation_2004.md b/_OMRbibliography/2004/George_Evaluation_in_the_visual_perception_of_music_notation_2004.md deleted file mode 100644 index a2cdb77b..00000000 --- a/_OMRbibliography/2004/George_Evaluation_in_the_visual_perception_of_music_notation_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -George, Susan. 2004a. “Evaluation in the Visual Perception of Music Notation.” In Visual Perception of Music Notation: On-Line and off-Line Recognition, edited by Susan George, 304–49. Hershey, PA: IRM Press. \ No newline at end of file diff --git a/_OMRbibliography/2004/George_Lyric_recognition_Christian_music_2004.md b/_OMRbibliography/2004/George_Lyric_recognition_Christian_music_2004.md deleted file mode 100644 index 6de51d8d..00000000 --- a/_OMRbibliography/2004/George_Lyric_recognition_Christian_music_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -George, Susan. 2004b. “Lyric Recognition Christian Music.” In Visual Perception of Music Notation: On-Line and off-Line Recognition, edited by Susan George, 128–226. Hershey, PA: IRM Press. \ No newline at end of file diff --git a/_OMRbibliography/2004/George_Wavelets_for_dealing_with_super-imposed_objects_in_recognition_of_music_notation_2004.md b/_OMRbibliography/2004/George_Wavelets_for_dealing_with_super-imposed_objects_in_recognition_of_music_notation_2004.md deleted file mode 100644 index 31e9568b..00000000 --- a/_OMRbibliography/2004/George_Wavelets_for_dealing_with_super-imposed_objects_in_recognition_of_music_notation_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -George, Susan. 2004c. “Wavelets for Dealing with Super-Imposed Objects in Recognition of Music Notation.” In Visual Perception of Music Notation: On-Line and off-Line Recognition, edited by S. George, 78–107. Hershey, PA: IRM Press. \ No newline at end of file diff --git a/_OMRbibliography/2004/Homenda_Automatic_recognition_of_music_notation_using_methods_of_centroids_and_classification_trees_2004.md b/_OMRbibliography/2004/Homenda_Automatic_recognition_of_music_notation_using_methods_of_centroids_and_classification_trees_2004.md deleted file mode 100644 index 25a03084..00000000 --- a/_OMRbibliography/2004/Homenda_Automatic_recognition_of_music_notation_using_methods_of_centroids_and_classification_trees_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -Homenda, Wladyslaw, and Marcin Luckner. 2004a. “Automatic Recognition of Music Notation Using Methods of Centroids and Classification Trees.” In Proceedings of the International Symposium on Computational Intelligence and Industrial Applications. at Haikou, China. \ No newline at end of file diff --git a/_OMRbibliography/2004/Homenda_Automatic_recognition_of_music_notation_using_neural_networks_2004.md b/_OMRbibliography/2004/Homenda_Automatic_recognition_of_music_notation_using_neural_networks_2004.md deleted file mode 100644 index 75b62571..00000000 --- a/_OMRbibliography/2004/Homenda_Automatic_recognition_of_music_notation_using_neural_networks_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -Homenda, Wladyslaw, and Marcin Luckner. 2004b. “Automatic Recognition of Music Notation Using Neural Networks.” In Proceedings of the International Conference on AI and Systems, 74–80. at Divnormorkoye, Russia. \ No newline at end of file diff --git a/_OMRbibliography/2004/Homenda_Music_symbol_recognition:_Neural_networks_vs._Statistical_methods_2004.md b/_OMRbibliography/2004/Homenda_Music_symbol_recognition:_Neural_networks_vs._Statistical_methods_2004.md deleted file mode 100644 index 208abd91..00000000 --- a/_OMRbibliography/2004/Homenda_Music_symbol_recognition:_Neural_networks_vs._Statistical_methods_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -Homenda, Wladyslaw, and K. Mossakowski. 2004. “Music Symbol Recognition: Neural Networks vs. Statistical Methods.” In Proceedings of the EUROFUSE. at Warszawa, Poland. \ No newline at end of file diff --git a/_OMRbibliography/2004/McKay_Automatic_genre_classification_using_large_high-level_musical_feature_sets_2004.md b/_OMRbibliography/2004/McKay_Automatic_genre_classification_using_large_high-level_musical_feature_sets_2004.md deleted file mode 100644 index e74cde42..00000000 --- a/_OMRbibliography/2004/McKay_Automatic_genre_classification_using_large_high-level_musical_feature_sets_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -McKay, Cory, and Ichiro Fujinaga. 2004. “Automatic Genre Classification Using Large High-Level Musical Feature Sets.” In Proceedings of the Fifth International Conference on Music Information Retrieval (ISMIR). Barcelona, Spain. \ No newline at end of file diff --git a/_OMRbibliography/2004/Mitobe_A_fast_HMM_algorithm_based_on_stroke_lengths_for_on-line_recognition_of_handwritten_music_scores_2004.md b/_OMRbibliography/2004/Mitobe_A_fast_HMM_algorithm_based_on_stroke_lengths_for_on-line_recognition_of_handwritten_music_scores_2004.md deleted file mode 100644 index 6c3c063a..00000000 --- a/_OMRbibliography/2004/Mitobe_A_fast_HMM_algorithm_based_on_stroke_lengths_for_on-line_recognition_of_handwritten_music_scores_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -Mitobe, Youichi, Hidetoshi Miyao, and Minoru Maruyama. 2004. “A Fast HMM Algorithm Based on Stroke Lengths for On-Line Recognition of Handwritten Music Scores.” In Proceedings of the Ninth International Workshop on Frontiers in Handwriting Recognition, 521–26. at Tokyo, Japan. \ No newline at end of file diff --git a/_OMRbibliography/2004/Ng_Optical_music_analysis_for_printed_music_score_and_handwritten_music_manuscript_2004.md b/_OMRbibliography/2004/Ng_Optical_music_analysis_for_printed_music_score_and_handwritten_music_manuscript_2004.md deleted file mode 100644 index 625ac222..00000000 --- a/_OMRbibliography/2004/Ng_Optical_music_analysis_for_printed_music_score_and_handwritten_music_manuscript_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -Ng, Kia. 2004. “Optical Music Analysis for Printed Music Score and Handwritten Music Manuscript.” In Visual Perception of Music Notation: On-Line and off-Line Recognition, edited by Susan George, 108–27. Hershey, PA: IRM Press. \ No newline at end of file diff --git a/_OMRbibliography/2004/Rossant_A_fuzzy_model_for_optical_recognition_of_musical_scores_2004.md b/_OMRbibliography/2004/Rossant_A_fuzzy_model_for_optical_recognition_of_musical_scores_2004.md deleted file mode 100644 index 52c0e940..00000000 --- a/_OMRbibliography/2004/Rossant_A_fuzzy_model_for_optical_recognition_of_musical_scores_2004.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2004 -year: 2004 ---- - -Rossant, Florence, and Isabelle Bloch. 2004. “A Fuzzy Model for Optical Recognition of Musical Scores.” Fuzzy Sets and Systems 141 (2):165–201. \ No newline at end of file diff --git a/_OMRbibliography/2005/Barton_E-library_of_Medieval_chant_manuscript_transcriptions_2005.md b/_OMRbibliography/2005/Barton_E-library_of_Medieval_chant_manuscript_transcriptions_2005.md deleted file mode 100644 index 989ae3e2..00000000 --- a/_OMRbibliography/2005/Barton_E-library_of_Medieval_chant_manuscript_transcriptions_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Barton, Lewis, John Caldwell, and Peter Jeavons. 2005. “E-Library of Medieval Chant Manuscript Transcriptions.” In Proceedings of the 5th ACM/IEEE-CS Joint Conference on Digital Libraries (JCDL), 320–29. Denver, CO. \ No newline at end of file diff --git a/_OMRbibliography/2005/Dalitz_Using_the_Gamera_framework_for_building_a_lute_tablature_recognition_system_2005.md b/_OMRbibliography/2005/Dalitz_Using_the_Gamera_framework_for_building_a_lute_tablature_recognition_system_2005.md deleted file mode 100644 index d55d372c..00000000 --- a/_OMRbibliography/2005/Dalitz_Using_the_Gamera_framework_for_building_a_lute_tablature_recognition_system_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Dalitz, Christoph, and Thomas Karsten. 2005. “Using the Gamera Framework for Building a Lute Tablature Recognition System.” In Proceedings of the Sixth International Conference on Music Information Retrieval (ISMIR), 478–81. at London, UK. \ No newline at end of file diff --git a/_OMRbibliography/2005/Homenda_Optical_music_recognition:_The_case_study_of_pattern_recognition_2005.md b/_OMRbibliography/2005/Homenda_Optical_music_recognition:_The_case_study_of_pattern_recognition_2005.md deleted file mode 100644 index 36e4a3f1..00000000 --- a/_OMRbibliography/2005/Homenda_Optical_music_recognition:_The_case_study_of_pattern_recognition_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Homenda, Wladyslaw. 2005. “Optical Music Recognition: The Case Study of Pattern Recognition.” In Computer Recognition Systems, 835–42. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2005/Lobb_Fast_capture_of_sheet_music_for_an_agile_digital_music_library_2005.md b/_OMRbibliography/2005/Lobb_Fast_capture_of_sheet_music_for_an_agile_digital_music_library_2005.md deleted file mode 100644 index 4723a657..00000000 --- a/_OMRbibliography/2005/Lobb_Fast_capture_of_sheet_music_for_an_agile_digital_music_library_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Lobb, Richard, Tim Bell, and David Bainbridge. 2005. “Fast Capture of Sheet Music for an Agile Digital Music Library.” In Proceedings of the Sixth International Conference on Music Information Retrieval (ISMIR), 145–52. at London, UK. \ No newline at end of file diff --git a/_OMRbibliography/2005/Rossant_Optical_music_recognition_based_on_a_fuzzy_modeling_of_symbol_classes_and_music_writing_rules_2005.md b/_OMRbibliography/2005/Rossant_Optical_music_recognition_based_on_a_fuzzy_modeling_of_symbol_classes_and_music_writing_rules_2005.md deleted file mode 100644 index 962c55bb..00000000 --- a/_OMRbibliography/2005/Rossant_Optical_music_recognition_based_on_a_fuzzy_modeling_of_symbol_classes_and_music_writing_rules_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Rossant, Florence, and Isabelle Bloch. 2005. “Optical Music Recognition Based on a Fuzzy Modeling of Symbol Classes and Music Writing Rules.” In Proceedings of the IEEE International Conference on Image Processing. at Genoa, Italy. \ No newline at end of file diff --git a/_OMRbibliography/2005/Szwoch_A_robust_detector_for_distorted_music_staves_2005.md b/_OMRbibliography/2005/Szwoch_A_robust_detector_for_distorted_music_staves_2005.md deleted file mode 100644 index 3aa17cc6..00000000 --- a/_OMRbibliography/2005/Szwoch_A_robust_detector_for_distorted_music_staves_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Szwoch, Mariusz. 2005. “A robust detector for distorted music staves.” In Computer Analysis of Images and Patterns, edited by André Gagalowicz and Wilfried Philips, 701–8. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2006/Bainbridge_Identifying_music_documents_in_a_collection_of_images_2006.md b/_OMRbibliography/2006/Bainbridge_Identifying_music_documents_in_a_collection_of_images_2006.md deleted file mode 100644 index 836e1168..00000000 --- a/_OMRbibliography/2006/Bainbridge_Identifying_music_documents_in_a_collection_of_images_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Bainbridge, David, and Tim Bell. 2006. “Identifying Music Documents in a Collection of Images.” In Proceedings of the Seventh International Conference on Music Information Retrieval (ISMIR). Victoria, BC. \ No newline at end of file diff --git a/_OMRbibliography/2006/Byrd_Prospects_for_improving_OMR_with_multiple_recognizers_2006.md b/_OMRbibliography/2006/Byrd_Prospects_for_improving_OMR_with_multiple_recognizers_2006.md deleted file mode 100644 index 014e16b2..00000000 --- a/_OMRbibliography/2006/Byrd_Prospects_for_improving_OMR_with_multiple_recognizers_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Byrd, Donald, and Megan Schindele. 2006. “Prospects for Improving OMR with Multiple Recognizers.” In Seventh International Conference on Music Information Retrieval (ISMIR), 41–46. \ No newline at end of file diff --git a/_OMRbibliography/2006/Choudhury_Document_recognition_for_a_million_books_2006.md b/_OMRbibliography/2006/Choudhury_Document_recognition_for_a_million_books_2006.md deleted file mode 100644 index a8a1bd2f..00000000 --- a/_OMRbibliography/2006/Choudhury_Document_recognition_for_a_million_books_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Choudhury, G.Sayeed, Tim DiLauro, Robert Ferguson, Michael Droettboom, and Ichiro Fujinaga. 2006. Document recognition for a million books. Vol. 12. 3. D-Lib Magazine. \ No newline at end of file diff --git "a/_OMRbibliography/2006/Forn\303\251s_Primitive_segmentation_in_old_handwritten_music_scores_2006.md" "b/_OMRbibliography/2006/Forn\303\251s_Primitive_segmentation_in_old_handwritten_music_scores_2006.md" deleted file mode 100644 index 2281eaa2..00000000 --- "a/_OMRbibliography/2006/Forn\303\251s_Primitive_segmentation_in_old_handwritten_music_scores_2006.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Fornés, Alicia, Josep Lladós, and Sánchez Gemma. 2006. “Primitive Segmentation in Old Handwritten Music Scores.” In Graphics Recognition. Ten Years Review and Future Perspectives, edited by Liu Wenyin and Josep Lladós. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2006/Homenda_Automatic_knowledge_acquisition:_Recognizing_music_notation_with_methods_of_centroids_and_classifications_trees_2006.md b/_OMRbibliography/2006/Homenda_Automatic_knowledge_acquisition:_Recognizing_music_notation_with_methods_of_centroids_and_classifications_trees_2006.md deleted file mode 100644 index 4f9748aa..00000000 --- a/_OMRbibliography/2006/Homenda_Automatic_knowledge_acquisition:_Recognizing_music_notation_with_methods_of_centroids_and_classifications_trees_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Homenda, Wladyslaw, and Marcin Luckner. 2006a. “Automatic Knowledge Acquisition: Recognizing Music Notation with Methods of Centroids and Classifications Trees.” In Proceedings of the International Conference on Neural Networks, 3382–88. at Vancouver, BC. \ No newline at end of file diff --git a/_OMRbibliography/2006/Homenda_Automatic_understanding_of_images:_Integrated_syntactic_and_semantic_analysis_of_music_notation_2006.md b/_OMRbibliography/2006/Homenda_Automatic_understanding_of_images:_Integrated_syntactic_and_semantic_analysis_of_music_notation_2006.md deleted file mode 100644 index 5f335ccb..00000000 --- a/_OMRbibliography/2006/Homenda_Automatic_understanding_of_images:_Integrated_syntactic_and_semantic_analysis_of_music_notation_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Homenda, Wladyslaw. 2006. “Automatic Understanding of Images: Integrated Syntactic and Semantic Analysis of Music Notation.” In Proceedings of the International Conference on Neural Networks, 3026–33. at Vancouver, BC. \ No newline at end of file diff --git a/_OMRbibliography/2006/Homenda_Braille_score_2006.md b/_OMRbibliography/2006/Homenda_Braille_score_2006.md deleted file mode 100644 index 66f92e2a..00000000 --- a/_OMRbibliography/2006/Homenda_Braille_score_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Homenda, Wladyslaw, and Marcin Luckner. 2006b. “Braille Score.” In Proceedings of the International Conference on Intelligent Systems Design and Applications, 775–80. at Jinan, China. \ No newline at end of file diff --git a/_OMRbibliography/2006/Laskov_Classification_and_Recognition_of_Neume_Note_Notation_in_Historical_Documents_2006.md b/_OMRbibliography/2006/Laskov_Classification_and_Recognition_of_Neume_Note_Notation_in_Historical_Documents_2006.md deleted file mode 100644 index 1d65b9ac..00000000 --- a/_OMRbibliography/2006/Laskov_Classification_and_Recognition_of_Neume_Note_Notation_in_Historical_Documents_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Laskov, Lasko. 2006. “Classification and Recognition of Neume Note Notation in Historical Documents.” In Proceedings of the International Conference on Computer Systems and Technologies. at Veliko Tarnovo, Bulgaria. \ No newline at end of file diff --git a/_OMRbibliography/2006/Luckner_Recognition_of_noised_patterns_using_non-disruption_learning_set_2006.md b/_OMRbibliography/2006/Luckner_Recognition_of_noised_patterns_using_non-disruption_learning_set_2006.md deleted file mode 100644 index 6d9eba58..00000000 --- a/_OMRbibliography/2006/Luckner_Recognition_of_noised_patterns_using_non-disruption_learning_set_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Luckner, Marcin. 2006. “Recognition of Noised Patterns Using Non-Disruption Learning Set.” In Proceedings of the Sixth International Conference on Intelligent Systems Design and Applications, 557–62. at Jinan. \ No newline at end of file diff --git a/_OMRbibliography/2006/McKay_Jsymbolic:_A_feature_extractor_for_midi_files_2006.md b/_OMRbibliography/2006/McKay_Jsymbolic:_A_feature_extractor_for_midi_files_2006.md deleted file mode 100644 index 9e3408c3..00000000 --- a/_OMRbibliography/2006/McKay_Jsymbolic:_A_feature_extractor_for_midi_files_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -McKay, Cory, and Ichiro Fujinaga. 2006. “Jsymbolic: A Feature Extractor for Midi Files.” In Proceedings of the International Computer Music Conference. at New Orleans, LA. \ No newline at end of file diff --git a/_OMRbibliography/2006/Pugin_Aruspix:_An_automatic_source-comparison_system_2006.md b/_OMRbibliography/2006/Pugin_Aruspix:_An_automatic_source-comparison_system_2006.md deleted file mode 100644 index 2a30e872..00000000 --- a/_OMRbibliography/2006/Pugin_Aruspix:_An_automatic_source-comparison_system_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Pugin, Laurent. 2006a. “Aruspix: An automatic source-comparison system.” Computing in Musicology 14:49–60. \ No newline at end of file diff --git a/_OMRbibliography/2006/Pugin_Optical_music_recognition_of_early_typographic_prints_using_hidden_Markov_models_2006.md b/_OMRbibliography/2006/Pugin_Optical_music_recognition_of_early_typographic_prints_using_hidden_Markov_models_2006.md deleted file mode 100644 index 90db2450..00000000 --- a/_OMRbibliography/2006/Pugin_Optical_music_recognition_of_early_typographic_prints_using_hidden_Markov_models_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Pugin, Laurent. 2006b. “Optical Music Recognition of Early Typographic Prints Using Hidden Markov Models.” In Proceedings of the Seventh International Conference for Music Information Retrieval (ISMIR), 53–56. at Victoria, BC. \ No newline at end of file diff --git a/_OMRbibliography/2006/Pugin_Representation_and_dissemination_of_music:_Early_typographic_prints_and_digitalization_2006.md b/_OMRbibliography/2006/Pugin_Representation_and_dissemination_of_music:_Early_typographic_prints_and_digitalization_2006.md deleted file mode 100644 index 2f6113c2..00000000 --- a/_OMRbibliography/2006/Pugin_Representation_and_dissemination_of_music:_Early_typographic_prints_and_digitalization_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Pugin, Laurent. 2006c. “Representation and Dissemination of Music: Early Typographic Prints and Digitalization.” In Contemporary Classical Music: Papers of the 2006 Intercongressional Symposium of the International Musicological Society. \ No newline at end of file diff --git a/_OMRbibliography/2006/Toyama_Symbol_recognition_of_printed_piano_scores_with_touching_symbols_2006.md b/_OMRbibliography/2006/Toyama_Symbol_recognition_of_printed_piano_scores_with_touching_symbols_2006.md deleted file mode 100644 index 9688a729..00000000 --- a/_OMRbibliography/2006/Toyama_Symbol_recognition_of_printed_piano_scores_with_touching_symbols_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Toyama, Fubito, Kenji Shoji, and Juichi Miyamichi. 2006. “Symbol Recognition of Printed Piano Scores with Touching Symbols.” In Proceedings of the 18th International Conference on Pattern Recognition, 480–83. at Hong Kong. \ No newline at end of file diff --git a/_OMRbibliography/2007/Bellini_Assessing_optical_music_recognition_tools_2007.md b/_OMRbibliography/2007/Bellini_Assessing_optical_music_recognition_tools_2007.md deleted file mode 100644 index 99fc02a1..00000000 --- a/_OMRbibliography/2007/Bellini_Assessing_optical_music_recognition_tools_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Bellini, Pierfrancesco, Ivan Bruno, and Paolo Nesi. 2007. “Assessing Optical Music Recognition Tools.” Computer Music Journal 31 (1):68–93. \ No newline at end of file diff --git a/_OMRbibliography/2007/Burgoyne_A_comparative_survey_of_image_binarisation_algorithms_for_optical_recognition_on_degraded_musical_sources_2007.md b/_OMRbibliography/2007/Burgoyne_A_comparative_survey_of_image_binarisation_algorithms_for_optical_recognition_on_degraded_musical_sources_2007.md deleted file mode 100644 index db546d5b..00000000 --- a/_OMRbibliography/2007/Burgoyne_A_comparative_survey_of_image_binarisation_algorithms_for_optical_recognition_on_degraded_musical_sources_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Burgoyne, John, Laurent Pugin, Gred Eustace, and Ichiro Fujinaga. 2007. “A Comparative Survey of Image Binarisation Algorithms for Optical Recognition on Degraded Musical Sources.” In Proceedings of the Eighth International Conference on Music Information Retrieval (ISMIR), 509–12. at Vienna, Austria. \ No newline at end of file diff --git a/_OMRbibliography/2007/Castro_Methods_for_written_ancient_music_restoration,_Image_analysis_and_recognition_2007.md b/_OMRbibliography/2007/Castro_Methods_for_written_ancient_music_restoration,_Image_analysis_and_recognition_2007.md deleted file mode 100644 index da7d8c08..00000000 --- a/_OMRbibliography/2007/Castro_Methods_for_written_ancient_music_restoration,_Image_analysis_and_recognition_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Castro, Pedro, and João Caldas Pinto. 2007. Methods for written ancient music restoration, Image analysis and recognition. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2007/Knopke_Towards_MusicDiff:_A_foundation_for_improved_optical_music_recognition_using_multiple_recognizers_2007.md b/_OMRbibliography/2007/Knopke_Towards_MusicDiff:_A_foundation_for_improved_optical_music_recognition_using_multiple_recognizers_2007.md deleted file mode 100644 index e4ce7e22..00000000 --- a/_OMRbibliography/2007/Knopke_Towards_MusicDiff:_A_foundation_for_improved_optical_music_recognition_using_multiple_recognizers_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Knopke, Ian, and Donald Byrd. 2007. “Towards MusicDiff: A Foundation for Improved Optical Music Recognition Using Multiple Recognizers.” In Proceedings of the Eighth Annual Conference of the International Society for Music Information Retrieval (ISMIR), 121–24. at Vienna, Austria. \ No newline at end of file diff --git a/_OMRbibliography/2007/Kurth_Automated_synchronization_of_scanned_sheet_music_with_audio_recordings_2007.md b/_OMRbibliography/2007/Kurth_Automated_synchronization_of_scanned_sheet_music_with_audio_recordings_2007.md deleted file mode 100644 index aa1f549a..00000000 --- a/_OMRbibliography/2007/Kurth_Automated_synchronization_of_scanned_sheet_music_with_audio_recordings_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Kurth, Frank, Meinard Müller, Christian Fremerey, Yoon-Ha Chang, and Michael Clausen. 2007. “Automated Synchronization of Scanned Sheet Music with Audio Recordings.” In Proceedings of the Seventh International Conference on Music Information Retrieval (ISMIR), 261–66. at Vienna, Austria. \ No newline at end of file diff --git a/_OMRbibliography/2007/Laskov_Color_image_segmentation_for_neume_note_recognition_2007.md b/_OMRbibliography/2007/Laskov_Color_image_segmentation_for_neume_note_recognition_2007.md deleted file mode 100644 index 4ab9607e..00000000 --- a/_OMRbibliography/2007/Laskov_Color_image_segmentation_for_neume_note_recognition_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Laskov, Lasko, and Dimo Dimov. 2007. “Color Image Segmentation for Neume Note Recognition.” In Proceedings of the International Conference on Automatics and Informatics, 37–41. at Sofia, Bulgaria. \ No newline at end of file diff --git a/_OMRbibliography/2007/McKay_Style-independent_computer-assisted_exploratory_analysis_of_large_music_collections_2007.md b/_OMRbibliography/2007/McKay_Style-independent_computer-assisted_exploratory_analysis_of_large_music_collections_2007.md deleted file mode 100644 index 66fdfad7..00000000 --- a/_OMRbibliography/2007/McKay_Style-independent_computer-assisted_exploratory_analysis_of_large_music_collections_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -McKay, Cory, and Ichiro Fujinaga. 2007. “Style-Independent Computer-Assisted Exploratory Analysis of Large Music Collections.” Journal of Interdisciplinary Music Studies 1 (1):63–85. \ No newline at end of file diff --git a/_OMRbibliography/2007/Miyao_Stave_extraction_for_printed_music_scores_using_dp_matching_2007.md b/_OMRbibliography/2007/Miyao_Stave_extraction_for_printed_music_scores_using_dp_matching_2007.md deleted file mode 100644 index 41cdb73d..00000000 --- a/_OMRbibliography/2007/Miyao_Stave_extraction_for_printed_music_scores_using_dp_matching_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Miyao, Hidetoshi, and Masayuki Okamoto. 2007. “Stave Extraction for Printed Music Scores Using Dp Matching.” Journal of Advanced Computational Intelligence and Intelligent Informatics 8 (2):208–15. \ No newline at end of file diff --git a/_OMRbibliography/2007/Pugin_Book-Adaptive_and_Book-Dependent_Models_to_Accelerate_Digitization_of_Early_Music_2007.md b/_OMRbibliography/2007/Pugin_Book-Adaptive_and_Book-Dependent_Models_to_Accelerate_Digitization_of_Early_Music_2007.md deleted file mode 100644 index 5d0916b6..00000000 --- a/_OMRbibliography/2007/Pugin_Book-Adaptive_and_Book-Dependent_Models_to_Accelerate_Digitization_of_Early_Music_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Pugin, Laurent, John Burgoyne, Douglas Eck, and Ichiro Fujinaga. 2007. “Book-Adaptive and Book-Dependent Models to Accelerate Digitization of Early Music.” In NIPS Workshop on Music, Brain, and Cognition. at Whistler, BC. \ No newline at end of file diff --git a/_OMRbibliography/2007/Pugin_Goal-directed_evaluation_for_the_improvement_of_optical_music_recognition_on_early_music_prints_2007.md b/_OMRbibliography/2007/Pugin_Goal-directed_evaluation_for_the_improvement_of_optical_music_recognition_on_early_music_prints_2007.md deleted file mode 100644 index 01814eb5..00000000 --- a/_OMRbibliography/2007/Pugin_Goal-directed_evaluation_for_the_improvement_of_optical_music_recognition_on_early_music_prints_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Pugin, Laurent, John Burgoyne, and Ichiro Fujinaga. 2007a. “Goal-Directed Evaluation for the Improvement of Optical Music Recognition on Early Music Prints.” In Proceedings of the Seventh ACM/IEEE-CS Joint Conference on Digital Libraries (JCDL), 303–4. at Vancouver, BC. \ No newline at end of file diff --git a/_OMRbibliography/2007/Pugin_MAP_adaptation_to_improve_optical_music_recognition_of_early_music_documents_using_hidden_Markov_models_2007.md b/_OMRbibliography/2007/Pugin_MAP_adaptation_to_improve_optical_music_recognition_of_early_music_documents_using_hidden_Markov_models_2007.md deleted file mode 100644 index b7002834..00000000 --- a/_OMRbibliography/2007/Pugin_MAP_adaptation_to_improve_optical_music_recognition_of_early_music_documents_using_hidden_Markov_models_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Pugin, Laurent, John Burgoyne, and Ichiro Fujinaga. 2007b. “MAP Adaptation to Improve Optical Music Recognition of Early Music Documents Using Hidden Markov Models.” In Proceedings of the Eighth International Conference on Music Information Retrieval (ISMIR), 513–16. at Vienna, Austria. \ No newline at end of file diff --git a/_OMRbibliography/2007/Pugin_Reducing_costs_for_digitising_early_music_with_dynamic_adaptation_2007.md b/_OMRbibliography/2007/Pugin_Reducing_costs_for_digitising_early_music_with_dynamic_adaptation_2007.md deleted file mode 100644 index 2f810e15..00000000 --- a/_OMRbibliography/2007/Pugin_Reducing_costs_for_digitising_early_music_with_dynamic_adaptation_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Pugin, Laurent, John Burgoyne, and Ichiro Fujinaga. 2007c. “Reducing Costs for Digitising Early Music with Dynamic Adaptation.” In Research and Advanced Technology for Digital Libraries, edited by László Kovács, Norbert Fuhr, and Carlo Meghini, 4675:471–74. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2007/Rebelo_A_shortest_path_approach_for_staff_line_detection_2007.md b/_OMRbibliography/2007/Rebelo_A_shortest_path_approach_for_staff_line_detection_2007.md deleted file mode 100644 index c9d174ea..00000000 --- a/_OMRbibliography/2007/Rebelo_A_shortest_path_approach_for_staff_line_detection_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Rebelo, Ana, Arthur Capela, Joaquim da Costa, Carlos Guedes, Eeurico Carrapatoso, and Jaime Cardoso. 2007. “A Shortest Path Approach for Staff Line Detection.” In Proceedings of the Third International Conference on Automated Production of Cross Media Content for Multi-Channel Distribution (AXMEDIS), 33–44. \ No newline at end of file diff --git a/_OMRbibliography/2007/Rossant_Robust_and_adaptive_OMR_system_including_fuzzy_modeling,_fusion_of_musical_rules,_and_possible_error_detection_2007.md b/_OMRbibliography/2007/Rossant_Robust_and_adaptive_OMR_system_including_fuzzy_modeling,_fusion_of_musical_rules,_and_possible_error_detection_2007.md deleted file mode 100644 index 7690ba49..00000000 --- a/_OMRbibliography/2007/Rossant_Robust_and_adaptive_OMR_system_including_fuzzy_modeling,_fusion_of_musical_rules,_and_possible_error_detection_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Rossant, Florence, and Isabelle Bloch. 2007. “Robust and Adaptive OMR System Including Fuzzy Modeling, Fusion of Musical Rules, and Possible Error Detection.” In EURASIP Journal on Advances in Signal Processing 2007, 1:160–85. \ No newline at end of file diff --git a/_OMRbibliography/2008/Bellini_Optical_music_recognition:_Architecture_and_algorithms_2008.md b/_OMRbibliography/2008/Bellini_Optical_music_recognition:_Architecture_and_algorithms_2008.md deleted file mode 100644 index 018b24ad..00000000 --- a/_OMRbibliography/2008/Bellini_Optical_music_recognition:_Architecture_and_algorithms_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Bellini, Pierfrancesco, Ivan Bruno, and Paolo Nesi. 2008. “Optical Music Recognition: Architecture and Algorithms.” In Interactive Multimedia Music Technologies, edited by Kia Ng and and Paolo Nesi. Hershey, PA: Information Science Reference. \ No newline at end of file diff --git a/_OMRbibliography/2008/Bullen_Bringing_sheet_music_to_life:_My_experiences_with_OMR_2008.md b/_OMRbibliography/2008/Bullen_Bringing_sheet_music_to_life:_My_experiences_with_OMR_2008.md deleted file mode 100644 index e3466842..00000000 --- a/_OMRbibliography/2008/Bullen_Bringing_sheet_music_to_life:_My_experiences_with_OMR_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Bullen, Andrew. 2008. Bringing Sheet Music to Life: My Experiences with OMR. \ No newline at end of file diff --git a/_OMRbibliography/2008/Burgoyne_Enhanced_bleedthrough_correction_for_early_music_documents_with_recto-verso_registration_2008.md b/_OMRbibliography/2008/Burgoyne_Enhanced_bleedthrough_correction_for_early_music_documents_with_recto-verso_registration_2008.md deleted file mode 100644 index c55db113..00000000 --- a/_OMRbibliography/2008/Burgoyne_Enhanced_bleedthrough_correction_for_early_music_documents_with_recto-verso_registration_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Burgoyne, John, Johanna Devaney, Laurent Pugin, and Ichiro Fujinaga. 2008. “Enhanced Bleedthrough Correction for Early Music Documents with Recto-Verso Registration.” In Proceedings of the Conference of the International Society for Music Information Retrieval (ISMIR), 407–12. at Philadelphia, PA. \ No newline at end of file diff --git a/_OMRbibliography/2008/Cardoso_A_connected_path_approach_for_staff_detection_on_a_music_score_2008.md b/_OMRbibliography/2008/Cardoso_A_connected_path_approach_for_staff_detection_on_a_music_score_2008.md deleted file mode 100644 index 6db291db..00000000 --- a/_OMRbibliography/2008/Cardoso_A_connected_path_approach_for_staff_detection_on_a_music_score_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Cardoso, Jaime, Aarthur Capela, Ana Rebelo, Carlos Guedes, and and INESC Porto. 2008. “A Connected Path Approach for Staff Detection on a Music Score.” In Proceedings of the 15th IEEE International Conference on Image Processing, 1005–8. \ No newline at end of file diff --git a/_OMRbibliography/2008/Castro_Restoration_of_double-sided_ancient_music_documents_with_bleed-through_2008.md b/_OMRbibliography/2008/Castro_Restoration_of_double-sided_ancient_music_documents_with_bleed-through_2008.md deleted file mode 100644 index 1e59c781..00000000 --- a/_OMRbibliography/2008/Castro_Restoration_of_double-sided_ancient_music_documents_with_bleed-through_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Castro, Pedro, Rui Almeida, and João Caldas Pinto. 2008. “Restoration of Double-Sided Ancient Music Documents with Bleed-Through.” In Progress in Pattern Recognition, Image Analysis and Applications. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2008/Dalitz_A_comparative_study_of_staff_removal_algorithms_2008.md b/_OMRbibliography/2008/Dalitz_A_comparative_study_of_staff_removal_algorithms_2008.md deleted file mode 100644 index 39fb7def..00000000 --- a/_OMRbibliography/2008/Dalitz_A_comparative_study_of_staff_removal_algorithms_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Dalitz, Christoph, Michael Droettboom, Bastian Pranzas, and Ichiro Fujinaga. 2008. “A comparative study of staff removal algorithms.” IEEE transactions on pattern analysis and machine intelligence 30 (5):753–66. \ No newline at end of file diff --git a/_OMRbibliography/2008/Dalitz_Optical_recognition_of_psaltic_Byzantine_chant_notation_2008.md b/_OMRbibliography/2008/Dalitz_Optical_recognition_of_psaltic_Byzantine_chant_notation_2008.md deleted file mode 100644 index c414b6c9..00000000 --- a/_OMRbibliography/2008/Dalitz_Optical_recognition_of_psaltic_Byzantine_chant_notation_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Dalitz, Christoph, Georgios Michalakis, and Christine Pranzas. 2008. “Optical Recognition of Psaltic Byzantine Chant Notation.” International Journal on Document Analysis and Recognition 11 (3):143–58. \ No newline at end of file diff --git "a/_OMRbibliography/2008/Forn\303\251s_Old_handwritten_musical_symbol_classification_by_a_dynamic_time_warping_based_method_2008.md" "b/_OMRbibliography/2008/Forn\303\251s_Old_handwritten_musical_symbol_classification_by_a_dynamic_time_warping_based_method_2008.md" deleted file mode 100644 index 36c73ae5..00000000 --- "a/_OMRbibliography/2008/Forn\303\251s_Old_handwritten_musical_symbol_classification_by_a_dynamic_time_warping_based_method_2008.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Fornés, Alicia, Josep Lladós, and Gemma Sánchez. 2008. “Old Handwritten Musical Symbol Classification by a Dynamic Time Warping Based Method.” In Graphics Recognition. Recent Advances and New Opportunities, edited by Wenyin Liu, Josep Lladós, and Jean-Marc Ogier, 51–60. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2008/Fremerey_Automatic_mapping_of_scanned_sheet_music_to_audio_recordings_2008.md b/_OMRbibliography/2008/Fremerey_Automatic_mapping_of_scanned_sheet_music_to_audio_recordings_2008.md deleted file mode 100644 index 6a73e660..00000000 --- a/_OMRbibliography/2008/Fremerey_Automatic_mapping_of_scanned_sheet_music_to_audio_recordings_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Fremerey, Christian, Meinard Müller, Frank Kurth, and Michael Clausen. 2008. “Automatic Mapping of Scanned Sheet Music to Audio Recordings.” In Proceedings of the Ninth Conference of the International Society for Music Information Retrieval (ISMIR), 413–18. at Philadelphia, PA. \ No newline at end of file diff --git a/_OMRbibliography/2008/Jones_Optical_music_imaging:_Music_document_digitisation,_recognition,_evaluation_and_restoration_2008.md b/_OMRbibliography/2008/Jones_Optical_music_imaging:_Music_document_digitisation,_recognition,_evaluation_and_restoration_2008.md deleted file mode 100644 index f539e385..00000000 --- a/_OMRbibliography/2008/Jones_Optical_music_imaging:_Music_document_digitisation,_recognition,_evaluation_and_restoration_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Jones, Graham, Bee Ong, Ivan Bruno, and Kia Ng. 2008. “Optical Music Imaging: Music Document Digitisation, Recognition, Evaluation and Restoration.” In Interactive Multimedia Music Technologies, edited by Kia Ng and Paolo Nesi, 50–79. Hershey, PA: Information Science Reference. \ No newline at end of file diff --git a/_OMRbibliography/2008/Kolakowska_Applying_decision_trees_to_the_recognition_of_musical_symbols_2008.md b/_OMRbibliography/2008/Kolakowska_Applying_decision_trees_to_the_recognition_of_musical_symbols_2008.md deleted file mode 100644 index 0f1c4a84..00000000 --- a/_OMRbibliography/2008/Kolakowska_Applying_decision_trees_to_the_recognition_of_musical_symbols_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Kolakowska, Agata. 2008. “Applying Decision Trees to the Recognition of Musical Symbols.” In Proceedings of the First International Conference on Information Technology. at Gdansk, Poland. \ No newline at end of file diff --git a/_OMRbibliography/2008/Laskov_Segmentation_of_Ancient_Neumatic_Musical_Notation_2008.md b/_OMRbibliography/2008/Laskov_Segmentation_of_Ancient_Neumatic_Musical_Notation_2008.md deleted file mode 100644 index 0769181f..00000000 --- a/_OMRbibliography/2008/Laskov_Segmentation_of_Ancient_Neumatic_Musical_Notation_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Laskov, Lasko, and Dimo Dimov. 2008. “Segmentation of Ancient Neumatic Musical Notation.” In Proceedings of the International Conference on Automatics and Informatics, 21–24. at Sofia, Bulgaria. \ No newline at end of file diff --git a/_OMRbibliography/2008/Pugin_Computer_tools_for_early_music_sources_comparison:_A_practical_study_on_Marenzio_editions_and_re-editions_2008.md b/_OMRbibliography/2008/Pugin_Computer_tools_for_early_music_sources_comparison:_A_practical_study_on_Marenzio_editions_and_re-editions_2008.md deleted file mode 100644 index 38c53af4..00000000 --- a/_OMRbibliography/2008/Pugin_Computer_tools_for_early_music_sources_comparison:_A_practical_study_on_Marenzio_editions_and_re-editions_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Pugin, Laurent. 2008. “Computer Tools for Early Music Sources Comparison: A Practical Study on Marenzio Editions and Re-Editions.” Music, Poetry, Patronage, and Reception in Late Renaissance: Luca Marenzio and the Madrigal. \ No newline at end of file diff --git a/_OMRbibliography/2008/Pugin_Gamera_versus_Aruspix:_Two_optical_music_recognition_approaches_2008.md b/_OMRbibliography/2008/Pugin_Gamera_versus_Aruspix:_Two_optical_music_recognition_approaches_2008.md deleted file mode 100644 index fad5057e..00000000 --- a/_OMRbibliography/2008/Pugin_Gamera_versus_Aruspix:_Two_optical_music_recognition_approaches_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Pugin, Laurent, Jason Hockman, John Burgoyne, and Ichiro Fujinaga. 2008. “Gamera versus Aruspix: Two Optical Music Recognition Approaches.” In Proceedings of the Ninth Conference of the International Society for Music Information Retrieval (ISMIR), 419–24. at Philadelphia, PA. \ No newline at end of file diff --git a/_OMRbibliography/2008/Smiatacz_Matrix-based_classifiers_applied_to_recognition_of_musical_notation_symbols_2008.md b/_OMRbibliography/2008/Smiatacz_Matrix-based_classifiers_applied_to_recognition_of_musical_notation_symbols_2008.md deleted file mode 100644 index 56a97a72..00000000 --- a/_OMRbibliography/2008/Smiatacz_Matrix-based_classifiers_applied_to_recognition_of_musical_notation_symbols_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Smiatacz, Maciej, and Witold Malina. 2008. “Matrix-Based Classifiers Applied to Recognition of Musical Notation Symbols.” In Proceedings of the First International Conference on Information Technology, 1–4. at Gdansk Poland. \ No newline at end of file diff --git a/_OMRbibliography/2008/Szwoch_Using_MusicXML_to_evaluate_accuracy_of_OMR_systems_2008.md b/_OMRbibliography/2008/Szwoch_Using_MusicXML_to_evaluate_accuracy_of_OMR_systems_2008.md deleted file mode 100644 index ac2523b0..00000000 --- a/_OMRbibliography/2008/Szwoch_Using_MusicXML_to_evaluate_accuracy_of_OMR_systems_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Szwoch, Mariusz. 2008. “Using MusicXML to Evaluate Accuracy of OMR Systems.” In Proceedings of the Fifth International Conference on Diagrammatic Representation and Inference, 419–22. at Herrsching Germany. \ No newline at end of file diff --git a/_OMRbibliography/2008/Wei_Optical_tablature_recognition_(OT)_system:_Using_Fourier_descriptors_as_a_recognition_tool_2008.md b/_OMRbibliography/2008/Wei_Optical_tablature_recognition_(OT)_system:_Using_Fourier_descriptors_as_a_recognition_tool_2008.md deleted file mode 100644 index 25a4fa62..00000000 --- a/_OMRbibliography/2008/Wei_Optical_tablature_recognition_(OT)_system:_Using_Fourier_descriptors_as_a_recognition_tool_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Wei, Lee Ling, Qussay Salih, and Ho Sooi Hock. 2008. “Optical Tablature Recognition (OT) System: Using Fourier Descriptors as a Recognition Tool.” In Proceedings of the International Conference on Audio, Language and Image Processing, 1532–39. at Shanghai, China. \ No newline at end of file diff --git a/_OMRbibliography/2009/Burgoyne_Lyric_extraction_and_recognition_on_digital_images_of_early_music_sources_2009.md b/_OMRbibliography/2009/Burgoyne_Lyric_extraction_and_recognition_on_digital_images_of_early_music_sources_2009.md deleted file mode 100644 index c62aef98..00000000 --- a/_OMRbibliography/2009/Burgoyne_Lyric_extraction_and_recognition_on_digital_images_of_early_music_sources_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Burgoyne, John, Yue Ouyang, Tristan Himmelman, Johanna Devaney, Laurent Pugin, and Ichiro Fujinaga. 2009. “Lyric Extraction and Recognition on Digital Images of Early Music Sources.” In Proceedings of the 10th International Society for Music Information Retrieval (ISMIR), 723–27. at Kobe, Japan. \ No newline at end of file diff --git a/_OMRbibliography/2009/Byrd_OMR_evaluation_and_prospects_for_improved_OMR_via_multiple_recognizers_2009.md b/_OMRbibliography/2009/Byrd_OMR_evaluation_and_prospects_for_improved_OMR_via_multiple_recognizers_2009.md deleted file mode 100644 index eed6cedc..00000000 --- a/_OMRbibliography/2009/Byrd_OMR_evaluation_and_prospects_for_improved_OMR_via_multiple_recognizers_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Byrd, Donald, William Guerin, Megan Schindele, and Ian Knopke. 2009. OMR Evaluation and Prospects for Improved OMR via Multiple Recognizers. \ No newline at end of file diff --git a/_OMRbibliography/2009/Dalitz_German_lute_tablature_recognition_2009.md b/_OMRbibliography/2009/Dalitz_German_lute_tablature_recognition_2009.md deleted file mode 100644 index f216b997..00000000 --- a/_OMRbibliography/2009/Dalitz_German_lute_tablature_recognition_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Dalitz, Christoph, and Bastian Pranzas. 2009. “German Lute Tablature Recognition.” In Proceedings of the 10th International Conference on Document Analysis and Recognition, 371–75. at Barcelona, Spain. \ No newline at end of file diff --git "a/_OMRbibliography/2009/Forn\303\251s_On_the_use_of_textural_features_for_writer_identification_in_old_handwritten_music_scores_2009.md" "b/_OMRbibliography/2009/Forn\303\251s_On_the_use_of_textural_features_for_writer_identification_in_old_handwritten_music_scores_2009.md" deleted file mode 100644 index 8ee46cfc..00000000 --- "a/_OMRbibliography/2009/Forn\303\251s_On_the_use_of_textural_features_for_writer_identification_in_old_handwritten_music_scores_2009.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Fornés, Alicia, Josep Lladós, Sánchez Gemma, and Bunke Horst. 2009. “On the Use of Textural Features for Writer Identification in Old Handwritten Music Scores.” In Proceedings of the 10th International Conference on Document Analysis and Recognition, 996–1000. at Barcelona, Spain. \ No newline at end of file diff --git a/_OMRbibliography/2009/Genfang_Pick-up_the_musical_information_from_digital_musical_score_based_on_mathematical_morphology_and_music_notation_2009.md b/_OMRbibliography/2009/Genfang_Pick-up_the_musical_information_from_digital_musical_score_based_on_mathematical_morphology_and_music_notation_2009.md deleted file mode 100644 index 87388c95..00000000 --- a/_OMRbibliography/2009/Genfang_Pick-up_the_musical_information_from_digital_musical_score_based_on_mathematical_morphology_and_music_notation_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Genfang, Chen, Zhang Wenjun, and Wang Qiuqiu. 2009. “Pick-up the Musical Information from Digital Musical Score Based on Mathematical Morphology and Music Notation.” In Proceedings of the First International Workshop on Education Technology and Computer Science, 1141–44. at Wuhan, Hubei. \ No newline at end of file diff --git a/_OMRbibliography/2009/Johansen_Optical_music_recognition_2009.md b/_OMRbibliography/2009/Johansen_Optical_music_recognition_2009.md deleted file mode 100644 index 372cae95..00000000 --- a/_OMRbibliography/2009/Johansen_Optical_music_recognition_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Johansen, Linn. 2009. Optical Music Recognition. University of Oslo. \ No newline at end of file diff --git a/_OMRbibliography/2009/Liu_Structure_analysis_approach_of_music_notes_for_optical_music_recognition_2009.md b/_OMRbibliography/2009/Liu_Structure_analysis_approach_of_music_notes_for_optical_music_recognition_2009.md deleted file mode 100644 index 5e585a71..00000000 --- a/_OMRbibliography/2009/Liu_Structure_analysis_approach_of_music_notes_for_optical_music_recognition_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Liu, Xiaoxiang, and Shu-Sheng Zhang. 2009. “Structure Analysis Approach of Music Notes for Optical Music Recognition.” Computer Engineering and Design 30 (3):709–12. \ No newline at end of file diff --git a/_OMRbibliography/2009/Nielsen_Statistical_analysis_of_music_corpora_2009.md b/_OMRbibliography/2009/Nielsen_Statistical_analysis_of_music_corpora_2009.md deleted file mode 100644 index 23befe6c..00000000 --- a/_OMRbibliography/2009/Nielsen_Statistical_analysis_of_music_corpora_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Nielsen, Johan. 2009. Statistical Analysis of Music Corpora. University of Copenhagen. \ No newline at end of file diff --git a/_OMRbibliography/2009/Ouyang_Complex_layout_analysis_of_medieval_music_manuscripts_for_information_extraction_and_optical_reccognition_2009.md b/_OMRbibliography/2009/Ouyang_Complex_layout_analysis_of_medieval_music_manuscripts_for_information_extraction_and_optical_reccognition_2009.md deleted file mode 100644 index 4e882d8c..00000000 --- a/_OMRbibliography/2009/Ouyang_Complex_layout_analysis_of_medieval_music_manuscripts_for_information_extraction_and_optical_reccognition_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Ouyang, Yue, John Burgoyne, Laurent Pugin, and Ichiro Fujinaga. 2009. “Complex Layout Analysis of Medieval Music Manuscripts for Information Extraction and Optical Reccognition.” In Proceedings of the International Computer Music Conference. at Montreal, QC. \ No newline at end of file diff --git a/_OMRbibliography/2009/Phon-Amnuaisuk_Estimating_HMM_parameters_using_particle_swarm_optimisation_2009.md b/_OMRbibliography/2009/Phon-Amnuaisuk_Estimating_HMM_parameters_using_particle_swarm_optimisation_2009.md deleted file mode 100644 index f9a2d422..00000000 --- a/_OMRbibliography/2009/Phon-Amnuaisuk_Estimating_HMM_parameters_using_particle_swarm_optimisation_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Phon-Amnuaisuk, Somnuk. 2009. “Estimating HMM Parameters Using Particle Swarm Optimisation.” In Applications of Evolutionary Computing. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2009/Pugin_Editing_Renaissance_music:_The_Aruspix_project_2009.md b/_OMRbibliography/2009/Pugin_Editing_Renaissance_music:_The_Aruspix_project_2009.md deleted file mode 100644 index bb9cef2a..00000000 --- a/_OMRbibliography/2009/Pugin_Editing_Renaissance_music:_The_Aruspix_project_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Pugin, Laurent and Forthcoming. 2009. “Editing Renaissance Music: The Aruspix Project.” In Internationales Jahrbuch Für Editionswissenschaften, Beihefte zur Editio, 94–103. \ No newline at end of file diff --git a/_OMRbibliography/2009/Vrist_Optical_music_recognition_for_structural_information_from_high-quality_scanned_music_2009.md b/_OMRbibliography/2009/Vrist_Optical_music_recognition_for_structural_information_from_high-quality_scanned_music_2009.md deleted file mode 100644 index fe7fee77..00000000 --- a/_OMRbibliography/2009/Vrist_Optical_music_recognition_for_structural_information_from_high-quality_scanned_music_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Vrist, Søren. 2009. Optical Music Recognition for Structural Information from High-Quality Scanned Music. University of Copenhagen. \ No newline at end of file diff --git a/_OMRbibliography/2009/dos Santos_Staff_detection_with_stable_paths_2009.md b/_OMRbibliography/2009/dos Santos_Staff_detection_with_stable_paths_2009.md deleted file mode 100644 index a92690aa..00000000 --- a/_OMRbibliography/2009/dos Santos_Staff_detection_with_stable_paths_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Santos, Cardoso dos, Arthur Capela Jaime, Ana Rebelo, Carlos Guedes, and Joaquim da Costa. 2009. “Staff Detection with Stable Paths.” IEEE Transactions on Pattern Analysis and Machine Intelligence 31 (6):1134–39. \ No newline at end of file diff --git a/_OMRbibliography/2010/Cardoso_Robust_Staffline_Thickness_and_Distance_Estimation_in_Binary_and_Gray-Level_Music_Scores_2010.md b/_OMRbibliography/2010/Cardoso_Robust_Staffline_Thickness_and_Distance_Estimation_in_Binary_and_Gray-Level_Music_Scores_2010.md deleted file mode 100644 index f0c2f9db..00000000 --- a/_OMRbibliography/2010/Cardoso_Robust_Staffline_Thickness_and_Distance_Estimation_in_Binary_and_Gray-Level_Music_Scores_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Cardoso, Jaime, and Ana Rebelo. 2010. “Robust Staffline Thickness and Distance Estimation in Binary and Gray-Level Music Scores.” In Proceedings of the 20th International Conference on Pattern Recognition, 1856–59. \ No newline at end of file diff --git a/_OMRbibliography/2010/Cui_An_adaptive_staff_line_removal_in_music_score_images_2010.md b/_OMRbibliography/2010/Cui_An_adaptive_staff_line_removal_in_music_score_images_2010.md deleted file mode 100644 index 4d2e37b7..00000000 --- a/_OMRbibliography/2010/Cui_An_adaptive_staff_line_removal_in_music_score_images_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Cui, Jiali, He Huan, and Yiding Wang. 2010. “An Adaptive Staff Line Removal in Music Score Images.” In 10th Annual Conference on Signal Processing (ICSP), 964–67. \ No newline at end of file diff --git a/_OMRbibliography/2010/Dutta_An_efficient_staff_removal_approach_from_printed_musical_documents_2010.md b/_OMRbibliography/2010/Dutta_An_efficient_staff_removal_approach_from_printed_musical_documents_2010.md deleted file mode 100644 index 5413b716..00000000 --- a/_OMRbibliography/2010/Dutta_An_efficient_staff_removal_approach_from_printed_musical_documents_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Dutta, Anjan, Umapada Pal, Alicia Fornés, and Josep Lladós. 2010. “An Efficient Staff Removal Approach from Printed Musical Documents.” In Proceedings of International Workshop on Structural and Syntactic Pattern Recognition, 373–82. \ No newline at end of file diff --git a/_OMRbibliography/2010/Gordo_A_bag_of_notes_approach_to_writer_identification_in_old_handwritten_musical_scores_2010.md b/_OMRbibliography/2010/Gordo_A_bag_of_notes_approach_to_writer_identification_in_old_handwritten_musical_scores_2010.md deleted file mode 100644 index ac508c2b..00000000 --- a/_OMRbibliography/2010/Gordo_A_bag_of_notes_approach_to_writer_identification_in_old_handwritten_musical_scores_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Gordo, Albert, Alicia Fornés, Ernest Valveny, and Josep Lladós. 2010. “A Bag of Notes Approach to Writer Identification in Old Handwritten Musical Scores.” In Proceedings of the 9th IAPR International Workshop on Document Analysis Systems, 247–54. \ No newline at end of file diff --git a/_OMRbibliography/2010/Gozzi_OMRJX:_A_framework_for_piano_scores_optical_music_recognition_2010.md b/_OMRbibliography/2010/Gozzi_OMRJX:_A_framework_for_piano_scores_optical_music_recognition_2010.md deleted file mode 100644 index c450cb13..00000000 --- a/_OMRbibliography/2010/Gozzi_OMRJX:_A_framework_for_piano_scores_optical_music_recognition_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Gozzi, Gianmarco. 2010. OMRJX: A framework for piano scores optical music recognition. Politecnico di Milano. \ No newline at end of file diff --git a/_OMRbibliography/2010/Hankinson_An_interchange_format_for_optical_music_recognition_applications_2010.md b/_OMRbibliography/2010/Hankinson_An_interchange_format_for_optical_music_recognition_applications_2010.md deleted file mode 100644 index c9e378d2..00000000 --- a/_OMRbibliography/2010/Hankinson_An_interchange_format_for_optical_music_recognition_applications_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Hankinson, Andrew, Laurent Pugin, and Ichiro Fujinaga. 2010. “An Interchange Format for Optical Music Recognition Applications.” In Proceedings of the 11th Annual Conference of the International Society for Music Information Retrieval (ISMIR), 51–56. at Utrecht, Netherlands. \ No newline at end of file diff --git a/_OMRbibliography/2010/Ramirez_Symbol_classification_approach_for_OMR_of_square_notation_manuscripts_2010.md b/_OMRbibliography/2010/Ramirez_Symbol_classification_approach_for_OMR_of_square_notation_manuscripts_2010.md deleted file mode 100644 index 70aca0f4..00000000 --- a/_OMRbibliography/2010/Ramirez_Symbol_classification_approach_for_OMR_of_square_notation_manuscripts_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Ramirez, Carolina, and Jun Ohya. 2010. “Symbol Classification Approach for OMR of Square Notation Manuscripts.” In Proceedings of the 11th Annual Conference of the International Society for Music Information Retrieval (ISMIR), 549–53. at Utrecht, Netherlands. \ No newline at end of file diff --git a/_OMRbibliography/2010/Rebelo_Optical_recognition_of_music_symbols:_A_comparative_study_2010.md b/_OMRbibliography/2010/Rebelo_Optical_recognition_of_music_symbols:_A_comparative_study_2010.md deleted file mode 100644 index a3f6d63a..00000000 --- a/_OMRbibliography/2010/Rebelo_Optical_recognition_of_music_symbols:_A_comparative_study_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Rebelo, Ana, G. Capela, and Jaime Cardoso. 2010. “Optical Recognition of Music Symbols: A Comparative Study.” International Journal on Document Analysis and Recognition 13 (1):19–31. \ No newline at end of file diff --git a/_OMRbibliography/2010/Sammartino_Graphical_tool_for_the_optical_music_recognition_of_scores_in_white_mensural_notation_2010.md b/_OMRbibliography/2010/Sammartino_Graphical_tool_for_the_optical_music_recognition_of_scores_in_white_mensural_notation_2010.md deleted file mode 100644 index 25f23051..00000000 --- a/_OMRbibliography/2010/Sammartino_Graphical_tool_for_the_optical_music_recognition_of_scores_in_white_mensural_notation_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Sammartino, Simone, Lorenzo Tardón, and Isabel Barbancho. 2010. “Graphical Tool for the Optical Music Recognition of Scores in White Mensural Notation.” In Proceedings of the Conference on Artificial Intelligence and Applications. at Innsbruck Austria. \ No newline at end of file diff --git "a/_OMRbibliography/2010/Tard\303\263n_Optical_music_recognition_for_scores_written_in_white_mensural_notation_2010.md" "b/_OMRbibliography/2010/Tard\303\263n_Optical_music_recognition_for_scores_written_in_white_mensural_notation_2010.md" deleted file mode 100644 index 68f1f298..00000000 --- "a/_OMRbibliography/2010/Tard\303\263n_Optical_music_recognition_for_scores_written_in_white_mensural_notation_2010.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Tardón, Lorenzo, Simone Sammartino, Isabel Barbancho, Véronica Gómez, and Antonio Oliver. 2010. “Optical Music Recognition for Scores Written in White Mensural Notation.” In EURASIP Journal on Image and Video Processing, 2009. \ No newline at end of file diff --git "a/_OMRbibliography/2011/Helsen_\342\200\230Venite_et_videte\342\200\231:_First_Results_in_the_Optical_Neume_Recognition_Project_2011.md" "b/_OMRbibliography/2011/Helsen_\342\200\230Venite_et_videte\342\200\231:_First_Results_in_the_Optical_Neume_Recognition_Project_2011.md" deleted file mode 100644 index 89676394..00000000 --- "a/_OMRbibliography/2011/Helsen_\342\200\230Venite_et_videte\342\200\231:_First_Results_in_the_Optical_Neume_Recognition_Project_2011.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Helsen, Kate. 2011. “‘Venite et Videte’: First Results in the Optical Neume Recognition Project.” In Cantus Planus Conference. Vienna. \ No newline at end of file diff --git a/_OMRbibliography/2011/Pinto_Music_score_binarization_based_on_domain_knowledge_2011.md b/_OMRbibliography/2011/Pinto_Music_score_binarization_based_on_domain_knowledge_2011.md deleted file mode 100644 index 3442f5f7..00000000 --- a/_OMRbibliography/2011/Pinto_Music_score_binarization_based_on_domain_knowledge_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Pinto, Telmo, Ana Rebelo, Gilson Giralid, and Jaime Cardoso. 2011. “Music Score Binarization Based on Domain Knowledge.” In Pattern Recognition and Image Analysis, edited by Jordi Vitrià, João Miguel Sanches, and Mario Hernández, 700–708. Berlin: Springer. \ No newline at end of file diff --git a/_OMRbibliography/2011/Rajds_Mathematical_Morphology_in_the_Process_of_Musical_Notation_Recognition_2011.md b/_OMRbibliography/2011/Rajds_Mathematical_Morphology_in_the_Process_of_Musical_Notation_Recognition_2011.md deleted file mode 100644 index eafe95de..00000000 --- a/_OMRbibliography/2011/Rajds_Mathematical_Morphology_in_the_Process_of_Musical_Notation_Recognition_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Rajds, Arkadiusz. 2011. “Mathematical Morphology in the Process of Musical Notation Recognition.” In Advances in Intelligent and Soft Computing, 84:331–35. 2010. \ No newline at end of file diff --git a/_OMRbibliography/2011/Tambouratzis_Identification_of_key_music_symbols_for_optical_music_recognition_and_on-screen_presentation_2011.md b/_OMRbibliography/2011/Tambouratzis_Identification_of_key_music_symbols_for_optical_music_recognition_and_on-screen_presentation_2011.md deleted file mode 100644 index b4c4fb1a..00000000 --- a/_OMRbibliography/2011/Tambouratzis_Identification_of_key_music_symbols_for_optical_music_recognition_and_on-screen_presentation_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Tambouratzis, Tatiana. 2011. “Identification of Key Music Symbols for Optical Music Recognition and On-Screen Presentation.” In The 2011 International Joint Conference on Neural Networks (IJCNN), 1935–42. \ No newline at end of file diff --git a/_OMRbibliography/2012/Rebelo_Optical_music_recognition:_State_of_the_art_and_open_issues_for_handwritten_music_scores_2012.md b/_OMRbibliography/2012/Rebelo_Optical_music_recognition:_State_of_the_art_and_open_issues_for_handwritten_music_scores_2012.md deleted file mode 100644 index b8c4854e..00000000 --- a/_OMRbibliography/2012/Rebelo_Optical_music_recognition:_State_of_the_art_and_open_issues_for_handwritten_music_scores_2012.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2012 -year: 2012 ---- - -Rebelo, Ana, Ichiro Fujinaga, Filipe Paszkiewicz, Carlos Guedes, Andre Marcal, and Jaime Cardoso. 2012. “Optical Music Recognition: State of the Art and Open Issues for Handwritten Music Scores.” International Journal of Multimedia Information Retrieval 1 (3):173–90. \ No newline at end of file diff --git a/_OMRbibliography/2013/Steyn_Structuring_Music_through_Markup_Language:_Designs_and_Architectures_2013.md b/_OMRbibliography/2013/Steyn_Structuring_Music_through_Markup_Language:_Designs_and_Architectures_2013.md deleted file mode 100644 index 561f4878..00000000 --- a/_OMRbibliography/2013/Steyn_Structuring_Music_through_Markup_Language:_Designs_and_Architectures_2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Steyn, Jacques, ed. 2013. Structuring Music through Markup Language: Designs and Architectures. IGI Global. https://doi.org/10.4018/978-1-4666-2497-9. \ No newline at end of file diff --git a/_OMRbibliography/2013/Visaniy_ICDAR_2013_Music_scores_competition:_Staff_removal_2013.md b/_OMRbibliography/2013/Visaniy_ICDAR_2013_Music_scores_competition:_Staff_removal_2013.md deleted file mode 100644 index 39102616..00000000 --- a/_OMRbibliography/2013/Visaniy_ICDAR_2013_Music_scores_competition:_Staff_removal_2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Visaniy, Muriel, Van Cuong Kieu, Alicia Fornés, and Nicholas Journet. 2013. “ICDAR 2013 Music Scores Competition: Staff Removal.” In Proceedings of the International Conference on Document Analysis and Recognition, 1407–11. \ No newline at end of file diff --git a/_OMRbibliography/2014/Montagner_Learning_to_remove_staff_lines_from_music_score_images_2014.md b/_OMRbibliography/2014/Montagner_Learning_to_remove_staff_lines_from_music_score_images_2014.md deleted file mode 100644 index 0818ef69..00000000 --- a/_OMRbibliography/2014/Montagner_Learning_to_remove_staff_lines_from_music_score_images_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Montagner, Igor, Roberto Hirata Jr., and Nina Hirata. 2014. “Learning to Remove Staff Lines from Music Score Images.” In Proceedings of the IEEE International Conference on Image Processing, 2614–18. https://doi.org/DOI:http://dx.doi.org/10.1109/ICIP.2014.7025529. \ No newline at end of file diff --git a/_OMRbibliography/2015/Shi_An_end-to-end_trainable_neural_network_for_image-based_sequence_recognition_and_Its_application_to_scene_text_recognition_2015.md b/_OMRbibliography/2015/Shi_An_end-to-end_trainable_neural_network_for_image-based_sequence_recognition_and_Its_application_to_scene_text_recognition_2015.md deleted file mode 100644 index 86abc311..00000000 --- a/_OMRbibliography/2015/Shi_An_end-to-end_trainable_neural_network_for_image-based_sequence_recognition_and_Its_application_to_scene_text_recognition_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Shi, Baoguang, Xiang Bai, and CongYao. 2015. An end-to-end trainable neural network for image-based sequence recognition and Its application to scene text recognition. arXiv preprint. \ No newline at end of file diff --git a/_OMRbibliography/2015/Wen_A_new_optical_music_recognition_system_based_on_combined_neural_network_2015.md b/_OMRbibliography/2015/Wen_A_new_optical_music_recognition_system_based_on_combined_neural_network_2015.md deleted file mode 100644 index 9bc0779d..00000000 --- a/_OMRbibliography/2015/Wen_A_new_optical_music_recognition_system_based_on_combined_neural_network_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Wen, Cuihong, Ana Rebelo, Jing Zhang, and Jaime Cardoso. 2015. “A New Optical Music Recognition System Based on Combined Neural Network.” Pattern Recognition Letters 58:1–7. \ No newline at end of file diff --git a/_OMRbibliography/2017/Greet_Improved_Optical_Music_Recognition_(OMR)_2017.md b/_OMRbibliography/2017/Greet_Improved_Optical_Music_Recognition_(OMR)_2017.md deleted file mode 100644 index 39738045..00000000 --- a/_OMRbibliography/2017/Greet_Improved_Optical_Music_Recognition_(OMR)_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Greet, Justin. 2017. “Improved Optical Music Recognition (OMR).” http://cs231n.stanford.edu/reports/2017/pdfs/20.pdf. \ No newline at end of file diff --git a/_OMRbibliography/2019/Pacha_Learning_Notation_Graph_Construction_for_Full-Pipeline_Optical_Music_Recognition_2019.md b/_OMRbibliography/2019/Pacha_Learning_Notation_Graph_Construction_for_Full-Pipeline_Optical_Music_Recognition_2019.md deleted file mode 100644 index a6c538c6..00000000 --- a/_OMRbibliography/2019/Pacha_Learning_Notation_Graph_Construction_for_Full-Pipeline_Optical_Music_Recognition_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Pacha, Alexander, and Jorge Calvo-Zaragoza. 2019. “Learning Notation Graph Construction for Full-Pipeline Optical Music Recognition.” In Proceedings of the 20th International Society for Music Information Retrieval Conference (ISMIR), 8. at Delft, the Netherlands. https://archives.ismir.net/ismir2019/paper/000006.pdf. \ No newline at end of file diff --git a/_activities/media.md b/_activities/media.md deleted file mode 100644 index 4f88e5e6..00000000 --- a/_activities/media.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: page -title: Media ---- - -{% assign media_years = site.media | map: 'presentation_year' | uniq | sort | reverse %} - -{% for year in media_years %} -## {{ year }} -
    -{% assign media_list = site.media | sort: 'content' %} -{% for item in media_list %} - {% if item.presentation_year == year %} - * {{ item.content }} - {% endif %} -{% endfor %} -
    -{% endfor %} diff --git a/_activities/posters.md b/_activities/posters.md deleted file mode 100644 index 8e10b9ac..00000000 --- a/_activities/posters.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: page -title: Posters ---- - -{% assign posters_years = site.posters | map: "presentation_year" | uniq | reverse %} - -{% for year in posters_years %} -## {{ year }} -
    -{% assign posters_list = site.posters | sort: 'content' %} -{% for item in posters_list %} -{% if item.presentation_year == year %} -* {{ item.content }} -{% endif %} -{% endfor %} -
    -{% endfor %} diff --git a/_activities/presentations.md b/_activities/presentations.md deleted file mode 100644 index a8bf06ad..00000000 --- a/_activities/presentations.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -layout: page -title: Presentations ---- - -{% assign presentation_years = site.presentations | map: "presentation_year" | uniq | reverse %} - -{% for year in presentation_years %} -## {{ year }} -
    -{% assign presentation_list = site.presentations | sort: 'content' %} -{% for presentation in presentation_list %} -{% if presentation.presentation_year == year %} -* {{ presentation.content }} -{% endif %} -{% endfor %} -
    -{% endfor %} - - - - diff --git a/_activities/publications.md b/_activities/publications.md deleted file mode 100644 index d86d7511..00000000 --- a/_activities/publications.md +++ /dev/null @@ -1,80 +0,0 @@ ---- -layout: page -title: Publications ---- - -{% assign publication_years = site.publications | map: "year" | uniq | reverse %} - -{% for year in publication_years %} -## {{ year }} -
    -{% assign publication_list = site.publications | sort: 'content' %} -{% for publication in publication_list %} - {% if publication.year == year %} - * {{ publication.content }} - {% endif %} -{% endfor %} -
    -{% endfor %} - - - - - \ No newline at end of file diff --git a/_config.yml b/_config.yml deleted file mode 100644 index 1b7cf03c..00000000 --- a/_config.yml +++ /dev/null @@ -1,57 +0,0 @@ -# Permalinks -# -# Use of `relative_permalinks` ensures post links from the index work properly. -permalink: pretty - -# Setup -title: DDMAL -tagline: 'Distributed Digital Music Archives & Libraries Lab' -description: 'A reserved Jekyll theme that places the utmost gravity on content with a hidden drawer. Made by @mdo.' -url: '' -baseurl: '' - -gem "github-pages", group: :jekyll_plugins -permalinks: true - -plugins: - - jekyll-redirect-from - -sass: - sass_dir: _sass - -collections: - activities: - output: true - media: - output: true - presentations: - output: true - publications: - output: true - posters: - output: true - OMRbibliography: - output: true - research: - output: true - software: - output: true - omr: - output: true - resources: - output: true - events: - output: true - people: - output: true - lab_members: - output: true - -# About/contact -author: - name: Mark Otto - url: https://twitter.com/mdo - email: markdotto@gmail.com - -# Custom vars -version: 1.0.0 diff --git a/_events/events.md b/_events/events.md deleted file mode 100644 index 5331ff1a..00000000 --- a/_events/events.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: page -title: Events -tab: Events -permalink: /events/ ---- - -* [ISMIR 2022](https://ismir2022.ismir.net/), December, Bengaluru, Hybrid -* [LinkedMusic Project Meeting 2022](https://linkedmusic.ca/activities/), November, Montreal/Online -* [ISMIR 2021](https://ismir2021.ismir.net/), November, Online -* [Music Encoding Conference 2021](https://music-encoding.org/conference/2021/), July, University of Alicante -* [LinkedMusic Workshop](https://linkedmusic.ca), October 2021, Montreal -* [ISMIR 2020](https://ismir2020.ismir.net/), October, Montreal/Online (We hosted!) -* [Music Encoding Conference 2020](https://music-encoding.org/conference/2020/), May, Tufts University -* [SIMSSA Workshops](https://simssa.ca/activities/workshops/) -* [ISMIR 2019](https://ismir2019.ewi.tudelft.nl/), November, Delft, The Netherlands -* [Music Encoding Conference 2019](https://music-encoding.org/conference/2019/), May-June, University of Vienna -* [ISMIR 2018](https://ismir2018.ismir.net/), September, Paris, France -* [Music Encoding Conference 2018](https://music-encoding.org/conference/2018/), May, University of Maryland College Park -* [ISMIR 2017](https://ismir2017.smcnus.org/), October, Suzhou, China -* [Music Encoding Conference 2017](https://music-encoding.org/conference/2017/), May, Centre d’études supérieures de la Renaissance (CESR) – University of Tours - -[Older events]({{ site.url }}/events/older_events/) diff --git a/_events/older_events/older_events.md b/_events/older_events/older_events.md deleted file mode 100644 index 85098649..00000000 --- a/_events/older_events/older_events.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: page -title: Older Events -tab: Events -permalink: /events/older_events/ ---- - -* [ISMIR 2016](http://www.wp.nyu.edu/ismir2016/), August, New York City, USA -* [Music Encoding Conference 2016](https://music-encoding.org/conference/2016/), May, McGill University (We hosted!) -* [ISMIR 2015](http://ismir2015.uma.es/), October, Malaga, Spain. -* [Workshop on SIMSSA: Single Interface for Music Score Searching and Analysis](http://www.cirmmt.org/activities/workshops/research/simssa0914/event), Montréal, Canada. -* [ISMIR 2014](http://ismir2014.ismir.net/), October, Taipei, Taiwan. -* [ISMIR 2011](http://ismir2011.ismir.net/), October, Miami, Florida. -* [ISMIR 2009](http://ismir2009.ismir.net/), October 26-30, Kobe, Japan -* [Symposium on Empirical Methods for Music Theorists]({{ site.url }}/events/previous_events/symposium_on_empirical_methods_for_music_theorists/) -* [Workshop on Expressive Performance]({{ site.baseurl}}/events/previous_events/workshop_on_expressive_performance/) diff --git a/_events/older_events/symposium_on_empirical_methods_for_music_theorists.md b/_events/older_events/symposium_on_empirical_methods_for_music_theorists.md deleted file mode 100644 index 8c6ca568..00000000 --- a/_events/older_events/symposium_on_empirical_methods_for_music_theorists.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -layout: page -title: Symposium on Empirical Methods for Music Theorists -tab: Events ---- - -The Music Cognition Interest Group of SMT and CIRMMT Research Axis 5 (Music Perception and Cognition) is pleased to announce a Symposium on Empirical Methods to take place immediately following the upcoming SMT meeting in Montreal. - -This symposium is intended to serve music theorists who have little or no background in empirical methodology, and to serve as the capstone to a cognition-laden conference experience, beginning with the MCG regular meeting (Saturday noon-2 p.m) and the MCG-sponsored Special Session on Saturday at 8 p.m. (). - -Program - -Sunday November 1 - -2:00-2:15 Introductions - -2:15-3:15 Stephen McAdams and Finn Upham Dealing with subjective musical experience in time: Challenges in interpreting continuous-response measures -In the last thirty years, the technology to record listeners' experience of music continuously in time has become more and more accessible, developing from a few handcrafted sensors to ipod applications. Now the question is how to analyse these piles of time series data to get statistics relevant to the musical experience. With examples of subjective familiarity and emotional intensity ratings, we will discuss how to handle this highly variable data, common challenges and pitfalls, and how we can look for relationships to musical form and other dynamic musical feature. - -3:15-4:00 Marcelo Wanderley Motion capture of music performances: Advantages and limitations -Motion capture (MoCap) is a series of techniques that allow for the (very) accurate recording of human movements. Commonly available MoCap systems are based on (active and passive) infrared, electromagnetic, ultra-sound, mechanical, inertial and hybrid technologies. Such systems vary tremendously in complexity and price depending on the technique and the size of the capture space, from a few thousand to several hundred thousand dollars, basically limiting their use to research laboratories. But independent of their price, another limitation for the widespread use of MoCap systems to the analysis of musical performer users is, in many cases, their lack of accurate synchronization between audio and MoCap data. Such a feature is essential in the analysis of music performance if one wants to accurately relate the acquired movement to a musical event (e.g. a note played). In this talk, I will review various MoCap technologies and discuss ways to circumvent synchronization limitations in various MoCap systems available at the Input Devices and Music Interaction Laboratory at McGill. Examples will be provided illustrating the use of MoCap to the analysis and synthesis of performer movements. -4:00-4:30 Johanna Devaney Techniques for extracting performance data from audio recordings -There is a wealth of information available in recording performances. Interest in studying this information dates back almost as far as the birth of recordable media. While early studies were extremely arduous and entirely manual, today there are numerous options for semi-automatic and automatic extraction of performance data. This talk will survey a number of such tools and will consider the various challenges that arise when extracting and studying performance parameters. - -4:30-5:00 Discussion - -5:00-7:00 Reception - -Monday November 2 - -9:00-10:00 Caroline Palmer The role of sensory feedback in performance -Musicians perform sucessfully under a wide variety of feedback conditions due to changes in musical instruments, architectural environments, and sound transmission issues such as wearing headphones in a studio versus live conditions in a concert venue. The sensory feedback (auditory, visual, tactile/proprioceptive) available to performers differs across these conditions, and in fact is rarely the same from one performance to another. I will review recent research that demonstrates performers' sensitivities and insensitivities to changes in sensory feedback, and how their performances are altered in both solo and ensemble performance. Examples will be provided from motion capture experiments that demonstrate changes in resulting sound and motion of performers due to changes in sensory feedback. -10:00-12:00 David Huron From Idea to Experiment -Music theorists have a long history of identifying and framing highly interesting and sometimes vexing problems surrounding music as heard and conceptualized. Studying these problems in a rigorous fashion, however, is another matter. In this 2-hour session, symposium attendees will work through three small-group activites, tracing out a general Question-to-Theory-to-Conjecture-to-Hypothesis-to-Protocol procedure. -Location - -The workshop will be held at the Schulich School of Music of McGill University in room A-832 of the New Music Building (555 Rue Sherbrooke Ouest). - -Registration - -An online form is available at . Registration is limited to 30 people due to space constraints, so please ensure that you are able to attend before registering. A link to this online form is also available via the SMT site at - -We plan to collect a small registration fee at the door (no more than $20) to assist CIRMMT with the cost of the Sunday evening reception and Monday morning coffee & pastries. - -Organizers - -Johanna Devaney, Schulich School of Music of McGill University -Peter Martens, Texas Tech University School of Music diff --git a/_events/older_events/workshop_on_expressive_performance.md b/_events/older_events/workshop_on_expressive_performance.md deleted file mode 100644 index fb3707b1..00000000 --- a/_events/older_events/workshop_on_expressive_performance.md +++ /dev/null @@ -1,81 +0,0 @@ ---- -layout: page -title: Workshop on Expressive Performance -tab: Events ---- - -CIRMMT Axis Three ("Musical information archiving and retrieval") presents a half-day workshop in Montreal on the topic of expressive performance The schedule will include two keynote talks by Roger Dannenberg (Carnegie Mellon University) and Christopher Raphael (Indiana University), several 20 minute talks, a poster session accompanied by a wine and cheese, and plenty of time for informal discussion between researchers interested in expressive performance. -
    - -## Location - -BRAMS (Université de Montréal) -
    - -## Schedule - -1:00-1:30 - Johanna Devaney, Schulich School of Music, McGill University - -An Overview of Empirical Performance Analysis - -I will present a historical overview of empirical performance analysis, with a particular focus on work that attempts to model or describe various aspects of performance. I will also discuss the challenges of automatically extracting performance data from audio signals, with a focus on the singing voice. - -1:30-2:30 - Roger Dannenberg, School of Computer Science, Carnegie Mellon University - -Timing in Live Performance of Beat-Based Music - -Expressive timing is often studied in connection with Western art music in which timing has been shown to be related to music structure and emotion. Relatively little attention has been paid to timing in what I will call "beat-based music," that is, music that is normally performed at a steady tempo. While there has been much interest in automatic tempo estimation and automated beat tracking or "foot tapping", relatively little study has been made of data. I have been capturing beat data from live performances. While this is still work in progress, I would like to share some data on actual tempo variation in live performances of different types, some new techniques to estimate the accuracy of human timing through foot pedals and hand tapping relative to the "true" beat which is not directly observable, and finally some results that show we can estimate the next true beat time using previous tap data more accurately than a human can tap. - -2:30-3:00 - Steven Livingstone, Department of Psychology, McGill University - -Changing Musical Emotion through Score and Performance with a Computational Rule System - -Can the emotion of a musical work be changed through the modification of simple compositional and performance cues? To answer this question, CMERS was developed - a Computational Music Emotion Rule System for the control of perceived musical emotions that modifies a work at the levels of score and performance in real-time. Two rounds of perceptual testing were conducted with CMERS. In experiment 1, twenty participants responded to three music works, each with five variations: normal, happy, angry, sad, and tender. Participants gave continuous responses on a two-dimensional feedback tool (arousal and valence). System accuracy of 78% was achieved with significant shifts in valence and arousal. In experiment 2, CMERS was compared with Director Musices, an existing rule system which does not possess important score rules. Eighteen participants performed the same task; two works produced by CMERS and two by DM; each with five variations. Accuracy of CMERS and DM was 71% and 49% respectively. CMERS achieved significant shifts in both valence and arousal, while DM only achieved shifts in arousal. These results suggest the perceived emotion of music can be shifted through the manipulation of simple cues, and that aspects of the score are critical for controlling the valence of a music work. - -3:00-3:30 - Ichiro Fujinaga, Schulich School of Music, McGill University - -Do Key-bottom Sounds Distinguish Piano Tones?* - -* Paper co-authored by Werner Goebl - -The timbre of a single piano tone as well as its loudness is primarily determined by the speed at which the hammer hits the strings (final hammer velocity). However, the overall sound may also be influenced by impact sounds such as the hammer-string or the finger-key impact sounds. Especially the latter can be varied with playing technique (touch) and is easily perceptible. Little is known about the nature of sounds that emerge from the interaction of key and keybed, which is the large piece of wood underneath the keys. In this study, we investigate whether the absence or presence of a key hitting the keybed makes two otherwise identical piano tones distinguishable by expert listeners. A skilled pianist produced a number of isolated tones on a computer-monitored Bösendorfer grand piano ("CEUS") that measures the loudness and onset timing of the tones as well as the continuous position of the keys. We selected tone pairs that were identical in pitch, loudness, and tone length, but with or with out a key-keybed contact. The key-keybed contact was identified from the recorded key trajectories. Overall, the participants performed the task very well, significantly better than chance (82% correct); specifically the difference of a tone pair was even better identified (82.7% correct). F7 was slightly easier to rate than E7; there was no effect of loudness. Even though the investigated key-bottom sounds are subtle compared to other sound components, our results confirm that they can indeed audibly influence the timbre of a piano tone. The investigated effect may indeed have ecological relevance, as many important listening situations occur in the vicinity of the piano keyboard (e.g., piano practicing and piano lessons). - -3:30-3:45 - Coffee Break - -3:45-4:45 - Christopher Raphael, School of Informatics, Indiana University - -Expressive Synthesis of Melody and Musical Prosody - -I will describe ongoing work in expressive melody synthesis. This effort is focussed on musical prosody --- the use and avoidance of stress in music and the associated grouping it creates. I will represent a prosodic interpretation as a note-level markup using a small alphabet of symbols. I will show that this markup can be used to generate expressive performance through a deterministic mapping from markup and score to audio. I will also look at the machine-learning problem of estimating this prosodic markup. The examples use a small collection of 50-or-so folk like melodies that have been hand annotated with prosody. - -4:45-5:15 - Alexandre Bouënard, Schulich School of Music, McGill University - -Going Beyond Motion Capture Data: An Application for Synthesizing Expressive Percussion Performances* - -* Paper co-authored by Marcelo M. Wanderley and Sylvie Gibet - -The increasing availability of software for creating real-time simulations of musical instruments allows for the design of new visual and sounding media. Nevertheless, from a conceptual and pratical point of view, the question of how these new instruments can be controlled has rarely been addressed in the literature. We present a framework for the control of virtual percussion instruments by modeling and simulating virtual percussionists, based on a motion capture database and on a physically-based movement simulation environment. We discuss the benefits and limits of such an approach as a means of synthesizing new expressive percussion performances. - -5:15-5:45 - Douglas Eck, Department of Computer Science, University of Montreal - -Learning from performances with and without scores - -I will discuss work done with Stanislas Lauly on learning a performance model based on score-aligned artistic performances. I will focus mainly on how we represented the music in order to achieve (reasonable) success. I will then go on to talk about how to do something similar without having access to a score. I will suggest using a model able to find metrical structure via beat tracking as a noisy replacement for the score. Though I don't have performance results yet for this model, I am able to show some promising statistical analyses of our Boesendorfer datasets. - -5:45-6:30 - Poster session / Boesendorfer Demo with vin-fromage - -Stanislas Lauly - Department of Computer Science, University of Montreal - -Demo of automatically generated expressive performances of Schubert waltzes on Boesendorfer - -Michel Bernays, Faculty of Music, University of Montreal - -Piano Timbre: from words to gesture to sound: Perception, verbal description & gestural control of aggregate piano timbres by highly skilled pianists - -Timbre is a key to musical expressivity in virtuosic pianistic performance. When discussed amongst professionals, timbre is described with abstract terms such as dark, bright, round, velvety, shimmering, whose imagery aims at fitting the sonic nuances, but bypass the quantitative and functional characteristics of its production. Still, pianists seem able to avoid inter-individual misunderstandings in timbre description. This study then aims to determine the degree of consensus of this vocabulary among the pianistic community, and identify its gestural correlates at the keyboard level. A professional pianist played 3 short pieces, with 8 adjectives as successive instructions to color the performances, on the computer-controlled recording acoustic piano Bösendorfer CEUS, that gathered data on key movement and hammer velocity, from which to extract the specific gesture parameters with custom Matlab functions. The audio recordings were used as stimuli, over which the pianist himself proved easily capable of retrieving the timbres. In the main task, 17 other pianists provided a verbal description of each timbre they could recognize, which fitted the expected descriptor roughly one third of the time. The results got much more conclusive, and way above chance, once accounting for the semantic proximity between adjectives. This indicates the expressive intentions of a virtuosic pianist can be perceived by his peers and can be verbally described in a consensual way. Gesture analysis is now under way, with the aim of identifying meaningful correlations between statistics of synchronism, dynamics, touch, overlap, articulation, etc., and the timbres employed. - -Thomas Stoll, Department of Music, University at Buffalo - -Integrating Musical Expression into a Corpus-based Organizational System - -Corpus-based systems of musical material are comprised of audio that is segmented, categorized, and deployed as units based on parameters derived either from the audio itself, user-generated tags, or some extra-musical data. The possibilities of encoding musical meaning and structure into the collection of sonic units via segmentation and organization are both of utmost concern to the user. The features encoded within the units may exhibit particular expressive qualities individually or collectively and fuel algorithms that reorder units in interesting ways. The material presented here comes out of ongoing research and creative work aimed at exploring the many various aspects of sound organized within corpora. It is quite open-ended owing to the extensive possibilities afforded by the corpus-based framework. diff --git a/_includes/footer.html b/_includes/footer.html deleted file mode 100644 index d79c3320..00000000 --- a/_includes/footer.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - -
    diff --git a/_includes/head.html b/_includes/head.html deleted file mode 100644 index 01ab5f69..00000000 --- a/_includes/head.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - {% if page.title == "Home" %} - {{ site.title }} · {{ site.tagline }} - {% else %} - {{ page.title }} · {{ site.title }} - {% endif %} - - - - - - - - - - - - - - - - - - diff --git a/_includes/sidebar.html b/_includes/sidebar.html deleted file mode 100644 index 5b201874..00000000 --- a/_includes/sidebar.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - diff --git a/_includes/social_links.html b/_includes/social_links.html deleted file mode 100644 index 9e8cbee2..00000000 --- a/_includes/social_links.html +++ /dev/null @@ -1,44 +0,0 @@ -{% assign svg_size = 22 %} - - diff --git a/_includes/textpic.html b/_includes/textpic.html deleted file mode 100644 index 3d30d0ae..00000000 --- a/_includes/textpic.html +++ /dev/null @@ -1,4 +0,0 @@ -
    - -
    {{ include.text }}
    -
    diff --git a/_includes/ulist.html b/_includes/ulist.html deleted file mode 100644 index 133adb54..00000000 --- a/_includes/ulist.html +++ /dev/null @@ -1,31 +0,0 @@ -
      - - {% assign list = include.list | split: "; " %} - - {% for item in list %} - {% if item != null %} - {% if item contains "(l)" %} - - {% assign name = item | split: "(l)" | first %} - - {% if name contains ":" %} - -
    • {{ item | split: "(l)" | first | split: ":" | first }}: {{ item | split: "(l)" | first | split: ":" | last }}
    • - - {% else %} - -
    • {{ item | split: "(l)" | first }}
    • - - {% endif %} - - {% else %} - -
    • {{ item }}
    • - - {% endif %} - - {% endif %} - - {% endfor %} - -
    diff --git a/_lab_members/alumni/adam_tindale.md b/_lab_members/alumni/adam_tindale.md deleted file mode 100644 index 1dc64ebd..00000000 --- a/_lab_members/alumni/adam_tindale.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - personal_webpage: http://www.adamtindale.com/ -title: Adam Tindale ---- - -Adam Tindale is currently affiliated with: OCAD University \ No newline at end of file diff --git a/_lab_members/alumni/alastair_porter.md b/_lab_members/alumni/alastair_porter.md deleted file mode 100644 index a7d74a0c..00000000 --- a/_lab_members/alumni/alastair_porter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -category: Alumni -layout: lab_member -neon: developer -photo: placeholder.png -social: - personal_webpage: https://www.dtic.upf.edu/~aporter/ -title: Alastair Porter ---- - -Alastair Porter is currently affiliated with: Universitat Pompeu Fabra \ No newline at end of file diff --git a/_lab_members/alumni/alex_daigle.md b/_lab_members/alumni/alex_daigle.md deleted file mode 100644 index 3e4407cc..00000000 --- a/_lab_members/alumni/alex_daigle.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Alex Daigle -degree: MA in Music Technology -photo: Alex_Daigle_2019.png -social: - github_username: deepio - instagram_username: global2alex - personal_webpage: https://alexdaigle.com/2/ -current_focus: Optical music recognition software and music engraving software -research_interests: - - Music Information Retrieval - - Image Processing - - Cyber Security - - Machine Learning -academic_record: - - St. Thomas University Alumni - - Berklee College of Music Alumni - - Current student at McGill University ---- - - - -Drumming and programming has been his passions since Alex was very little, and it is this passion that drove him to constantly work at developing his skills as an artist, and, as a programmer. "Affecting people with performance or instruction is what makes all of the hard work and dedication worth it" he says. A natural evolution occurred when he combined his too passions of music and technology. He is currently researching music engraving software and optical music recognition software in order to optimize the generation of symbolic representations of music for large scale database generation. - -In his spare time Alex participates in Capture the Flag computer competitions competitions and continues to teach drumset performance. diff --git a/_lab_members/alumni/alexandre_parmentier.md b/_lab_members/alumni/alexandre_parmentier.md deleted file mode 100644 index f9dc3d8f..00000000 --- a/_lab_members/alumni/alexandre_parmentier.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - github_username: agpar -title: Alexandre Parmentier ---- - -Alexandre Parmentier is currently affiliated with: University of Waterloo \ No newline at end of file diff --git a/_lab_members/alumni/andrew_fogarty.md b/_lab_members/alumni/andrew_fogarty.md deleted file mode 100644 index 4224b75e..00000000 --- a/_lab_members/alumni/andrew_fogarty.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Andrew Fogarty ---- - -Andrew Fogarty is currently affiliated with: Microsoft \ No newline at end of file diff --git a/_lab_members/alumni/andrew_hankinson.md b/_lab_members/alumni/andrew_hankinson.md deleted file mode 100644 index 9b232172..00000000 --- a/_lab_members/alumni/andrew_hankinson.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -category: Alumni -layout: lab_member -neon: project-manager -photo: placeholder.png -social: - personal_webpage: https://andrewhankinson.info/ -title: Andrew Hankinson ---- - -Andrew Hankinson is currently affiliated with the RISM Digital Center, Bern, Switzerland. diff --git a/_lab_members/alumni/andrew_horwitz.md b/_lab_members/alumni/andrew_horwitz.md deleted file mode 100644 index 2ff2b060..00000000 --- a/_lab_members/alumni/andrew_horwitz.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Andrew Horwitz ---- - -Andrew Horwitz is currently affiliated with: RILM \ No newline at end of file diff --git a/_lab_members/alumni/anton_khelou.md b/_lab_members/alumni/anton_khelou.md deleted file mode 100644 index dba903e8..00000000 --- a/_lab_members/alumni/anton_khelou.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Anton Khelou ---- - -Anton Khelou is currently affiliated with: Autodesk \ No newline at end of file diff --git a/_lab_members/alumni/arielle_goldman.md b/_lab_members/alumni/arielle_goldman.md deleted file mode 100644 index d16fe9e8..00000000 --- a/_lab_members/alumni/arielle_goldman.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Arielle Goldman ---- \ No newline at end of file diff --git a/_lab_members/alumni/ashley_burgoyne.md b/_lab_members/alumni/ashley_burgoyne.md deleted file mode 100644 index da7209d8..00000000 --- a/_lab_members/alumni/ashley_burgoyne.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Ashley Burgoyne ---- - -Ashley Burgoyne is currently affiliated with: University of Amsterdam \ No newline at end of file diff --git a/_lab_members/alumni/beinan_li.md b/_lab_members/alumni/beinan_li.md deleted file mode 100644 index 5478b9f2..00000000 --- a/_lab_members/alumni/beinan_li.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Beinan Li ---- - -Beinan Li is currently affiliated with: Audiokinetic \ No newline at end of file diff --git a/_lab_members/alumni/brian_stern.md b/_lab_members/alumni/brian_stern.md deleted file mode 100644 index 6aaa7901..00000000 --- a/_lab_members/alumni/brian_stern.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Brian Stern ---- - -Brian Stern is currently affiliated with: ToonBox Entertainment \ No newline at end of file diff --git a/_lab_members/alumni/catherine_lai.md b/_lab_members/alumni/catherine_lai.md deleted file mode 100644 index 5b4d86ff..00000000 --- a/_lab_members/alumni/catherine_lai.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - personal_webpage: http://catherinelai.blogspot.com/ -title: Catherine Lai ---- - -Catherine Lai is currently affiliated with: OSISoft \ No newline at end of file diff --git a/_lab_members/alumni/catherine_motuz.md b/_lab_members/alumni/catherine_motuz.md deleted file mode 100644 index 6b77f0f5..00000000 --- a/_lab_members/alumni/catherine_motuz.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Catherine Motuz ---- \ No newline at end of file diff --git a/_lab_members/alumni/chris_niven.md b/_lab_members/alumni/chris_niven.md deleted file mode 100644 index 709f113a..00000000 --- a/_lab_members/alumni/chris_niven.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Chris Niven ---- - -Chris Niven is currently affiliated with: Never Be Normal \ No newline at end of file diff --git a/_lab_members/alumni/christopher_antila.md b/_lab_members/alumni/christopher_antila.md deleted file mode 100644 index eb0b130f..00000000 --- a/_lab_members/alumni/christopher_antila.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Christopher Antila ---- \ No newline at end of file diff --git a/_lab_members/alumni/cory_mckay.md b/_lab_members/alumni/cory_mckay.md deleted file mode 100644 index d8f4d30a..00000000 --- a/_lab_members/alumni/cory_mckay.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - personal_webpage: http://www.music.mcgill.ca/~cmckay -title: Cory McKay ---- - -Cory McKay is currently affiliated with: Marianopolis College \ No newline at end of file diff --git a/_lab_members/alumni/daniel_mcennis.md b/_lab_members/alumni/daniel_mcennis.md deleted file mode 100644 index f0092464..00000000 --- a/_lab_members/alumni/daniel_mcennis.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Daniel McEnnis ---- \ No newline at end of file diff --git a/_lab_members/alumni/david_garfinkle.md b/_lab_members/alumni/david_garfinkle.md deleted file mode 100644 index ac8236b3..00000000 --- a/_lab_members/alumni/david_garfinkle.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: David Garfinkle -photo: David_Garfinkle_2019.jpg -social: - github_username: davidgarfinkle - linkedin_username: david-garfinkle-2b640876 -degree: M.Sc in Computer Science -current_focus: Content-Based Symbolic Music Retrieval -research_interests: - - Music Information Retrieval -academic_record: - - B.Mus focus in piano, McGill University - - B.Sc Mathematics & Computer Science, McGill University ---- - - - -David is pursuing a Master's in Computer Science at McGill. He is currently focused on implementing an excerpt retrieval system for symbolic music. - -Before starting his Master's, he received two bachelor's degrees from McGill: a B.Sc in Mathematics & Computer Science and a Bachelor of Music with a concentration in piano. During his undergraduate studies, he liked to perform musical improv theater and worked as a research assistant at DDMAL. - -Publications - -- Garfinkle, David, Peter Schubert, Claire Arthur, Julie Cumming, and Ichiro Fujinaga. “PatternFinder: Content-Based Music Retrieval with Music21.” In Proceedings of the 4th International Workshop on Digital Libraries for Musicology. Shanghai, China, 2017. diff --git a/_lab_members/alumni/deepanjan_roy.md b/_lab_members/alumni/deepanjan_roy.md deleted file mode 100644 index 1d587ff8..00000000 --- a/_lab_members/alumni/deepanjan_roy.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Deepanjan Roy ---- - -Deepanjan Roy is currently affiliated with: Google \ No newline at end of file diff --git a/_lab_members/alumni/eli_waksbaum.md b/_lab_members/alumni/eli_waksbaum.md deleted file mode 100644 index c6cfbf1f..00000000 --- a/_lab_members/alumni/eli_waksbaum.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Eli Waksbaum -degree: B.A. Mathematics and Computer Science -photo: -social: - github_username: eliwaksbaum - linkedin_username: eli-waksbaum - personal_webpage: https://eli.waksbaum.com ---- diff --git a/_lab_members/alumni/emily_hopkins.md b/_lab_members/alumni/emily_hopkins.md deleted file mode 100644 index f071988d..00000000 --- a/_lab_members/alumni/emily_hopkins.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Alumni # One of [Alumni, Masters, PhD, Postdoc, Principal, Manager, Undergraduate] -title: Emily Hopkins -photo: Hopkins.JPG -# cv: -social: - github_username: emilyhopkins -# linkedin_username: - twitter_username: e_a_hopkins -# personal_webpage: # ENTIRE URL -current_focus: Project Manager (SIMSSA) -research_interests: - - libraries - - metadata - - free software -academic_record: - - University of Alberta, Master of Library and Information Studies, 2020 - - McGill University, Master of Arts, Musicology, 2015 - - University of British Columbia, Bachelor of Music in Orchestral Instrument Performance (Oboe), 2011 -publications: - - Desmond, Karen, Emily Hopkins, Samuel Howes, and Julie E. Cumming. 2020. “Computer-Aided Analysis of Sonority in the French Motet Repertory, c. 1300-1350.” Music Theory Online 26 (4):26.4.2. - - Hopkins, Emily, Yaolong Ju, Gustavo Polins Pedro, Cory McKay, Julie Cumming, and Ichiro Fujinaga. 2019. “SIMSSA DB:` Symbolic Music Discovery and Search.” Poster (refereed) presented at the Digital Libraries for Musicology, The Hague, Netherlands, November. - - Ju, Yaolong, Gustavo Polins Pedro, Cory McKay, Emily Ann Hopkins, and Julie Cumming. 2019. “Enabling Music Search and Analysis: A Database for Symbolic Music Files.” Poster (refereed) presented at the Music Encoding Conference 2019, University of Vienna, Austria, May 30. - - McKay, Cory, Emily Hopkins, Gustavo Polins Pedro, Yaolong Ju, Andrew Kam, Julie Cumming, and Ichiro Fujinaga. 2019. “A Collaborative Symbolic Music Database for Computational Research on Music.” Presented at the Medieval and Renaissance Music Conference, Basel, Switzerland. - - Hopkins, Emily. 2017. “The SIMSSA Project: Search as Access to Digital Music Libraries.” Presented at the Access Conference 2017, Saskatoon, SK, September 27. - - Desmond, Karen, and Emily Hopkins. 2016. “Measuring Polyphony: Analysing Stylistic Change in the French Motet Repertory, C1300-1350.” Presented at the Workshop on SIMSSA VIII, McGill University, Montreal, QC, May 21. - - Penner, Nina, and Emily Hopkins. 2015. “Musicologists on GitHub: User Experience and the ELVIS Database.” Presented at the CIRMMT Workshop on usability and user experience for music information systems, McGill University, Montreal, QC, September 25. - - - ---- - -Emily Hopkins (she/her) has worked as the project manager for the SIMSSA Project (Single Interface for Music Score Searching and Analysis, simssa.ca) since 2015. She is also a member of Library Freedom Project ([libraryfreedom.org](libraryfreedom.org)). She graduated with her MLIS from the University of Alberta in 2020, and before that studied musicology (McGill) and oboe performance (UBC). diff --git a/_lab_members/alumni/evan_magoni.md b/_lab_members/alumni/evan_magoni.md deleted file mode 100644 index b898f14d..00000000 --- a/_lab_members/alumni/evan_magoni.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Evan Magoni ---- - -Evan Magoni is currently affiliated with: Autodesk \ No newline at end of file diff --git a/_lab_members/alumni/evan_savage.md b/_lab_members/alumni/evan_savage.md deleted file mode 100644 index 33634e72..00000000 --- a/_lab_members/alumni/evan_savage.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Evan Savage -degree: MA in Music Technology -photo: Evan_Savage_2019.jpg -cv: CV - Evan Savage.pdf -social: - github_username: evansavage - linkedin_username: evan-savage-45050694 - instagram_username: _s4v4ge - bandcamp_username: s4v4ge - soundcloud_username: s4v4ge1 - personal_webpage: https://evansavage.github.io/ # ENTIRE URL -current_focus: Generative Adversarial Networks (GANs) -research_interests: - - Machine Learning - - Music Information Retrieval - - Image Processing - - Digital Signal Processing -academic_record: - - BSc in Computer Science, Pennsylvania State University -publications: - # - hold - # - hold - # - hold ---- - - - -Evan is a second-year masters student at McGill. He received his bachelors degree from Penn State in Computer Science with minors in Music Technology and Arts Entrepreneurship. During his undergraduate studies, he played trombone for five seasons with the Penn State Marching Blue Band, co-founded the university's first arts entrepreneurship organization, and worked as a resident assistant for three years. - -Evan is researching the application of generative adversarial networks to create synthetic 12th-century chant manuscripts from scratch, and see whether novel and existing automatic transciption operations will yield higher accuracy when trained on extentable fake data instead of finite real data. As more real manuscript data is gathered, Evan will also consider how the fake data will generalize to previously 'unseen' handwriting styles, backgrounds, and non-musical information. - -High-stepping away from the football field and onto the dance floor, Evan is now an avid music producer and DJ in his spare time, mainly focusing on techno, trance, and ambient textures in his compositions. diff --git a/_lab_members/alumni/finn_upham.md b/_lab_members/alumni/finn_upham.md deleted file mode 100644 index f43a888a..00000000 --- a/_lab_members/alumni/finn_upham.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Finn Upham -degree: Postdoctoral researcher -photo: FinnUpham_350.jpg -cv: CV_Upham.pdf -social: - github_username: finn42 -# soundcloud_username: -# bandcamp_username: - twitter_username: finneco - personal_webpage: https://finnupham.com -# linkedin_username: -# instagram_username: - -current_focus: Perceived Complexity in Polyphonic Music -research_interests: - - Music Cognition - - Statistics - - Computational Music Analysis - - Psychophysiology - - Interdisciplinary Research Methods -academic_record: - - PhD in Music Technology, New York University - - MA in Music Technology, McGill University - - BMus in Music Theory, McGill University - - BSc in Mathematics and Statistics, McGill University -# publications: -# - hold -# - hold -# - hold ---- - -A recent PhD from New York University, Finn Upham brings together expertese in music cognition, music theory, and mathematics. They joined DDMAL in 2019 as a postdoc for the SIMSSA project, working with Prof. Julie Cumming on features of complexity in liturgical music in the 15th C. - -At NYU, Finn worked on statistics for continuous responses and respiration to music, supervised by Mary Farbood in music technology research at the Steinhardt School of Culture, Education and Human Development. Their previous studies at McGill involved research on continuous audience responses to music with Stephen McAdams in the Music Perception and Cognition Lab and with Tony Humphries on differential delay equations in Nonlinear Dynamics. - -Out of the lab, Finn produces The So Strangely Podcast on Recent Research in Music Science. Finn is nonbinary and uses they/them pronouns. diff --git a/_lab_members/alumni/gabriel_vigliensoni.md b/_lab_members/alumni/gabriel_vigliensoni.md deleted file mode 100644 index 36c55a61..00000000 --- a/_lab_members/alumni/gabriel_vigliensoni.md +++ /dev/null @@ -1,117 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Gabriel Vigliensoni -degree: Postdoctoral Researcher -photo: GVM_by_Manuela_Martelli_sq_sm.jpg -cv: https://drive.google.com/file/d/1-WnJR-oLb4hYAOXyKNabFnbeXDSH2h0X/view?usp=sharing -social: - github_username: vigliensoni - soundcloud_username: vigliensoni - bandcamp_username: vigliensoni - personal_webpage: https://vigliensoni.com -# linkedin_username: -# instagram_username: - -current_focus: Optical music recognition, AI-assisted music performance and composition. -research_interests: - - Music production - - Music composition - - Music recommendation - - Music listening behaviour - - Optical music recognition -academic_record: - - PhD in Music, McGill University - - MA in Music Technology, McGill University - - BA in Sound Science, Universidad de Chile -# publications: -# - hold -# - hold -# - hold ---- - -I am a musician and scholar who combines practice-based research with extensive studies in sound recording, music production, human- computer interaction, music information retrieval, and machine learning to design new approaches to music composition. Currently, I am a postdoctoral research fellow in the Department of Computing at Goldsmiths University of London, where I am investigating the creative capabilities and affordances of the deep learning paradigm for assisting musical composition. - - - - -

    Publications

    - - - -
    - -
    Vigliensoni, G., L. McCallum, E. Maestre, and R. Fiebrink. 2020. “Generation and visualization of rhythmic latent spaces.” In Proceedings of the 2020 Joint Conference on AI Music Creativity. Online.
    - -
    Vigliensoni, G., E. Maestre, and R. Fiebrink. 2020. “Web-based dynamic visualization of rhythmic latent space.” In Proceedings of the Sound, Image and Interaction Design Symposium (SIIDS2020). Online.
    - -
    Vigliensoni, G., L. McCallum, and R. Fiebrink. 2020. “Creating latent spaces for modern music genre rhythms using minimal training data.” In Proceedings of the International Conference on Computational Creativity (ICCC’20). Online.
    - -
    Regimbal, J., G. Vigliensoni, C. Hutnik, and I. Fujinaga. 2020. “IIIF-based lyric and neume editor for square-notation manuscripts.” In Proceedings of the Music Encoding Conference. Online.
    - -
    Fujinaga, Ichiro, and Gabriel Vigliensoni. 2019. “The Art of Teaching Computers: The SIMSSA Optical Music Recognition Workflow System.” In Proceedings of the 27th European Signal Processing Conference. https://doi.org/10.23919/EUSIPCO.2019.8902658.
    - -
    Vigliensoni, Gabriel, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2018a. “An Environment for Machine Pedagogy: Learning How to Teach Computers to Read Music.” In Joint Proceedings of the ACM Intelligent User Interface Workshops: Intelligent Music Interfaces for Listening and Creation (MILC). Tokyo, Japan. http://cloud.simssa.ca/index.php/s/bBK9N6gQTpPaKkl.
    - -
    Vigliensoni, Gabriel, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2018b. “Developing an Environment for Teaching Computers to Read Music.” In Proceedings of 1st International Workshop on Reading Music Systems. Paris, France. http://cloud.simssa.ca/index.php/s/ImKlwsuLoI099uI.
    - -
    Calvo-Zaragoza, Jorge, Francisco J. Castellanos, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Deep Neural Networks for Document Processing of Music Score Images.” Applied Sciences 8 (5):654. https://doi.org/10.3390/app8050654.
    - - -
    Castellanos, Francisco, Jorge Calvo-Zaragoza, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Document Analysis of Music Score Images with Selectional Auto Encoders.” In Proceedings of the 19th International Society for Music Information Retrieval Conference. Paris, France. http://cloud.simssa.ca/index.php/s/FjJGQ6josKEIWNn.
    - -
    Nápoles López, Néstor, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Encoding Matters.” In Proceedings of the 5th International Conference on Digital Libraries for Musicology, 69–73. DLfM ’18. New York, NY, USA: ACM. https://doi.org/10.1145/3273024.3273027.
    - -
    Vigliensoni, Gabriel, and Ichiro Fujinaga. 2017. “The Music Listening Histories Dataset.” In Proceedings of the International Society for Music Information Retrieva, 96–102. Suzhou, China. http://cloud.simssa.ca/index.php/s/HUvFrpFl0ErRVz9.
    - - - -
    Vigliensoni, Gabriel. 2017. “Evaluating the Performance Improvement of a Music Recommendation Model by Using User-Centric Features.” PhD diss., Montreal, QC: McGill University. http://cloud.simssa.ca/index.php/s/QHcj2J9rQfM9fm8.
    - - -
    Calvo-Zaragoza, J., G. Vigliensoni, and I. Fujinaga. 2017. “Pixelwise Classification for Music Document Analysis.” In 2017 Seventh International Conference on Image Processing Theory, Tools and Applications (IPTA), 1–6. https://doi.org/10.1109/IPTA.2017.8310134.
    - - -
    Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017a. “A Machine Learning Framework for the Categorization of Elements in Images of Musical Documents.” In Proceedings of the Third International on Technologies for Music Notation and Representation (TENOR 2017). La Coruña, Spain. http://cloud.simssa.ca/index.php/s/NExq8IWkue2IjCH.
    - -
    Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017b. “One-Step Detection of Background, Staff Lines, and Symbols in Medieval Music Manuscripts with Convolutional Neural Networks.” In Proceedings of the International Society for Music Information Retrieval, 724–30. Suzhou, China. http://cloud.simssa.ca/index.php/s/JuPGmwlvAP9ckkR.
    - -
    Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017c. “Pixel-Wise Binarization of Musical Document with Convolutional Neural Networks.” In Proceedings of the 15th IAPR International Conference on Machine Vision Applications, 362–65. Nagoya, Japan. http://cloud.simssa.ca/index.php/s/17ZXOEHz87iIzHM.
    - -
    Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017d. “Staff-Line Detection on Grayscale Images with Pixel Classification.” In Pattern Recognition and Image Analysis, edited by Luís A. Alexandre, José Salvador Sánchez, and João M. F. Rodrigues, 279–86. Lecture Notes in Computer Science. Springer International Publishing. http://cloud.simssa.ca/index.php/s/tZswNa5gjwkoatf.
    - -
    Calvo-Zaragoza, Jorge, Ké Zhang, Zeyad Saleh, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017. “Music Document Layout Analysis through Machine Learning and Human Feedback.” In 2017 14th IAPR International Conference on Document Analysis and Recognition (ICDAR), 02:23–24. Tokyo, Japan. https://doi.org/10.1109/ICDAR.2017.259.
    - - -
    Saleh, Zeyad, Ké Zhang, Jorge Calvo-Zaragoza, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017. “Pixel.Js: Web-Based Pixel Classification Correction Platform for Ground Truth Creation.” In Proceedings of the Twelfth IAPR International Workshop on Graphics Recognition, 2:39-40. Kyoto, Japan: Springer LNCS. http://cloud.simssa.ca/index.php/s/7rWLN8VW6lXL8i7.
    - -
    Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2016. “Document Analysis for Music Scores via Machine Learning.” In Proceedings of the 3rd International Workshop on Digital Libraries for Musicology, 37–40. DLfM 2016. New York, NY, USA: ACM. https://doi.org/10.1145/2970044.2970047.
    - - - -
    Vigliensoni, Gabriel, and Ichiro Fujinaga. 2014. “Identifying Time Zones in a Large Dataset of Music Listening Logs.” In Proceedings of the International Workshop on Social Media Retrieval and Analysis, 27–32. Gold Coast, Australia. http://cloud.simssa.ca/index.php/s/XHUtAQXBI8zEOyx.
    - - -
    Vigliensoni, Gabriel, Gregory Burlet, and Ichiro Fujinaga. 2013. “Optical Measure Recognition in Common Music Notation.” In Proceedings of the 14th International Society for Music Information Retrieval Conference (ISMIR), 125–30. Curitiba, Brazil. http://cloud.simssa.ca/index.php/s/e91SMTDZgP7XtNd.
    - - -
    Hankinson, Andrew, John Ashley Burgoyne, Gabriel Vigliensoni, and Ichiro Fujinaga. 2012. “Creating a Large-Scale Searchable Digital Collection from Printed Music Materials.” In Proceedings of the World Wide Web Conference, 903–908. Lyon, FR. http://cloud.simssa.ca/index.php/s/g4kY4j3CzEa6vT6.
    - -
    Hankinson, Andrew, John Ashley Burgoyne, Gabriel Vigliensoni, Alastair Porter, Jessica Thompson, Wendy Liu, Remi Chiu, and Ichiro Fujinaga. 2012. “Digital Document Image Retrieval Using Optical Music Recognition.” In Proceedings of 13th International Society for Music Information Retrieval Conference (ISMIR). Porto, Portugal. http://cloud.simssa.ca/index.php/s/YN1gYHw0mRor9rE.
    - - - - - - - -
    Vigliensoni, Gabriel, John Ashley Burgoyne, Andrew Hankinson, and Ichiro Fujinaga. 2011. “Automatic Pitch Detection in Printed Square Notation.” In Proceedings of the 12th International Society for Music Information Retrieval Conference (ISMIR), 423–28. Miami, FL. http://cloud.simssa.ca/index.php/s/yxAuJOiZau6LMOL.
    - - - - - - - - -
    Vigliensoni, Gabriel, Cory McKay, and Ichiro Fujinaga. 2010. “Using JWebMiner 2.0 to Improve Music Classification Performance by Combining Different Types of Features Mined from the Web.” In Proceedings of the International Society for Music Information Retrieval Conference, 607–12. Utrecht. http://cloud.simssa.ca/index.php/s/epYWZBSMmtbknUo.
    diff --git a/_lab_members/alumni/gabrielle_halpin.md b/_lab_members/alumni/gabrielle_halpin.md deleted file mode 100644 index 347fd84c..00000000 --- a/_lab_members/alumni/gabrielle_halpin.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Gabrielle Halpin -# degree: -photo: Gabrielle_Halpin.JPG -# cv: -social: - github_username: GabbyHalpin - linkedin_username: gabriellehalpin -# instagram_username: -# personal_webpage: -# current_focus: -# research_interests: - -# academic_record: -# - -# publications: -# - hold -# - hold -# - hold ---- - diff --git a/_lab_members/alumni/greg_eustace.md b/_lab_members/alumni/greg_eustace.md deleted file mode 100644 index f95a2989..00000000 --- a/_lab_members/alumni/greg_eustace.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Greg Eustace ---- \ No newline at end of file diff --git a/_lab_members/alumni/gregory_burlet.md b/_lab_members/alumni/gregory_burlet.md deleted file mode 100644 index 469df4c9..00000000 --- a/_lab_members/alumni/gregory_burlet.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -neon: developer -photo: placeholder.png -social: {} -title: Gregory Burlet ---- - -Gregory Burlet is currently affiliated with: Frettable \ No newline at end of file diff --git a/_lab_members/alumni/hannah_robertson.md b/_lab_members/alumni/hannah_robertson.md deleted file mode 100644 index 423e5f53..00000000 --- a/_lab_members/alumni/hannah_robertson.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - personal_webpage: http://www.music.mcgill.ca/~hannah -title: Hannah Robertson ---- - -Hannah Robertson is currently affiliated with: iZotope \ No newline at end of file diff --git a/_lab_members/alumni/harry_simmonds.md b/_lab_members/alumni/harry_simmonds.md deleted file mode 100644 index d2a6fa71..00000000 --- a/_lab_members/alumni/harry_simmonds.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Harry Simmonds ---- - -Harry Simmonds is currently affiliated with: Apple \ No newline at end of file diff --git a/_lab_members/alumni/jamie_klassen.md b/_lab_members/alumni/jamie_klassen.md deleted file mode 100644 index 68fe2eac..00000000 --- a/_lab_members/alumni/jamie_klassen.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Jamie Klassen ---- - -Jamie Klassen is currently affiliated with: CGI \ No newline at end of file diff --git a/_lab_members/alumni/jason_hockman.md b/_lab_members/alumni/jason_hockman.md deleted file mode 100644 index 3945e961..00000000 --- a/_lab_members/alumni/jason_hockman.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Jason Hockman ---- - -Jason Hockman is currently affiliated with: Birmingham City University \ No newline at end of file diff --git a/_lab_members/alumni/jason_leung.md b/_lab_members/alumni/jason_leung.md deleted file mode 100644 index fc3baf51..00000000 --- a/_lab_members/alumni/jason_leung.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Jason Leung ---- \ No newline at end of file diff --git a/_lab_members/alumni/jessica_thompson.md b/_lab_members/alumni/jessica_thompson.md deleted file mode 100644 index e91e8d78..00000000 --- a/_lab_members/alumni/jessica_thompson.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - personal_webpage: http://jessthompson.ca/ -title: Jessica Thompson ---- - -Jessica Thompson is currently affiliated with: Université de Montréal \ No newline at end of file diff --git a/_lab_members/alumni/jiali_cheng.md b/_lab_members/alumni/jiali_cheng.md deleted file mode 100644 index 5e2fcc1c..00000000 --- a/_lab_members/alumni/jiali_cheng.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Jiali Cheng -# degree: -photo: JialiCHENG_IMG_8823.JPG -# cv: -social: - github_username: carrieeex - linkedin_username: carrie-cheng -# instagram_username: -# personal_webpage: https://www.julietteregimbal.ca/ -# current_focus: -# research_interests: - -# academic_record: -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/_lab_members/alumni/jin_xing.md b/_lab_members/alumni/jin_xing.md deleted file mode 100644 index 9a54a907..00000000 --- a/_lab_members/alumni/jin_xing.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Jin Xing ---- \ No newline at end of file diff --git a/_lab_members/alumni/jinho_yoon.md b/_lab_members/alumni/jinho_yoon.md deleted file mode 100644 index 6f0d48e5..00000000 --- a/_lab_members/alumni/jinho_yoon.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Alumni # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Jinho Yoon -photo: placeholder.png -# cv: -social: - github_username: jinh0 -# linkedin_username: -# instagram_username: -# personal_webpage: # ENTIRE URL -current_focus: Summer software developer -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- -Hi, I'm Jinho Yoon. I'm working as a software developer for the summer of 2022. diff --git a/_lab_members/alumni/jiwoo_jeong.md b/_lab_members/alumni/jiwoo_jeong.md deleted file mode 100644 index 61c44d2c..00000000 --- a/_lab_members/alumni/jiwoo_jeong.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Alumni # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Jiwoo Jeong -photo: placeholder.png -# cv: -social: - github_username: jiwoojeongjj - linkedin_username: jiwoojeong -# instagram_username: -# personal_webpage: # ENTIRE URL -current_focus: Computer Science Student -# research_interests: -# - -# - -academic_record: - - B.Sc. Anatomy and Cell Biology -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/_lab_members/alumni/johanna_devaney.md b/_lab_members/alumni/johanna_devaney.md deleted file mode 100644 index d1aafea5..00000000 --- a/_lab_members/alumni/johanna_devaney.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - personal_webpage: http://devaney.ca/ -title: Johanna Devaney ---- - -Johanna Devaney is currently affiliated with: Ohio State University \ No newline at end of file diff --git a/_lab_members/alumni/jordan_smith.md b/_lab_members/alumni/jordan_smith.md deleted file mode 100644 index 1327f7e8..00000000 --- a/_lab_members/alumni/jordan_smith.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - personal_webpage: http://www.music.mcgill.ca/~jordan -title: Jordan Smith ---- - -Jordan Smith is currently affiliated with: AIST, Japan \ No newline at end of file diff --git a/_lab_members/alumni/jorge_calvo-zaragoza.md b/_lab_members/alumni/jorge_calvo-zaragoza.md deleted file mode 100644 index c7baa5f1..00000000 --- a/_lab_members/alumni/jorge_calvo-zaragoza.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Jorge Calvo-Zaragoza ---- - -Jorge Calvo-Zaragoza is currently affiliated with: University of Alicante \ No newline at end of file diff --git a/_lab_members/alumni/juliette_regimbal.md b/_lab_members/alumni/juliette_regimbal.md deleted file mode 100644 index 4cb75ca0..00000000 --- a/_lab_members/alumni/juliette_regimbal.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Juliette Regimbal -degree: B.Eng. Computer Engineering -photo: juliette_regimbal_2019.jpg -cv: CV_JulietteRegimbal_en.pdf -social: - github_username: JRegimbal - linkedin_username: juliette-regimbal -# instagram_username: -# personal_webpage: https://www.julietteregimbal.ca/ -# current_focus: -research_interests: - - Human-Computer Interaction - - Linked Data -academic_record: - - B.Eng. Computer Engineering, McGill University -# - -# publications: -# - hold -# - hold -# - hold ---- -Juliette is a research assistant at DDMAL and recently completed a Bachelor of Engineering. -She mainly works on [Neon](https://ddmal.music.mcgill.ca/software/neon/), a browser-based square-notation editor. -She is interested in technology that makes accessing and manipulating information more user-friendly, and how "user friendliness" makes many assumptions about who a user is. - -Juliette has an ongoing, one-sided feud with JavaScript and other loosely typed languages. diff --git a/_lab_members/alumni/junhao_wang.md b/_lab_members/alumni/junhao_wang.md deleted file mode 100644 index ca7ae1db..00000000 --- a/_lab_members/alumni/junhao_wang.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Junhao Wang -degree: MA in Music Technology -photo: junhao.JPG -# cv: -social: - github_username: jwang44 - linkedin_username: junhaowang98 -# instagram_username: -# bandcamp_username: -# soundcloud_username: -personal_webpage: https://jwang44.github.io -current_focus: Playing Technique Detection for Electric Guitar -research_interests: - - Playing Technique Detection - - Automatic Guitar Transcription - - GuitarPro Information Retrieval -academic_record: -- Master of Arts in Music Technology, McGill University -- Bachelor of Engineering in Digital Media Technology, Communication University of China - - -# publications: - # - hold - # - hold - # - hold ---- - - -As a music technology researcher and enthusiast, Junhao uses machine learning for audio analysis. He also does some Django web development on the side. Otherwise, he makes heavy metal noise. diff --git a/_lab_members/alumni/justin_bell.md b/_lab_members/alumni/justin_bell.md deleted file mode 100644 index 49d87bc4..00000000 --- a/_lab_members/alumni/justin_bell.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - github_username: belljustin -title: Justin Bell ---- \ No newline at end of file diff --git "a/_lab_members/alumni/j\303\251r\303\264me_parent-l\303\251vesque.md" "b/_lab_members/alumni/j\303\251r\303\264me_parent-l\303\251vesque.md" deleted file mode 100644 index beb8b5df..00000000 --- "a/_lab_members/alumni/j\303\251r\303\264me_parent-l\303\251vesque.md" +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - linkedin_username: j%C3%A9r%C3%B4me-parent-l%C3%A9vesque-a75966112 -title: Jérôme Parent-Lévesque ---- - -Jérôme Parent-Lévesque is currently affiliated with: Vigilant Global \ No newline at end of file diff --git a/_lab_members/alumni/kemal_kongar.md b/_lab_members/alumni/kemal_kongar.md deleted file mode 100644 index f44626ee..00000000 --- a/_lab_members/alumni/kemal_kongar.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Kemal Kongar -# degree: -photo: kemal.jpg -# cv: -social: - github_username: kemalkongar -# linkedin_username: -# instagram_username: -personal_webpage: https://www.kemalkongar.com/ -# current_focus: -# research_interests: - -# academic_record: -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/_lab_members/alumni/khoi_nguyen.md b/_lab_members/alumni/khoi_nguyen.md deleted file mode 100644 index 94e2e964..00000000 --- a/_lab_members/alumni/khoi_nguyen.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Alumni # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Khoi Nguyen -photo: placeholder.png -# cv: -social: - github_username: KhoiTienNguyen - linkedin_username: khoi-tien-nguyen -# instagram_username: - personal_webpage: https://khoitiennguyen.github.io/ -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- - -I am a U3 Computer Science student at McGill University. diff --git "a/_lab_members/alumni/k\303\251_zhang.md" "b/_lab_members/alumni/k\303\251_zhang.md" deleted file mode 100644 index 2d465b86..00000000 --- "a/_lab_members/alumni/k\303\251_zhang.md" +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Ké Zhang ---- \ No newline at end of file diff --git a/_lab_members/alumni/laurent_pugin.md b/_lab_members/alumni/laurent_pugin.md deleted file mode 100644 index 81e4dd0a..00000000 --- a/_lab_members/alumni/laurent_pugin.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Laurent Pugin ---- - -Laurent Pugin is currently affiliated with: RISM-CH \ No newline at end of file diff --git a/_lab_members/alumni/laurier_baribeau.md b/_lab_members/alumni/laurier_baribeau.md deleted file mode 100644 index 6df40cec..00000000 --- a/_lab_members/alumni/laurier_baribeau.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Laurier Baribeau ---- \ No newline at end of file diff --git a/_lab_members/alumni/lillio_mok.md b/_lab_members/alumni/lillio_mok.md deleted file mode 100644 index e4004fad..00000000 --- a/_lab_members/alumni/lillio_mok.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Lillio Mok ---- - -Lillio Mok is currently affiliated with: Autodesk \ No newline at end of file diff --git a/_lab_members/alumni/ling-xiao_yang.md b/_lab_members/alumni/ling-xiao_yang.md deleted file mode 100644 index 22bacda2..00000000 --- a/_lab_members/alumni/ling-xiao_yang.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Ling-Xiao Yang ---- - -Ling-Xiao Yang is currently affiliated with: The Yang \ No newline at end of file diff --git a/_lab_members/alumni/mahtab_ghamsari.md b/_lab_members/alumni/mahtab_ghamsari.md deleted file mode 100644 index 37aca7b5..00000000 --- a/_lab_members/alumni/mahtab_ghamsari.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Mahtab Ghamsari ---- - -Mahtab Ghamsari is currently affiliated with: VRSUS \ No newline at end of file diff --git a/_lab_members/alumni/marina_borsodi-benson.md b/_lab_members/alumni/marina_borsodi-benson.md deleted file mode 100644 index 549855bf..00000000 --- a/_lab_members/alumni/marina_borsodi-benson.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Marina Borsodi-Benson ---- - -Marina Borsodi-Benson is currently affiliated with: Stanford University \ No newline at end of file diff --git a/_lab_members/alumni/marnie_reckenberg.md b/_lab_members/alumni/marnie_reckenberg.md deleted file mode 100644 index 57929d4e..00000000 --- a/_lab_members/alumni/marnie_reckenberg.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Marnie Reckenberg ---- \ No newline at end of file diff --git a/_lab_members/alumni/martha_thomae.md b/_lab_members/alumni/martha_thomae.md deleted file mode 100644 index 3b6a6771..00000000 --- a/_lab_members/alumni/martha_thomae.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Martha E. Thomae -degree: PhD Candidate in Music Technology -photo: martha_thomae.jpg -cv: CV_ThomaeElias_MarthaE.pdf -social: - github_username: martha-thomae -# linkedin_username: -# instagram_username: -# personal_webpage: # ENTIRE URL -current_focus: Early Music Preservation and Encoding -research_interests: - - Music Information Retrieval - - Symbolic Music - - Music Preservation - - Music Encoding - - Early Music - - Machine Learning -academic_record: - - PhD candidate in Music Technology, McGill University - - MA in Music Technology, McGill University - - Licenciatura en Matemática (BSc in Mathematics), Universidad del Valle de Guatemala - -# publications: -# - hold -# - hold -# - hold ---- - -
    Full name:
    Martha Eladia María / Thomae Elías
    - - -I am a PhD candidate working under the supervision of Ichiro Fujinaga and Julie Cumming in the Music Technology Area of the Schulich School of Music, McGill University. I have a Bachelor’s degree in Mathematics from Universidad del Valle de Guatemala and a Master’s degree in Music Technology from McGill University. Since 2015, I have been a member of the Single Interface for Music Score Searching and Analysis (SIMSSA) project and the Centre for Interdisciplinary Research in Music Media and Technology (CIRMMT) at McGill, serving as student coordinator of the Music Information Research axis of CIRMMT from 2017–2019. - -My research is focused on the preservation and encoding of mensural music. I have developed tools to facilitate the encoding of this repertoire, including the Mensural MEI Translator and the Automatic Scoring-up Tool. I am an active member of the Mensural MEI Interest Group (IG), where we look into the best options for encoding the various features of mensural notation to represent the characteristics of the vocal polyphonic music from the Late Middle Ages and the Renaissance. Since 2020, I have been acting as Co-Chair of the Mensural MEI IG and as a member of the MEI Board (2020–2022). Currently, I am working on a project that involves the digitization and encoding of the musical content of a Guatemalan choirbook from the colonial period which is written in mensural notation. This research is funded by the Fonds de Recherche du Québec - Société et Culture (FRQSC). - -

    Publications:

    - -- Thomae, Martha E. “The Guatemalan Choirbooks: Facilitating Preservation, Performance, and Study of the Colonial Repertoire.” In _Christian Music Traditions in the Americas_, edited by Andrew Shenton and Joanna Smolko. New York: Rowman & Littlefield, 2021. - -- Thomae, Martha E., Antonio Ríos-Vila, Jorge Calvo-Zaragoza, David Rizo, and Jose M. Iñesta. “Retrieving Music Semantics from Optical Music Recognition by Machine Translation.” In _Music Encoding Conference Proceedings 26-29 May, 2020_, 19–24. Tufts University, Boston, 2020. [http://dx.doi.org/10.17613/605z-nt78](http://dx.doi.org/10.17613/605z-nt78). - -- Desmond, Karen, Andrew Hankinson, Laurent Pugin, Juliette Regimbal, Craig Sapp, and Martha E. Thomae. “Next Steps for Measuring Polyphony–A Prototype Editor for Encoding Mensural Music.” In _Music Encoding Conference Proceedings 26-29 May, 2020_, 121–24. Tufts University, Boston, 2020. [http://dx.doi.org/10.17613/5k88-9z02](http://dx.doi.org/10.17613/5k88-9z02). - -- Thomae, Martha E., Julie E. Cumming, and Ichiro Fujinaga. 2019. “The Mensural Scoring-Up Tool.” In _Proceedings of the 6th International Workshop on Digital Libraries for Musicology_, 9–19. The Hague, Netherlands: ACM. [http://cloud.simssa.ca/index.php/s/w2Iw6IsGrWqnYpe](http://cloud.simssa.ca/index.php/s/w2Iw6IsGrWqnYpe). - -- - - - -- Thomae, Martha E. 2017. “Automatic Scoring up of Mensural Music Using Perfect Mensurations, 1300-1550.” Master’s Thesis, Montreal: McGill University. [http://cloud.simssa.ca/index.php/s/gcZwsRbWa8OTN4X](http://cloud.simssa.ca/index.php/s/gcZwsRbWa8OTN4X). - -- Thomae, Martha E. “Desarrollo de un modelo algorítmico para la transformación de partituras musicales escritas en notación mensural blanca a notación contemporánea.” Undergraduate Thesis, Universidad del Valle de Guatemala, 2013. diff --git a/_lab_members/alumni/matan_gover.md b/_lab_members/alumni/matan_gover.md deleted file mode 100644 index f22bb290..00000000 --- a/_lab_members/alumni/matan_gover.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Matan Gover ---- \ No newline at end of file diff --git a/_lab_members/alumni/mathieu_bergeron.md b/_lab_members/alumni/mathieu_bergeron.md deleted file mode 100644 index 0d501dac..00000000 --- a/_lab_members/alumni/mathieu_bergeron.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Mathieu Bergeron ---- - -Mathieu Bergeron is currently affiliated with: Cégep Montmorency \ No newline at end of file diff --git a/_lab_members/alumni/mike_winters.md b/_lab_members/alumni/mike_winters.md deleted file mode 100644 index 4b569451..00000000 --- a/_lab_members/alumni/mike_winters.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Mike Winters ---- \ No newline at end of file diff --git a/_lab_members/alumni/neda_eshraghi.md b/_lab_members/alumni/neda_eshraghi.md deleted file mode 100644 index 4dcc1f4e..00000000 --- a/_lab_members/alumni/neda_eshraghi.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Neda Eshraghi ---- \ No newline at end of file diff --git a/_lab_members/alumni/nestor_napoles.md b/_lab_members/alumni/nestor_napoles.md deleted file mode 100644 index b77b3759..00000000 --- a/_lab_members/alumni/nestor_napoles.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Néstor Nápoles López -degree: PhD Candidate in Music Technology -photo: Nestor_Napoles_2018.jpg -# cv: -social: - github_username: napulen - linkedin_username: napulen -# instagram_username: - personal_webpage: https://napulen.github.io -current_focus: Automatic Roman Numeral Analysis -research_interests: - - Deep Learning - - Music Theory - - Tonal Music - - Music Information Retrieval -academic_record: - - PhD candidate in Music Technology, McGill University - - Masters in Sound and Music Computing, Universitat Pompeu Fabra - - Licenciatura en Informatica, Universidad de Guadalajara (México) - - Profesional Medio en Piano, Instituto Nacional de Bellas Artes (México) -publications: ---- - -Néstor Nápoles López is a PhD candidate in Music Technology at McGill University, working under the supervision of professor Ichiro Fujinaga. Néstor holds an [MSc in Sound and Music Computing from Universitat Pompeu Fabra](https://www.upf.edu/web/smc) (Spain) and a Licenciatura en Informática (undergraduate degree in software engineering) from his hometown university, [Universidad de Guadalajara](http://www.udg.mx/en) (Mexico). His research interests include Music Information Retrieval (MIR) in the context of tonal music (mostly around the computational study of musical keys, tonicizations, modulations, chords, and Roman numeral analysis), music encoding, and educational video games for musicianship training. - -As part of his research assistant role at the Distributed Digital Music Archives and Libraries (DDMAL) Laboratory, Néstor participates in the development of [Cantus Ultimus](https://cantus.simssa.ca/), a public website that provides an interactive interface for the simultaneous visualization of expert-curated chant data and its source manuscript images. - -#### Publications and projects - -Available on [personal website](https://napulen.github.io). diff --git a/_lab_members/alumni/nicky_mirfallah.md b/_lab_members/alumni/nicky_mirfallah.md deleted file mode 100644 index bfeb7e81..00000000 --- a/_lab_members/alumni/nicky_mirfallah.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - linkedin_username: negareh?trk=nav_responsive_tab_profile_pic -title: Nicky Mirfallah ---- \ No newline at end of file diff --git a/_lab_members/alumni/paul_buser.md b/_lab_members/alumni/paul_buser.md deleted file mode 100644 index 2e429161..00000000 --- a/_lab_members/alumni/paul_buser.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Alumni # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Paul Buser -degree: MA in Music Technology -photo: paul_buser.jpg -# cv: -social: - github_username: p42ul - personal_webpage: https://www.beepyversion.com - linkedin_username: paulbuser -# instagram_username: -# current_focus: -research_interests: - - Improvisation - - New Interfaces for Musical Expression -academic_record: - - M.A., Music Technology, McGill University - - B.A., Computer Science, Oberlin College -# publications: -# - hold -# - hold -# - hold ---- - -I started off playing piano, which ended up being a very common interface for modern synthesizers. Thanks, Moog. Nowadays I like to make improvised electronic music under the moniker "BEEPY VERSION"—you can check it out [here](https://www.beepyversion.com). diff --git a/_lab_members/alumni/peter_henderson.md b/_lab_members/alumni/peter_henderson.md deleted file mode 100644 index f1fb472c..00000000 --- a/_lab_members/alumni/peter_henderson.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Peter Henderson ---- \ No newline at end of file diff --git a/_lab_members/alumni/rajarshi rivu_khoda.md b/_lab_members/alumni/rajarshi rivu_khoda.md deleted file mode 100644 index bf868293..00000000 --- a/_lab_members/alumni/rajarshi rivu_khoda.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Rajarshi Rivu Khoda ---- - -Rajarshi Rivu Khoda is currently affiliated with: IBM \ No newline at end of file diff --git a/_lab_members/alumni/ravi_raina.md b/_lab_members/alumni/ravi_raina.md deleted file mode 100644 index 17ac5a14..00000000 --- a/_lab_members/alumni/ravi_raina.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Ravi Raina -# degree: -photo: ravi_raina.jpeg -# cv: -social: - github_username: raviraina - linkedin_username: ravirainaca -# instagram_username: -personal_webpage: https://raviraina.com/ - -# current_focus: -# research_interests: - -# academic_record: -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/_lab_members/alumni/rebecca_fiebrink.md b/_lab_members/alumni/rebecca_fiebrink.md deleted file mode 100644 index c981e61b..00000000 --- a/_lab_members/alumni/rebecca_fiebrink.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Rebecca Fiebrink ---- - -Rebecca Fiebrink is currently affiliated with: Goldsmiths, University of London \ No newline at end of file diff --git a/_lab_members/alumni/reiko_yamada.md b/_lab_members/alumni/reiko_yamada.md deleted file mode 100644 index d6f3c494..00000000 --- a/_lab_members/alumni/reiko_yamada.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Reiko Yamada ---- \ No newline at end of file diff --git "a/_lab_members/alumni/reiner_kr\303\244mer.md" "b/_lab_members/alumni/reiner_kr\303\244mer.md" deleted file mode 100644 index 77521179..00000000 --- "a/_lab_members/alumni/reiner_kr\303\244mer.md" +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Reiner Krämer ---- - -Reiner Krämer is currently affiliated with: University of Northern Colorado \ No newline at end of file diff --git a/_lab_members/alumni/remi_chiu.md b/_lab_members/alumni/remi_chiu.md deleted file mode 100644 index 752b405f..00000000 --- a/_lab_members/alumni/remi_chiu.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Remi Chiu ---- - -Remi Chiu is currently affiliated with: Loyola University Maryland \ No newline at end of file diff --git a/_lab_members/alumni/robert_ferguson.md b/_lab_members/alumni/robert_ferguson.md deleted file mode 100644 index 90f6a757..00000000 --- a/_lab_members/alumni/robert_ferguson.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Robert Ferguson ---- - -Robert Ferguson is currently affiliated with: Automatic Labs \ No newline at end of file diff --git a/_lab_members/alumni/rory_oconnor.md b/_lab_members/alumni/rory_oconnor.md deleted file mode 100644 index ea4be31b..00000000 --- a/_lab_members/alumni/rory_oconnor.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Rory O'Connor ---- \ No newline at end of file diff --git a/_lab_members/alumni/ruth_berkow.md b/_lab_members/alumni/ruth_berkow.md deleted file mode 100644 index e56990c7..00000000 --- a/_lab_members/alumni/ruth_berkow.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Ruth Berkow ---- \ No newline at end of file diff --git a/_lab_members/alumni/ryan_bannon.md b/_lab_members/alumni/ryan_bannon.md deleted file mode 100644 index 56de9f5d..00000000 --- a/_lab_members/alumni/ryan_bannon.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Ryan Bannon ---- - -Ryan Bannon is currently affiliated with: CaseWare \ No newline at end of file diff --git a/_lab_members/alumni/sacah_perry-fagant.md b/_lab_members/alumni/sacah_perry-fagant.md deleted file mode 100644 index 177b5bb2..00000000 --- a/_lab_members/alumni/sacah_perry-fagant.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Sacah Perry-Fagant ---- \ No newline at end of file diff --git a/_lab_members/alumni/saining_li.md b/_lab_members/alumni/saining_li.md deleted file mode 100644 index 310ee41b..00000000 --- a/_lab_members/alumni/saining_li.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: - personal_webpage: http://cs.mcgill.ca/~sli90 -title: Saining Li ---- - -Saining Li is currently affiliated with: Ayuda Media Systems \ No newline at end of file diff --git a/_lab_members/alumni/sevag_hanssian.md b/_lab_members/alumni/sevag_hanssian.md deleted file mode 100644 index 818776ce..00000000 --- a/_lab_members/alumni/sevag_hanssian.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Sevag Hanssian -degree: MA in Music Technology -photo: Sevag_2021.jpg -cv: CV_Sevag_Hanssian.pdf -social: - github_username: sevagh - instagram_username: sevag10p - twitter_username: sevagdemix - soundcloud_username: user-167126026 - personal_webpage: https://sevag.xyz -current_focus: Music Demixing -research_interests: - - Music Demixing - - Beat Tracking - - Pitch Detection - - Time-Frequency Transforms -academic_record: - - MA Music Technology, McGill University - - B.Eng, Electrical Engineering, McGill University -publications: - - Hanssian, Sevag. 2021. “Music demixing with the sliCQ transform.” In MDX21 workshop, ISMIR 2021. ---- - - - -100% SWE, 100% SRE. - -I'm a Linux systems engineer with a side interest in signal processing for audio and music. My current research topic is exploring the time-frequency uncertainty principle in music demixing, which I am writing my master's thesis on; see the code [here](https://github.com/sevagh/xumx-sliCQ). diff --git a/_lab_members/alumni/shahrad_mohammadzadeh.md b/_lab_members/alumni/shahrad_mohammadzadeh.md deleted file mode 100644 index 0eecdd6b..00000000 --- a/_lab_members/alumni/shahrad_mohammadzadeh.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Shahrad Mohammadzadeh -degree: Studying B.Sc Honours Computer Science @ McGill University -photo: shahrad.jpg -# cv: -social: - github_username: EMZEDI - linkedin_username: shahrad-m-88970b212 -# current_focus: Music Technology -research_interests: - - Data Science - - Machine Learning, Deep Learning, and Ethics in AI - - Music Technology - - Software Systems -academic_record: - - Bachelor of Science in Honours Computer Science at McGill University (current) -# publications: ---- - -As an Honours Computer Science Student at McGill University, my desire is to apply Computer Science and Mathematics to the world of technology and problem-solving and highly Interested in doing research; fields such as: Machine Learning, Data Science, and software systems. -I am experienced in a broad range of software tools and programming languages. My current focus in DDMAL is working as a software developer. - -I am a professional piano player (since the age of 7!). My favorite piece is "fantaisie impromptu" by Chopin. - -My projects can be found on github. For instance, I have recently finished a music recommendation system in a fabulous team of 4. The model uses machine learning to offer you music based on your taste. The source code can be found on my github. - -Don't hesitate to be in touch with me on linkedIn for collaborations! diff --git a/_lab_members/alumni/simon_leon.md b/_lab_members/alumni/simon_leon.md deleted file mode 100644 index ae6e2798..00000000 --- a/_lab_members/alumni/simon_leon.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Simon de Leon ---- \ No newline at end of file diff --git a/_lab_members/alumni/spencer_cambell.md b/_lab_members/alumni/spencer_cambell.md deleted file mode 100644 index 4f3e11b6..00000000 --- a/_lab_members/alumni/spencer_cambell.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Spencer Cambell ---- \ No newline at end of file diff --git a/_lab_members/alumni/suzuka_kokubu.md b/_lab_members/alumni/suzuka_kokubu.md deleted file mode 100644 index 6fbf84fc..00000000 --- a/_lab_members/alumni/suzuka_kokubu.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Suzuka Kokubu -degree: MA in Music Technology -photo: suzuka.JPG -# cv: -social: -# github_username: -# linkedin_username: -# instagram_username: -# bandcamp_username: -# soundcloud_username: -personal_webpage: https://www.suzukakokubu.com -# current_focus: -# research_interests: -academic_record: -- MA Music Technology, McGill University -- BS Applied Physics, Columbia University -- BS Physics, Washington College - - -# publications: - # - hold - # - hold - # - hold ---- - - diff --git a/_lab_members/alumni/tim_wilfong.md b/_lab_members/alumni/tim_wilfong.md deleted file mode 100644 index b112508e..00000000 --- a/_lab_members/alumni/tim_wilfong.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Tim Wilfong ---- \ No newline at end of file diff --git a/_lab_members/alumni/tristan_himmelman.md b/_lab_members/alumni/tristan_himmelman.md deleted file mode 100644 index c716a4e8..00000000 --- a/_lab_members/alumni/tristan_himmelman.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Tristan Himmelman ---- - -Tristan Himmelman is currently affiliated with: Hearst \ No newline at end of file diff --git a/_lab_members/alumni/tristan_matthews.md b/_lab_members/alumni/tristan_matthews.md deleted file mode 100644 index 91b2341b..00000000 --- a/_lab_members/alumni/tristan_matthews.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Tristan Matthews ---- \ No newline at end of file diff --git a/_lab_members/alumni/tristano_tenaglia.md b/_lab_members/alumni/tristano_tenaglia.md deleted file mode 100644 index 30fc5b08..00000000 --- a/_lab_members/alumni/tristano_tenaglia.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Tristano Tenaglia ---- \ No newline at end of file diff --git "a/_lab_members/alumni/v\303\251ronique_lagac\303\251.md" "b/_lab_members/alumni/v\303\251ronique_lagac\303\251.md" deleted file mode 100644 index 1cca3a0c..00000000 --- "a/_lab_members/alumni/v\303\251ronique_lagac\303\251.md" +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Véronique Lagacé ---- \ No newline at end of file diff --git a/_lab_members/alumni/wei_gao.md b/_lab_members/alumni/wei_gao.md deleted file mode 100644 index 08998787..00000000 --- a/_lab_members/alumni/wei_gao.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Wei Gao ---- \ No newline at end of file diff --git a/_lab_members/alumni/wendy_liu.md b/_lab_members/alumni/wendy_liu.md deleted file mode 100644 index f0dcba13..00000000 --- a/_lab_members/alumni/wendy_liu.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Wendy Liu ---- - -Wendy Liu is currently affiliated with: Macromeasures \ No newline at end of file diff --git a/_lab_members/alumni/william_bain.md b/_lab_members/alumni/william_bain.md deleted file mode 100644 index e870ee6c..00000000 --- a/_lab_members/alumni/william_bain.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: William Bain ---- - -William Bain is currently affiliated with: Cisco Systems \ No newline at end of file diff --git a/_lab_members/alumni/yaolong_ju.md b/_lab_members/alumni/yaolong_ju.md deleted file mode 100644 index 264ad2ff..00000000 --- a/_lab_members/alumni/yaolong_ju.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: lab_member -category: Alumni -title: Yaolong Ju -degree: PhD Candidate in Music Technology -photo: yaolong_ju.jpg -cv: cv_yaolong_ju.pdf -social: - github_username: juyaolongpaul - linkedin_username: yaolong-ju-06509a5b - instagram_username: yaolongju - soundcloud_username: yaolong-ju-418981336 - personal_webpage: https://juyaolongpaul.github.io/juyaolong/ -current_focus: Automatic Harmonic Analysis -research_interests: - - Machine Learning - - Music Information Retrieval - - Music Theory - - Digital Music Libraries -#publications: - #- hold - #- hold - #- hold ---- - - - -Currently, I am a Ph.D. student from Distributed Digital Music Archives & Libraries Lab. My primary research topic is automatic harmonic analysis, and I am generally interested in applied machine learning, music information retrieval, music theory, and digital music libraries. - -Graduating from Jilin University as a computer science B.S., I achieved M.S. from Peking University, where I was fortunate to engage in the research of music techology, an interdisciplinary field between music and computer science. During my master study, I discovered my passion for research and determined to pursue a doctoral study. diff --git a/_lab_members/alumni/yihong_luo.md b/_lab_members/alumni/yihong_luo.md deleted file mode 100644 index 308f17eb..00000000 --- a/_lab_members/alumni/yihong_luo.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Yihong Luo ---- - -Yihong Luo is currently affiliated with: Manulife \ No newline at end of file diff --git a/_lab_members/alumni/yu_hua.md b/_lab_members/alumni/yu_hua.md deleted file mode 100644 index d34c1018..00000000 --- a/_lab_members/alumni/yu_hua.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Yu Hua ---- - -Yu Hua is currently affiliated with: Airbnb \ No newline at end of file diff --git a/_lab_members/alumni/yue phillis_ouyang.md b/_lab_members/alumni/yue phillis_ouyang.md deleted file mode 100644 index 8612e4e1..00000000 --- a/_lab_members/alumni/yue phillis_ouyang.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Yue Phillis Ouyang ---- \ No newline at end of file diff --git a/_lab_members/alumni/zeyad_saleh.md b/_lab_members/alumni/zeyad_saleh.md deleted file mode 100644 index ff78bfb9..00000000 --- a/_lab_members/alumni/zeyad_saleh.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -category: Alumni -layout: lab_member -photo: placeholder.png -social: {} -title: Zeyad Saleh ---- - -Zeyad Saleh is currently affiliated with: Apple \ No newline at end of file diff --git a/_lab_members/masters/dylan_hillerbrand.md b/_lab_members/masters/dylan_hillerbrand.md deleted file mode 100644 index 8aa04101..00000000 --- a/_lab_members/masters/dylan_hillerbrand.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -layout: lab_member -category: Masters -title: Dylan Hillerbrand -degree: MMus in Early Music -# photo: -# cv: -social: - github_username: dchiller -# linkedin_username: -# instagram_username: -# bandcamp_username: -# soundcloud_username: -# personal_webpage: -# current_focus: -# research_interests: -academic_record: -- Master of Music in Early Music Vocal Performance, McGill University -- Bachelor of Arts in Mathematics, Swarthmore College - - -# publications: - # - hold - # - hold - # - hold ---- - - diff --git a/_lab_members/masters/harry_chung.md b/_lab_members/masters/harry_chung.md deleted file mode 100644 index a47c05ed..00000000 --- a/_lab_members/masters/harry_chung.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: lab_member -category: Masters -title: Harry Chung -degree: MA in Music Technology -photo: placeholder.png -# cv: -# social: -# github_username: -# linkedin_username: -# instagram_username: -# bandcamp_username: -# soundcloud_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# academic_record: -# publications: - # - hold - # - hold - # - hold ---- - - \ No newline at end of file diff --git a/_lab_members/masters/jacob_degroot-maggetti.md b/_lab_members/masters/jacob_degroot-maggetti.md deleted file mode 100644 index 9fd53dff..00000000 --- a/_lab_members/masters/jacob_degroot-maggetti.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: lab_member -category: Masters -title: Jacob deGroot-Maggetti -degree: MA in Music Theory (graduate) -photo: jacobdgm.jpg -current_focus: Cantus Database -academic_record: BA in Music, University of Waterloo -social: - personal_webpage: https://jacobdgm.com - github_username: jacobdgm - bandcamp_username: jacobdegroot-maggetti - soundcloud_username: jacob-degroot-maggetti ---- - -Jacob deGroot-Maggetti is a graduate of the Master's in Music Theory Program at McGill University, where he [studied the music of Canadian fiddler Oliver Schroer](https://jacobdgm.com/etc/oliver-schroer/thesis/). - -Living in Kitchener-Waterloo before his degree at McGill, Jacob sang in the Grand Philharmonic Choir and Grand Philharmonic Chamber Choir, performed with the University of Waterloo Gamelan Ensemble, and directed the Ad Hoc, Post Hoc and Propter Hoc chamber choirs. In Montreal, he performed with the Orpheus Singers. - -In his free time, he enjoys playing traditional Irish and Quebecois dance music, reading, and learning about diverse subjects. Linguistics and mathematics have been recent topics of interest. diff --git a/_lab_members/masters/lucas_march.md b/_lab_members/masters/lucas_march.md deleted file mode 100644 index 423a5f59..00000000 --- a/_lab_members/masters/lucas_march.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: lab_member -category: Masters -title: Lucas March -degree: MA in Music Technology -photo: lucasphoto.jpg -# cv: -social: - github_username: lucasmarchd01 -# linkedin_username: -# instagram_username: -# bandcamp_username: -# soundcloud_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -academic_record: - - Queen's University, Bachelors Degree in Computer Science with Minor in Music -publications: ---- - -Lucas completed his undergraduate degree in computer science with a focus on Biomedical Computation and a minor in Music at Queens University. His previous research at the Medical-Informatics laboratory covers machine learning and computational approaches on iKnife aided intraoperative basal cell carcinoma videos for workflow recognition as a surgical aid in relocating positive margins. Lucas is currently pursuing an MA in Music Technology at McGill University. Outside of academics, Lucas is a clarinetist and pianist, collects plants, and is an amateur chess player. -- "Cautery tool state detection using deep learning on intraoperative surgery videos" https://doi.org/10.1117/12.2654234 -- "Phase recognition and cautery localization in basal cell carcinoma surgical videos" https://doi.org/10.1117/12.2611837 diff --git a/_lab_members/masters/wanyi_lin.md b/_lab_members/masters/wanyi_lin.md deleted file mode 100644 index 0622a1a0..00000000 --- a/_lab_members/masters/wanyi_lin.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: lab_member -category: Masters -title: Wanyi Lin -degree: MA in Music Technology -photo: placeholder.png -# cv: -social: - github_username: softcat477 -# linkedin_username: -# instagram_username: -# bandcamp_username: -# soundcloud_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# academic_record: -# publications: - # - hold - # - hold - # - hold ---- - - diff --git a/_lab_members/masters/yinan_zhou.md b/_lab_members/masters/yinan_zhou.md deleted file mode 100644 index cb3dfc91..00000000 --- a/_lab_members/masters/yinan_zhou.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: lab_member -category: Masters -title: Yinan Zhou -degree: MA in Music Technology -photo: yinan_photo.jpg -# cv: -social: - github_username: yinanazhou - linkedin_username: yinan-zhou-ana - # instagram_username: - # bandcamp_username: - # soundcloud_username: - personal_webpage: https://yinanazhou.github.io/ -# current_focus: -research_interests: - - Natural Language Processing -academic_record: - - McGill University, Master of Arts in Music Technology (Thesis), 2020-2022 - - Communication University of China, Bachelor of Engineering in Network Engineering, 2016-2020 -
        ◦ 2020 Excellent Graduate Thesis: Research on Optical Music Notation Recognition Based on Convolutional Neural Network - - High School Attached to Northeast Normal University, High School Diploma in Science, 2013-2016 -# publications: -# - hold -# - hold -# - hold ---- - - diff --git a/_lab_members/phd/timothy_dereuse.md b/_lab_members/phd/timothy_dereuse.md deleted file mode 100644 index d8f95d64..00000000 --- a/_lab_members/phd/timothy_dereuse.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: lab_member -category: PhD -title: Timothy Raja de Reuse -degree: PhD Candidate in Music Technology -photo: timothy_dereuse_2019.jpg -# cv: -social: - github_username: timothydereuse - bandcamp_username: watergunsky -current_focus: Music Technology -research_interests: - - Music Information Retrieval - - Pattern Discovery - - Music Language Modelling - - Musical Structure -academic_record: - - Master of Arts in Music Technology (McGill University) - - Bachelor of Arts in Mathematics (University of North Texas) -publications: ---- - -I am a Ph.D. student working under Ichiro Fujinaga in the Music Technology Area of the Schulich School of Music, McGill University. My research interests center around analysis of repeated material in symbolic music; in particular, how machine-learning models can learn from long-term dependencies in music (e.g., verse-chorus forms, sonata forms) to make predictions and correct errors in scores. I also research musical pattern discovery algorithms, and how existing examples of annotated patterns can be used as examples to filter the large number of patterns that these algorithms often retrieve. - -Before my arrival at McGill, I was a research assistant in the Computational Epidemiology Research Laboratory at the University of North Texas, where I investigated models of traffic flow in disaster response scenarios. - -I'm a guitar player, and perform live under the band name "Water Gun Water Gun Sky Attack" every so often. - -- de Reuse, Timothy. 2019. “A Machine Learning Approach to Pattern Discovery in Symbolic Music.” Master’s Thesis, Montreal, Canada: McGill University. - -- de Reuse, Timothy, and Ichiro Fujinaga. 2019. “Pattern Clustering in Monophonic Music by Learning a Non-Linear Embedding from Human Annotations.” In _Proceedings of the 20th International Society for Music Information Retrieval Conference_. Delft, Netherlands. - -- de Reuse, Timothy, and Ichiro Fujinaga. 2019. “Robust Transcript Alignment on Medieval Chant Manuscripts.” In _Proceedings of the 2nd International Workshop on Reading Music Systems_. Delft, Netherlands. diff --git a/_lab_members/postdocs/anna_de_bakker.md b/_lab_members/postdocs/anna_de_bakker.md deleted file mode 100644 index 503d836c..00000000 --- a/_lab_members/postdocs/anna_de_bakker.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Postdoc # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Anna de Bakker -photo: placeholder.png -# cv: -# social: -# github_username: -# linkedin_username: -# instagram_username: -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/_lab_members/principal_investigator/ichiro_fujinaga.md b/_lab_members/principal_investigator/ichiro_fujinaga.md deleted file mode 100644 index dbb450de..00000000 --- a/_lab_members/principal_investigator/ichiro_fujinaga.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Principal # One of [Alumni, Masters, PhD, Postdoc, Principal, Manager, Undergraduate] -title: Ichiro Fujinaga -degree: Principal Investigator -photo: ich2019.jpg -# cv: -social: - github_username: fujinaga - -# linkedin_username: -# instagram_username: - personal_webpage: http://www.music.mcgill.ca/~ich/ # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- diff --git a/_lab_members/project_manager/marisa_goldman.md b/_lab_members/project_manager/marisa_goldman.md deleted file mode 100644 index 5eadd7a9..00000000 --- a/_lab_members/project_manager/marisa_goldman.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Manager # One of [Alumni, Masters, PhD, Postdoc, Principal, Manager, Undergraduate] -title: Marisa Goldman -photo: marisagoldman22.jpg -# cv: -social: - github_username: maregold -# linkedin_username: - twitter_username: -# personal_webpage: # ENTIRE URL -current_focus: Project Manager (LinkedMusic) -research_interests: - -academic_record: - - McGill University, Master of Information Studies, 2022 - - University of Miami, Bachelor of Music, Music Business and Entertainment Industries (Oboe), dual degree with History, 2018 -publications: - - - - ---- diff --git a/_lab_members/undergraduate/anthony_tan.md b/_lab_members/undergraduate/anthony_tan.md deleted file mode 100644 index 3fa66277..00000000 --- a/_lab_members/undergraduate/anthony_tan.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Undergraduate # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Anthony Tan -photo: anthony_tan.jpg -degree: Computer Science -# cv: -social: - github_username: MrMondrian - linkedin_username: anthonytan12 - personal_webpage: https://mrmondrian.github.io/portfolio/ -current_focus: Robotics - -publications: - - https://dl.acm.org/doi/10.1145/3472538.3472554 - - https://www.worldscientific.com/doi/10.1142/S0219720021400072 ---- - -Anthony Tan is an undergraduate honours computer science student at McGill University. He is a team lead at McGill Robotics. \ No newline at end of file diff --git a/_lab_members/undergraduate/david_peterman.md b/_lab_members/undergraduate/david_peterman.md deleted file mode 100644 index af21cda3..00000000 --- a/_lab_members/undergraduate/david_peterman.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member -category: Undergraduate -title: David Peterman -degree: Software Engineering -photo: david_peterman.jpeg -# cv: -social: - github_username: cadagong - linkedin_username: https://www.linkedin.com/in/david-peterman-9656624a/ -# instagram_username: -personal_webpage: hhttps://www.cs.mcgill.ca/~dpeter19/mini6/mini6.php?Page=HOME - -# current_focus: -# research_interests: - -# academic_record: -# - -# publications: -# - hold -# - hold -# - hold ---- \ No newline at end of file diff --git a/_lab_members/undergraduate/genevieve_gates-panneton.md b/_lab_members/undergraduate/genevieve_gates-panneton.md deleted file mode 100644 index 7e38d67c..00000000 --- a/_lab_members/undergraduate/genevieve_gates-panneton.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: lab_member -category: Undergraduate -title: Geneviève Gates-Panneton -# degree: -photo: Gen_and_Calypso.jpg -# cv: -social: - github_username: JoyfulGen -# linkedin_username: -# instagram_username: -# personal_webpage: -# current_focus: -# research_interests: - -# academic_record: -# - -# publications: -# - hold -# - hold -# - hold ---- - diff --git a/_lab_members/undergraduate/hongvan_pham.md b/_lab_members/undergraduate/hongvan_pham.md deleted file mode 100644 index eb595297..00000000 --- a/_lab_members/undergraduate/hongvan_pham.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Undergraduate # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Hong Van Pham -photo: hongvan_pham.jpeg -# cv: -social: - github_username: malajvan - linkedin_username: vanhpham - soundcloud_username: hiiamvan -# instagram_username: - personal_webpage: https://malajvan.github.io/minivan/ # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- -Hong Van Pham is a Mathematics and Computer Science Undergraduate Student at McGill University. She is a Software Development Casual Researcher at DDMAL for the SIMSSA project, and is interested in Data Science and Analytics. \ No newline at end of file diff --git a/_lab_members/undergraduate/jacky_zhang.md b/_lab_members/undergraduate/jacky_zhang.md deleted file mode 100644 index d04a3e05..00000000 --- a/_lab_members/undergraduate/jacky_zhang.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: lab_member -category: Undergraduate -title: Jacky Zhang -degree: Bachelor of Science in Computer Science -photo: jacky_zhang.jpg -social: - github_username: jackyyzhang03 - linkedin_username: jackyzhang-03 ---- - -Jacky Zhang is an undergraduate student studying Computer Science at McGill University. \ No newline at end of file diff --git a/_lab_members/undergraduate/katie_lin.md b/_lab_members/undergraduate/katie_lin.md deleted file mode 100644 index a9071736..00000000 --- a/_lab_members/undergraduate/katie_lin.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: lab_member -category: Undergraduate -title: Katie Lin -degree: BA in Computer Science & Music -photo: katie.jpg -# cv: -social: - github_username: kqct -# linkedin_username: -personal_webpage: quiet.horse -current_focus: Development & Operations -# research_interests: - -# academic_record: -# - -# publications: -# - hold -# - hold -# - hold ---- - diff --git a/_lab_members/undergraduate/max_zhang.md b/_lab_members/undergraduate/max_zhang.md deleted file mode 100644 index b41d509b..00000000 --- a/_lab_members/undergraduate/max_zhang.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Undergraduate # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Max Zhang -photo: max-zhang.png -# cv: -social: - github_username: chetbae - linkedin_username: chetbae - instagram_username: max.sends - personal_webpage: https://www.maxzhang.ca - soundcloud_username: chetbae -current_focus: Computer Science and Music Performance -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- - -Max Zhang graduated from McGill University with a double major in Computer Science and Jazz Performance. Some of his topics and interests include Machine Learning, Reinforcement Learning, Logic and Computation, and Software Architecture, to name a few. On his off-hours, Zhang enjoys bouldering and sport-climbing. - diff --git a/_lab_members/undergraduate/sabrina_mansour.md b/_lab_members/undergraduate/sabrina_mansour.md deleted file mode 100644 index 4b83c6cb..00000000 --- a/_lab_members/undergraduate/sabrina_mansour.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Undergraduate # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Sabrina Mansour -photo: Sabrina.jpeg -# cv: -social: - github_username: sabrina0822 - linkedin_username: sabrina-mansour-70583b205 - instagram_username: sab.mansour -# personal_webpage: # ENTIRE URL -# current_focus: -# research_interests: -# - -# - -# academic_record: -# - -# - -# publications: -# - hold -# - hold -# - hold ---- -Sabrina Mansour is currently pursuing her Software Engineering Undergraduate at McGill University with a Minor in Biomedical Engineering. She is very passionate about music and has been playing the piano since she was five. She started working at DDMAL in 2022. \ No newline at end of file diff --git a/_lab_members/undergraduate/taz_scotttalib.md b/_lab_members/undergraduate/taz_scotttalib.md deleted file mode 100644 index 9fede59d..00000000 --- a/_lab_members/undergraduate/taz_scotttalib.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: lab_member # DON'T CHANGE -category: Undergraduate # One of [Alumni, Masters, PhD, Postdoc, Undergraduate] -title: Taz Scott-Talib -photo: taz.jpg -social: - github_username: pythonsemicolon -research_interests: - - machine learning -academic_record: - - weapon ---- -Taz Scott-Talib is a Software Engineering and Music Technology Undergraduate Student at McGill University. He is a Casual Research Assistant to the Regional Manager at DDMAL. \ No newline at end of file diff --git a/_lab_members/undergraduate/zhanna_klimanova.md b/_lab_members/undergraduate/zhanna_klimanova.md deleted file mode 100644 index 8908d21e..00000000 --- a/_lab_members/undergraduate/zhanna_klimanova.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -layout: lab_member -category: Undergraduate -title: Zhanna Klimanova -photo: placeholder.png -social: - github_username: zhannaklimanova ---- \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html deleted file mode 100644 index 47daf7c2..00000000 --- a/_layouts/default.html +++ /dev/null @@ -1,74 +0,0 @@ - - - - {% include head.html %} - - {% include sidebar.html %} - - - - - - -
    - - - -
    - {{ content }} -
    -
    - - - - - {% include footer.html %} - - - - - - - - diff --git a/_layouts/lab_member.html b/_layouts/lab_member.html deleted file mode 100644 index c1e9eff4..00000000 --- a/_layouts/lab_member.html +++ /dev/null @@ -1,70 +0,0 @@ ---- -layout: default ---- - -
    -
    -

    {{ page.title }}

    - {% if page.cv %} - {% if page.cv contains "http" %} - - {% else %} - - {% endif %} - {% endif %} -
    -
    - - {% include social_links.html %} - -
    -
    -
    - -

    {{ page.degree }}

    - {% if page.current_focus %} -

    {{ page.current_focus }}

    - {% endif %} -
    - -
    -
    -
    -
    {{ content }}
    - -
    - {% if page.research_interests %} -
    -

    Research Interests

    -
      - {% for interest in page.research_interests %} -
    • {{ interest }}
    • - {% endfor %} -
    -
    - {% endif %} - {% if page.academic_record %} -
    -

    Academic Record

    -
      - {% for class in page.academic_record %} -
    • {{ class }}
    • - {% endfor %} -
    -
    - {% endif %} -
    - {% if page.publications %} -
    -

    Publications

    -
      - {% for pub in page.publications %} -
    • {{ pub }}
    • - {% endfor %} -
    -
    - {% endif %} -
    - -
    -
    diff --git a/_layouts/page.html b/_layouts/page.html deleted file mode 100644 index 576b583e..00000000 --- a/_layouts/page.html +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: default ---- - -
    -

    {{ page.title }}

    -
    - {{ content }} -
    - -
    -
    diff --git a/_layouts/post.html b/_layouts/post.html deleted file mode 100644 index 083a2a3f..00000000 --- a/_layouts/post.html +++ /dev/null @@ -1,28 +0,0 @@ ---- -layout: default -permalink: /:title/ ---- - -
    -
    -

    {{ page.title }}

    -
    - - {{ content }} -
    - - diff --git a/_layouts/research_post.html b/_layouts/research_post.html deleted file mode 100644 index 50971474..00000000 --- a/_layouts/research_post.html +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: default ---- - -
    -
    -

    {{ page.title }}

    -
    - - {{ content }} -
    - - diff --git a/_media/2014/Bain_The_Optical_Neume_Recognition_Project_2014.md b/_media/2014/Bain_The_Optical_Neume_Recognition_Project_2014.md deleted file mode 100644 index a37a248c..00000000 --- a/_media/2014/Bain_The_Optical_Neume_Recognition_Project_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Bain, Jennifer. 2014b. “The Optical Neume Recognition Project.” Main Street. March. \ No newline at end of file diff --git a/_media/2016/Helsen_The_Optical_Neume_Recognition_Project_2016.md b/_media/2016/Helsen_The_Optical_Neume_Recognition_Project_2016.md deleted file mode 100644 index c789af61..00000000 --- a/_media/2016/Helsen_The_Optical_Neume_Recognition_Project_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Helsen, Kate. 2016b. “The Optical Neume Recognition Project.” Interview. Up All Night. BBC 5, June 1. \ No newline at end of file diff --git "a/_media/2016/Kr\303\244mer_The_Present_Edge_with_Gary_McBride_2016.md" "b/_media/2016/Kr\303\244mer_The_Present_Edge_with_Gary_McBride_2016.md" deleted file mode 100644 index 8d6586c3..00000000 --- "a/_media/2016/Kr\303\244mer_The_Present_Edge_with_Gary_McBride_2016.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Krämer, Reiner. 2016. “The Present Edge with Gary McBride.” Radio Interview. Colorado, October 3. \ No newline at end of file diff --git a/_media/2017/Bain_Interview_with_Alexa_MacLean_about_the_Salzinnes_Exhibit_2017.md b/_media/2017/Bain_Interview_with_Alexa_MacLean_about_the_Salzinnes_Exhibit_2017.md deleted file mode 100644 index 966739b3..00000000 --- a/_media/2017/Bain_Interview_with_Alexa_MacLean_about_the_Salzinnes_Exhibit_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Bain, Jennifer. 2017. “Interview with Alexa MacLean about the Salzinnes Exhibit.” Global Television News, May 4. \ No newline at end of file diff --git "a/_media/2017/Kr\303\244mer_Dog-Walking_Algorithm_2017.md" "b/_media/2017/Kr\303\244mer_Dog-Walking_Algorithm_2017.md" deleted file mode 100644 index 319cf0ee..00000000 --- "a/_media/2017/Kr\303\244mer_Dog-Walking_Algorithm_2017.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Krämer, Reiner. 2017. “Dog-Walking Algorithm.” Podcast. Patch In (39). SoundNotion, June 6. http://www.soundnotion.tv/2017/06/pi-39/. \ No newline at end of file diff --git "a/_media/2018/Fujinaga_Creating_\"Google_Scores\"_for_the_masses_2018.md" "b/_media/2018/Fujinaga_Creating_\"Google_Scores\"_for_the_masses_2018.md" deleted file mode 100644 index 49c245c4..00000000 --- "a/_media/2018/Fujinaga_Creating_\"Google_Scores\"_for_the_masses_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Fujinaga, Ichiro (interviewed by ComputeCanada). 2018. “Creating ‘Google Scores’ for the Masses.” ComputeCanada Research Showcase (blog). June 7, 2018. https://www.computecanada.ca/research/creating-google-scores-for-the-masses/. \ No newline at end of file diff --git a/_media/2019/Chokroborty-Hoque_Western_Music_Professor_Kate_Helsen:_Art_Has_No_Enemy_But_Ignorance_2019.md b/_media/2019/Chokroborty-Hoque_Western_Music_Professor_Kate_Helsen:_Art_Has_No_Enemy_But_Ignorance_2019.md deleted file mode 100644 index ca3ac4af..00000000 --- a/_media/2019/Chokroborty-Hoque_Western_Music_Professor_Kate_Helsen:_Art_Has_No_Enemy_But_Ignorance_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Chokroborty-Hoque, Aniruddho. 2019. “Western Music Professor Kate Helsen: Art Has No Enemy But Ignorance.” Podcast. Professors Beyond Jobs. May. https://soundcloud.com/chrwradio/western-music-professor-kate-helsen-art-has-no-enemy-but-ignorance. \ No newline at end of file diff --git a/_media/2019/Cumming_Saints_Alive!_Rediscovering_Chant_Manuscripts_at_McGill_2019.md b/_media/2019/Cumming_Saints_Alive!_Rediscovering_Chant_Manuscripts_at_McGill_2019.md deleted file mode 100644 index 4bb0d8cc..00000000 --- a/_media/2019/Cumming_Saints_Alive!_Rediscovering_Chant_Manuscripts_at_McGill_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Cumming, Julie, and McGill student and staff choir. 2019. Saints Alive! Rediscovering Chant Manuscripts at McGill. Lecture Recital (McGill ROAAr Event). https://youtu.be/OVqs4Sq8DEE. \ No newline at end of file diff --git a/_media/2019/Darroch_Singing_on_the_Book:_New_Video_Series_Launched;_Professors_Peter_Schubert_and_Julie_Cumming_have_recently_released_a_series_of_new_videos_on_Renaissance_vocal_improvisation._2019.md b/_media/2019/Darroch_Singing_on_the_Book:_New_Video_Series_Launched;_Professors_Peter_Schubert_and_Julie_Cumming_have_recently_released_a_series_of_new_videos_on_Renaissance_vocal_improvisation._2019.md deleted file mode 100644 index f471bbe4..00000000 --- a/_media/2019/Darroch_Singing_on_the_Book:_New_Video_Series_Launched;_Professors_Peter_Schubert_and_Julie_Cumming_have_recently_released_a_series_of_new_videos_on_Renaissance_vocal_improvisation._2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Darroch, Hannah. 2019. “Singing on the Book: New Video Series Launched; Professors Peter Schubert and Julie Cumming Have Recently Released a Series of New Videos on Renaissance Vocal Improvisation.” Schulich School of Music (blog). December 2019. https://www.mcgill.ca/music/article/blog-faculty-research/singing-book-new-video-series-launched. \ No newline at end of file diff --git "a/_media/2019/Lagac\303\251 Dowson_A_21st_century_premi\303\250re_for_a_15th_century_music_manuscript:_Music_inscribed_in_a_beautiful_and_rare_choral_manuscript_will_be_performed_for_the_first_time_in_decades,_if_not_centuries,_on_Thursday,_February_21_2019.md" "b/_media/2019/Lagac\303\251 Dowson_A_21st_century_premi\303\250re_for_a_15th_century_music_manuscript:_Music_inscribed_in_a_beautiful_and_rare_choral_manuscript_will_be_performed_for_the_first_time_in_decades,_if_not_centuries,_on_Thursday,_February_21_2019.md" deleted file mode 100644 index 754bd6a9..00000000 --- "a/_media/2019/Lagac\303\251 Dowson_A_21st_century_premi\303\250re_for_a_15th_century_music_manuscript:_Music_inscribed_in_a_beautiful_and_rare_choral_manuscript_will_be_performed_for_the_first_time_in_decades,_if_not_centuries,_on_Thursday,_February_21_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Lagacé Dowson, Anne. 2019. “A 21st Century Première for a 15th Century Music Manuscript: Music Inscribed in a Beautiful and Rare Choral Manuscript Will Be Performed for the First Time in Decades, If Not Centuries, on Thursday, February 21.” McGill Reporter, February 2019. https://reporter.mcgill.ca/a-21st-century-premiere-for-a-15th-century-music-manuscript/. \ No newline at end of file diff --git a/_media/2019/Schubert_Singing_on_the_Book_2019.md b/_media/2019/Schubert_Singing_on_the_Book_2019.md deleted file mode 100644 index aaa906fb..00000000 --- a/_media/2019/Schubert_Singing_on_the_Book_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Schubert, Peter, Julie Cumming, and George Massenburg. 2019. Singing on the Book. https://www.youtube.com/playlist?list=PLo6KfdKWjMnAdMUYmSv4LtZ_ypg9PJgve. \ No newline at end of file diff --git a/_media/2020/Brouillette_Interview_with_Ichiro_Fujinaga:_Projet_SIMSSA_(interface_unique_pour_la_recherche_et_l'analyse_de_partitions_musicales)_2020.md b/_media/2020/Brouillette_Interview_with_Ichiro_Fujinaga:_Projet_SIMSSA_(interface_unique_pour_la_recherche_et_l'analyse_de_partitions_musicales)_2020.md deleted file mode 100644 index d8e073b8..00000000 --- a/_media/2020/Brouillette_Interview_with_Ichiro_Fujinaga:_Projet_SIMSSA_(interface_unique_pour_la_recherche_et_l'analyse_de_partitions_musicales)_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Brouillette, Louis. 2020. “Interview with Ichiro Fujinaga: Projet SIMSSA (Interface Unique Pour La Recherche et l’analyse de Partitions Musicales).” Musique et Science on Radio VM. October 7. https://www.louisbrouillette.com/radio/. \ No newline at end of file diff --git a/_media/2020/Rodin_Sounds_of_Renaissance_Florence_2020.md b/_media/2020/Rodin_Sounds_of_Renaissance_Florence_2020.md deleted file mode 100644 index 7e658830..00000000 --- a/_media/2020/Rodin_Sounds_of_Renaissance_Florence_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Rodin, Jesse, and Cut Circle Ensemble. 2020. Sounds of Renaissance Florence. Stanford University. http://cutcircle.org/videos/sounds-of-renaissance-florence/. \ No newline at end of file diff --git a/_people/alumni/adam-tindale.md b/_people/alumni/adam-tindale.md deleted file mode 100644 index a102e652..00000000 --- a/_people/alumni/adam-tindale.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Adam Tindale -first_name: Adam -last_name: Tindale -role: alumni -affiliation: OCAD University -degree: MA, PhD University of Victoria -link: http://www.adamtindale.com/ ---- diff --git a/_people/alumni/alastair-porter.md b/_people/alumni/alastair-porter.md deleted file mode 100644 index a0b17c8f..00000000 --- a/_people/alumni/alastair-porter.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Alastair Porter -first_name: Alastair -last_name: Porter -role: alumni -affiliation: Universitat Pompeu Fabra -degree: MA -link: https://www.dtic.upf.edu/~aporter/ -neon: developer ---- diff --git a/_people/alumni/alexandre-parmentier.md b/_people/alumni/alexandre-parmentier.md deleted file mode 100644 index ccb0bba6..00000000 --- a/_people/alumni/alexandre-parmentier.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Alexandre Parmentier -first_name: Alexandre -last_name: Parmentier -role: alumni -affiliation: University of Waterloo -degree: -link: https://github.com/agpar ---- diff --git a/_people/alumni/andrew-fogarty.md b/_people/alumni/andrew-fogarty.md deleted file mode 100644 index e55b82ed..00000000 --- a/_people/alumni/andrew-fogarty.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Andrew Fogarty -first_name: Andrew -last_name: Fogarty -role: alumni -affiliation: Microsoft -degree: -link: ---- diff --git a/_people/alumni/andrew-hankinson.md b/_people/alumni/andrew-hankinson.md deleted file mode 100644 index 3370c335..00000000 --- a/_people/alumni/andrew-hankinson.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Andrew Hankinson -first_name: Andrew -last_name: Hankinson -role: alumni -affiliation: Bodleian Libraries, University of Oxford -degree: Post Doc, PhD -link: https://andrewhankinson.info/ -neon: project-manager ---- diff --git a/_people/alumni/andrew-horwitz.md b/_people/alumni/andrew-horwitz.md deleted file mode 100644 index bc0a5376..00000000 --- a/_people/alumni/andrew-horwitz.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Andrew Horwitz -first_name: Andrew -last_name: Horwitz -role: alumni -affiliation: RILM -degree: MA -link: ---- diff --git a/_people/alumni/anton-khelou.md b/_people/alumni/anton-khelou.md deleted file mode 100644 index a9f46e10..00000000 --- a/_people/alumni/anton-khelou.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Anton Khelou -first_name: Anton -last_name: Khelou -role: alumni -affiliation: Autodesk -degree: -link: ---- diff --git a/_people/alumni/arielle-goldman.md b/_people/alumni/arielle-goldman.md deleted file mode 100644 index a44da2c7..00000000 --- a/_people/alumni/arielle-goldman.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Arielle Goldman -first_name: Arielle -last_name: Goldman -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/ashley-burgoyne.md b/_people/alumni/ashley-burgoyne.md deleted file mode 100644 index 5498d353..00000000 --- a/_people/alumni/ashley-burgoyne.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Ashley Burgoyne -first_name: Ashley -last_name: Burgoyne -role: alumni -affiliation: University of Amsterdam -degree: PhD -link: ---- diff --git a/_people/alumni/beinan-li.md b/_people/alumni/beinan-li.md deleted file mode 100644 index 19f03904..00000000 --- a/_people/alumni/beinan-li.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Beinan Li -first_name: Beinan -last_name: Li -role: alumni -affiliation: Audiokinetic -degree: PhD -link: ---- diff --git a/_people/alumni/brian-stern.md b/_people/alumni/brian-stern.md deleted file mode 100644 index 2ba4e457..00000000 --- a/_people/alumni/brian-stern.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Brian Stern -first_name: Brian -last_name: Stern -role: alumni -affiliation: ToonBox Entertainment -degree: -link: ---- diff --git a/_people/alumni/catherine-lai.md b/_people/alumni/catherine-lai.md deleted file mode 100644 index e300cb4b..00000000 --- a/_people/alumni/catherine-lai.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Catherine Lai -first_name: Catherine -last_name: Lai -role: alumni -affiliation: OSISoft -degree: PhD -link: http://catherinelai.blogspot.com/ ---- diff --git a/_people/alumni/catherine-motuz.md b/_people/alumni/catherine-motuz.md deleted file mode 100644 index 83b3b44b..00000000 --- a/_people/alumni/catherine-motuz.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Catherine Motuz -first_name: Catherine -last_name: Motuz -role: alumni -affiliation: -degree: PhD -link: ---- diff --git a/_people/alumni/chris-niven.md b/_people/alumni/chris-niven.md deleted file mode 100644 index f267fc8b..00000000 --- a/_people/alumni/chris-niven.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Chris Niven -first_name: Chris -last_name: Niven -role: alumni -affiliation: Never Be Normal -degree: -link: ---- diff --git a/_people/alumni/christopher-antila.md b/_people/alumni/christopher-antila.md deleted file mode 100644 index 18172e5b..00000000 --- a/_people/alumni/christopher-antila.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Christopher Antila -first_name: Christopher -last_name: Antila -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/cory-mckay.md b/_people/alumni/cory-mckay.md deleted file mode 100644 index 2d9156c3..00000000 --- a/_people/alumni/cory-mckay.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Cory McKay -first_name: Cory -last_name: McKay -role: alumni -affiliation: Marianopolis College -degree: PhD, MA -link: http://www.music.mcgill.ca/~cmckay ---- diff --git a/_people/alumni/daniel-mcennis.md b/_people/alumni/daniel-mcennis.md deleted file mode 100644 index e76add7e..00000000 --- a/_people/alumni/daniel-mcennis.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Daniel McEnnis -first_name: Daniel -last_name: McEnnis -role: alumni -affiliation: -degree: MA -link: ---- diff --git a/_people/alumni/david-garfinkle.md b/_people/alumni/david-garfinkle.md deleted file mode 100644 index 394035b6..00000000 --- a/_people/alumni/david-garfinkle.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: David Garfinkle -first_name: David -last_name: Garfinkle -role: alumni -affiliation: -degree: -link: https://github.com/DavidGarfinkle ---- diff --git a/_people/alumni/deepanjan-roy.md b/_people/alumni/deepanjan-roy.md deleted file mode 100644 index 756d0798..00000000 --- a/_people/alumni/deepanjan-roy.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Deepanjan Roy -first_name: Deepanjan -last_name: Roy -role: alumni -affiliation: Google -degree: -link: ---- diff --git a/_people/alumni/evan-magoni.md b/_people/alumni/evan-magoni.md deleted file mode 100644 index 687f326b..00000000 --- a/_people/alumni/evan-magoni.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Evan Magoni -first_name: Evan -last_name: Magoni -role: alumni -affiliation: Autodesk -degree: -link: ---- diff --git a/_people/alumni/greg-eustace.md b/_people/alumni/greg-eustace.md deleted file mode 100644 index e5393096..00000000 --- a/_people/alumni/greg-eustace.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Greg Eustace -first_name: Greg -last_name: Eustace -role: alumni -affiliation: -degree: MA -link: ---- diff --git a/_people/alumni/gregory-burlet.md b/_people/alumni/gregory-burlet.md deleted file mode 100644 index 6b3d604c..00000000 --- a/_people/alumni/gregory-burlet.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Gregory Burlet -first_name: Gregory -last_name: Burlet -role: alumni -affiliation: Frettable -degree: MA -link: -neon: developer ---- diff --git a/_people/alumni/hannah-robertson.md b/_people/alumni/hannah-robertson.md deleted file mode 100644 index e5071a19..00000000 --- a/_people/alumni/hannah-robertson.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Hannah Robertson -first_name: Hannah -last_name: Robertson -role: alumni -affiliation: iZotope -degree: MA -link: http://www.music.mcgill.ca/~hannah ---- diff --git a/_people/alumni/harry-simmonds.md b/_people/alumni/harry-simmonds.md deleted file mode 100644 index ceb51e02..00000000 --- a/_people/alumni/harry-simmonds.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Harry Simmonds -first_name: Harry -last_name: Simmonds -role: alumni -affiliation: Apple -degree: -link: ---- diff --git a/_people/alumni/jamie-klassen.md b/_people/alumni/jamie-klassen.md deleted file mode 100644 index d71c0302..00000000 --- a/_people/alumni/jamie-klassen.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Jamie Klassen -first_name: Jamie -last_name: Klassen -role: alumni -affiliation: CGI -degree: -link: ---- diff --git a/_people/alumni/jason-hockman.md b/_people/alumni/jason-hockman.md deleted file mode 100644 index a69646d8..00000000 --- a/_people/alumni/jason-hockman.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Jason Hockman -first_name: Jason -last_name: Hockman -role: alumni -affiliation: Birmingham City University -degree: PhD -link: ---- diff --git a/_people/alumni/jason-leung.md b/_people/alumni/jason-leung.md deleted file mode 100644 index c23a5f18..00000000 --- a/_people/alumni/jason-leung.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Jason Leung -first_name: Jason -last_name: Leung -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/jerome-parent-levesque.md b/_people/alumni/jerome-parent-levesque.md deleted file mode 100644 index 66378da1..00000000 --- a/_people/alumni/jerome-parent-levesque.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Jérôme Parent-Lévesque -first_name: Jérôme -last_name: Parent-Lévesque -role: alumni -affiliation: Vigilant Global -degree: -link: https://ca.linkedin.com/in/j%C3%A9r%C3%B4me-parent-l%C3%A9vesque-a75966112 ---- diff --git a/_people/alumni/jessica-thompson.md b/_people/alumni/jessica-thompson.md deleted file mode 100644 index 7a6c1713..00000000 --- a/_people/alumni/jessica-thompson.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Jessica Thompson -first_name: Jessica -last_name: Thompson -role: alumni -affiliation: 'Université de Montréal' -degree: PhD -link: http://jessthompson.ca/ ---- diff --git a/_people/alumni/jin-xing.md b/_people/alumni/jin-xing.md deleted file mode 100644 index a255fad2..00000000 --- a/_people/alumni/jin-xing.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Jin Xing -first_name: Jin -last_name: Xing -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/johanna-devaney.md b/_people/alumni/johanna-devaney.md deleted file mode 100644 index a16dbf08..00000000 --- a/_people/alumni/johanna-devaney.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Johanna Devaney -first_name: Johanna -last_name: Devaney -role: alumni -affiliation: Ohio State University -degree: PhD -link: http://devaney.ca/ ---- diff --git a/_people/alumni/jordan-smith.md b/_people/alumni/jordan-smith.md deleted file mode 100644 index 0e2868f5..00000000 --- a/_people/alumni/jordan-smith.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Jordan Smith -first_name: Jordan -last_name: Smith -role: alumni -affiliation: AIST, Japan -degree: MA -link: http://www.music.mcgill.ca/~jordan ---- diff --git a/_people/alumni/jorge-calvo-zaragoza.md b/_people/alumni/jorge-calvo-zaragoza.md deleted file mode 100644 index f27aa786..00000000 --- a/_people/alumni/jorge-calvo-zaragoza.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Jorge Calvo-Zaragoza -first_name: Jorge -last_name: Calvo-Zaragoza -role: alumni -affiliation: University of Alicante -degree: Post Doc -link: ---- diff --git a/_people/alumni/justin-bell.md b/_people/alumni/justin-bell.md deleted file mode 100644 index fa775f1d..00000000 --- a/_people/alumni/justin-bell.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Justin Bell -first_name: Justin -last_name: Bell -role: alumni -affiliation: -degree: -link: https://github.com/belljustin ---- diff --git a/_people/alumni/ke-zhang.md b/_people/alumni/ke-zhang.md deleted file mode 100644 index 33ca443e..00000000 --- a/_people/alumni/ke-zhang.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Ké Zhang -first_name: Ké -last_name: Zhang -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/laurent-pugin.md b/_people/alumni/laurent-pugin.md deleted file mode 100644 index 79936849..00000000 --- a/_people/alumni/laurent-pugin.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Laurent Pugin -first_name: Laurent -last_name: Pugin -role: alumni -affiliation: RISM-CH -degree: Post Doc -link: ---- diff --git a/_people/alumni/laurier-baribeau.md b/_people/alumni/laurier-baribeau.md deleted file mode 100644 index 2e62cb3f..00000000 --- a/_people/alumni/laurier-baribeau.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Laurier Baribeau -first_name: Laurier -last_name: Baribeau -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/lillio-mok.md b/_people/alumni/lillio-mok.md deleted file mode 100644 index 024cc7ad..00000000 --- a/_people/alumni/lillio-mok.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Lillio Mok -first_name: Lillio -last_name: Mok -role: alumni -affiliation: Autodesk -degree: -link: ---- diff --git a/_people/alumni/ling-xiao-yang.md b/_people/alumni/ling-xiao-yang.md deleted file mode 100644 index 298b935b..00000000 --- a/_people/alumni/ling-xiao-yang.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Ling-Xiao Yang -first_name: Ling-Xiao -last_name: Yang -role: alumni -affiliation: The Yang -degree: MA -link: ---- diff --git a/_people/alumni/mahtab-ghamsari.md b/_people/alumni/mahtab-ghamsari.md deleted file mode 100644 index c15f6698..00000000 --- a/_people/alumni/mahtab-ghamsari.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Mahtab Ghamsari -first_name: Mahtab -last_name: Ghamsari -role: alumni -affiliation: VRSUS -degree: MA -link: ---- diff --git a/_people/alumni/marina-borsodi-benson.md b/_people/alumni/marina-borsodi-benson.md deleted file mode 100644 index 5b15c922..00000000 --- a/_people/alumni/marina-borsodi-benson.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Marina Borsodi-Benson -first_name: Marina -last_name: Borsodi-Benson -role: alumni -affiliation: Stanford University -degree: -link: ---- diff --git a/_people/alumni/marnie-reckenberg.md b/_people/alumni/marnie-reckenberg.md deleted file mode 100644 index aad570fa..00000000 --- a/_people/alumni/marnie-reckenberg.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Marnie Reckenberg -first_name: Marnie -last_name: Reckenberg -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/matan-gover.md b/_people/alumni/matan-gover.md deleted file mode 100644 index de710fab..00000000 --- a/_people/alumni/matan-gover.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Matan Gover -first_name: Matan -last_name: Gover -role: alumni -affiliation: -degree: MA -link: ---- diff --git a/_people/alumni/mathieu-bergeron.md b/_people/alumni/mathieu-bergeron.md deleted file mode 100644 index 8da4af73..00000000 --- a/_people/alumni/mathieu-bergeron.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Mathieu Bergeron -first_name: Mathieu -last_name: Bergeron -role: alumni -affiliation: Cégep Montmorency -degree: Post Doc -link: ---- diff --git a/_people/alumni/mike-winters.md b/_people/alumni/mike-winters.md deleted file mode 100644 index 13177fd9..00000000 --- a/_people/alumni/mike-winters.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Mike Winters -first_name: Mike -last_name: Winters -role: alumni -affiliation: -degree: MA -link: ---- diff --git a/_people/alumni/neda-eshraghi.md b/_people/alumni/neda-eshraghi.md deleted file mode 100644 index 26dd78e5..00000000 --- a/_people/alumni/neda-eshraghi.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Neda Eshraghi -first_name: Neda -last_name: Eshraghi -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/nicky-mirfallah.md b/_people/alumni/nicky-mirfallah.md deleted file mode 100644 index 8c223cfb..00000000 --- a/_people/alumni/nicky-mirfallah.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Nicky Mirfallah -first_name: Nicky -last_name: Mirfallah -role: alumni -affiliation: -degree: -link: https://www.linkedin.com/in/negareh?trk=nav_responsive_tab_profile_pic ---- diff --git a/_people/alumni/peter-henderson.md b/_people/alumni/peter-henderson.md deleted file mode 100644 index 4648717a..00000000 --- a/_people/alumni/peter-henderson.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Peter Henderson -first_name: Peter -last_name: Henderson -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/rajarshi-rivu-khoda.md b/_people/alumni/rajarshi-rivu-khoda.md deleted file mode 100644 index 384b22f1..00000000 --- a/_people/alumni/rajarshi-rivu-khoda.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Rajarshi Rivu Khoda -first_name: Rajarshi Rivu -last_name: Khoda -role: alumni -affiliation: IBM -degree: -link: ---- diff --git a/_people/alumni/rebecca-fiebrink.md b/_people/alumni/rebecca-fiebrink.md deleted file mode 100644 index 476a2911..00000000 --- a/_people/alumni/rebecca-fiebrink.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Rebecca Fiebrink -first_name: Rebecca -last_name: Fiebrink -role: alumni -affiliation: Goldsmiths, University of London -degree: MA, PhD Princeton University -link: ---- diff --git a/_people/alumni/reiko-yamada.md b/_people/alumni/reiko-yamada.md deleted file mode 100644 index c0a39c95..00000000 --- a/_people/alumni/reiko-yamada.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Reiko Yamada -first_name: Reiko -last_name: Yamada -role: alumni -affiliation: -degree: DMA Composition -link: ---- diff --git a/_people/alumni/reiner-kramer.md b/_people/alumni/reiner-kramer.md deleted file mode 100644 index 7bede1b8..00000000 --- a/_people/alumni/reiner-kramer.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Reiner Krämer -first_name: Reiner -last_name: Krämer -role: alumni -affiliation: University of Northern Colorado -degree: Post Doc -link: ---- diff --git a/_people/alumni/remi-chiu.md b/_people/alumni/remi-chiu.md deleted file mode 100644 index 64d55aab..00000000 --- a/_people/alumni/remi-chiu.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Remi Chiu -first_name: Remi -last_name: Chiu -role: alumni -affiliation: Loyola University Maryland -degree: PhD Musicology -link: ---- diff --git a/_people/alumni/robert-ferguson.md b/_people/alumni/robert-ferguson.md deleted file mode 100644 index fee03f4c..00000000 --- a/_people/alumni/robert-ferguson.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Robert Ferguson -first_name: Robert -last_name: Ferguson -role: alumni -affiliation: Automatic Labs -degree: MA -link: ---- diff --git a/_people/alumni/rory-o-connor.md b/_people/alumni/rory-o-connor.md deleted file mode 100644 index a7a5c427..00000000 --- a/_people/alumni/rory-o-connor.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Rory O'Connor -first_name: Rory -last_name: O'Connor -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/ruth-berkow.md b/_people/alumni/ruth-berkow.md deleted file mode 100644 index 8f95ddaf..00000000 --- a/_people/alumni/ruth-berkow.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Ruth Berkow -first_name: Ruth -last_name: Berkow -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/ryan-bannon.md b/_people/alumni/ryan-bannon.md deleted file mode 100644 index 5244a6fa..00000000 --- a/_people/alumni/ryan-bannon.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Ryan Bannon -first_name: Ryan -last_name: Bannon -role: alumni -affiliation: CaseWare -degree: -link: ---- diff --git a/_people/alumni/sacah-perry-fagant.md b/_people/alumni/sacah-perry-fagant.md deleted file mode 100644 index c18870ca..00000000 --- a/_people/alumni/sacah-perry-fagant.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Sacah Perry-Fagant -first_name: Sacah -last_name: Perry-Fagant -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/saining-li.md b/_people/alumni/saining-li.md deleted file mode 100644 index 92b73bc5..00000000 --- a/_people/alumni/saining-li.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Saining Li -first_name: Saining -last_name: Li -role: alumni -affiliation: Ayuda Media Systems -degree: -link: http://cs.mcgill.ca/~sli90 ---- diff --git a/_people/alumni/simon-de-leon.md b/_people/alumni/simon-de-leon.md deleted file mode 100644 index 8e8f0b55..00000000 --- a/_people/alumni/simon-de-leon.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Simon de Leon -first_name: Simon -last_name: Leon -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/spencer-campbell.md b/_people/alumni/spencer-campbell.md deleted file mode 100644 index b16e1c02..00000000 --- a/_people/alumni/spencer-campbell.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Spencer Cambell -first_name: Spencer -last_name: Cambell -role: alumni -affiliation: -degree: MA -link: ---- diff --git a/_people/alumni/tim-wilfong.md b/_people/alumni/tim-wilfong.md deleted file mode 100644 index 5d7f29a0..00000000 --- a/_people/alumni/tim-wilfong.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Tim Wilfong -first_name: Tim -last_name: Wilfong -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/tristan-himmelman.md b/_people/alumni/tristan-himmelman.md deleted file mode 100644 index 1cd4662e..00000000 --- a/_people/alumni/tristan-himmelman.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Tristan Himmelman -first_name: Tristan -last_name: Himmelman -role: alumni -affiliation: Hearst -degree: -link: ---- diff --git a/_people/alumni/tristan-matthews.md b/_people/alumni/tristan-matthews.md deleted file mode 100644 index 10db1ca1..00000000 --- a/_people/alumni/tristan-matthews.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Tristan Matthews -first_name: Tristan -last_name: Matthews -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/tristano-tenaglia.md b/_people/alumni/tristano-tenaglia.md deleted file mode 100644 index 6a17cb82..00000000 --- a/_people/alumni/tristano-tenaglia.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Tristano Tenaglia -first_name: Tristano -last_name: Tenaglia -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/veronique-lagace.md b/_people/alumni/veronique-lagace.md deleted file mode 100644 index ba4ba2a1..00000000 --- a/_people/alumni/veronique-lagace.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Véronique Lagacé -first_name: Véronique -last_name: Lagacé -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/wei-gao.md b/_people/alumni/wei-gao.md deleted file mode 100644 index c0cc469d..00000000 --- a/_people/alumni/wei-gao.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Wei Gao -first_name: Wei -last_name: Gao -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/wendy-liu.md b/_people/alumni/wendy-liu.md deleted file mode 100644 index 3f10d9db..00000000 --- a/_people/alumni/wendy-liu.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Wendy Liu -first_name: Wendy -last_name: Liu -role: alumni -affiliation: Macromeasures -degree: -link: ---- diff --git a/_people/alumni/william-bain.md b/_people/alumni/william-bain.md deleted file mode 100644 index ed6c8991..00000000 --- a/_people/alumni/william-bain.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: William Bain -first_name: William -last_name: Bain -role: alumni -affiliation: Cisco Systems -degree: -link: ---- diff --git a/_people/alumni/yihong-luo.md b/_people/alumni/yihong-luo.md deleted file mode 100644 index 266854a9..00000000 --- a/_people/alumni/yihong-luo.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Yihong Luo -first_name: Yihong -last_name: Luo -role: alumni -affiliation: Manulife -degree: -link: ---- diff --git a/_people/alumni/yu-hua.md b/_people/alumni/yu-hua.md deleted file mode 100644 index 1964fd4c..00000000 --- a/_people/alumni/yu-hua.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Yu Hua -first_name: Yu -last_name: Hua -role: alumni -affiliation: Airbnb -degree: -link: ---- diff --git a/_people/alumni/yue-phillis-ouyang.md b/_people/alumni/yue-phillis-ouyang.md deleted file mode 100644 index 0266c49c..00000000 --- a/_people/alumni/yue-phillis-ouyang.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Yue Phillis Ouyang -first_name: Yue Phillis -last_name: Ouyang -role: alumni -affiliation: -degree: -link: ---- diff --git a/_people/alumni/zeyad-saleh.md b/_people/alumni/zeyad-saleh.md deleted file mode 100644 index b2d63d11..00000000 --- a/_people/alumni/zeyad-saleh.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Zeyad Saleh -first_name: Zeyad -last_name: Saleh -role: alumni -affiliation: Apple -degree: -link: ---- diff --git a/_people/doctoral-students/martha-thomae.md b/_people/doctoral-students/martha-thomae.md deleted file mode 100644 index be6a8e54..00000000 --- a/_people/doctoral-students/martha-thomae.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Martha Thomae -first_name: Martha -last_name: Thomae -role: doctoral ---- diff --git a/_people/doctoral-students/nestor-napoles.md b/_people/doctoral-students/nestor-napoles.md deleted file mode 100644 index fde57192..00000000 --- a/_people/doctoral-students/nestor-napoles.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Néstor Nápoles -first_name: Néstor -last_name: Nápoles -role: doctoral ---- diff --git a/_people/doctoral-students/yaolong-ju.md b/_people/doctoral-students/yaolong-ju.md deleted file mode 100644 index 216b2e55..00000000 --- a/_people/doctoral-students/yaolong-ju.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Yaolong Ju -first_name: Yaolong -last_name: Ju -role: doctoral ---- diff --git a/_people/lab-members/andrew-tran.md b/_people/lab-members/andrew-tran.md deleted file mode 100644 index 291bda97..00000000 --- a/_people/lab-members/andrew-tran.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Andrew Tran -first_name: Andrew -last_name: Tran -role: lab-member -neon: developer ---- diff --git a/_people/lab-members/eric-han-liu.md b/_people/lab-members/eric-han-liu.md deleted file mode 100644 index 3f940925..00000000 --- a/_people/lab-members/eric-han-liu.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Eric Han Liu -first_name: Eric Han -last_name: Liu -role: lab-member ---- diff --git a/_people/lab-members/evan-savage.md b/_people/lab-members/evan-savage.md deleted file mode 100644 index f421246c..00000000 --- a/_people/lab-members/evan-savage.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Evan Savage -first_name: Evan -last_name: Savage -role: lab-member -link: https://www.linkedin.com/in/evan-savage-45050694/ ---- diff --git a/_people/lab-members/gustavo-pedro.md b/_people/lab-members/gustavo-pedro.md deleted file mode 100644 index 19abfd9d..00000000 --- a/_people/lab-members/gustavo-pedro.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Gustavo Pedro -first_name: Gustavo -last_name: Pedro -role: lab-member ---- diff --git a/_people/lab-members/juliette-regimbal.md b/_people/lab-members/juliette-regimbal.md deleted file mode 100644 index e8db9bd5..00000000 --- a/_people/lab-members/juliette-regimbal.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Juliette Regimbal -first_name: Juliette -last_name: Regimbal -role: lab-member -neon: developer ---- diff --git a/_people/lab-members/laura-beauchamp.md b/_people/lab-members/laura-beauchamp.md deleted file mode 100644 index b8a78b0a..00000000 --- a/_people/lab-members/laura-beauchamp.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Laura Beauchamp -first_name: Laura -last_name: Beauchamp -role: lab-member ---- diff --git a/_people/lab-members/minh-anh-nguyen.md b/_people/lab-members/minh-anh-nguyen.md deleted file mode 100644 index e959e501..00000000 --- a/_people/lab-members/minh-anh-nguyen.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Minh Anh Nguyen -first_name: Minh Anh -last_name: Nguyen -role: lab-member ---- diff --git a/_people/lab-members/vi-an-tran.md b/_people/lab-members/vi-an-tran.md deleted file mode 100644 index 43f6d80d..00000000 --- a/_people/lab-members/vi-an-tran.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Vi-An Tran -first_name: Vi-An -last_name: Tran -role: lab-member ---- diff --git a/_people/lab-members/zoe-mclennan.md b/_people/lab-members/zoe-mclennan.md deleted file mode 100644 index 2a571fdb..00000000 --- a/_people/lab-members/zoe-mclennan.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Zoé McLennan -first_name: Zoé -last_name: McLennan -role: lab-member -neon: developer ---- diff --git a/_people/masters-students/alex-daigle.md b/_people/masters-students/alex-daigle.md deleted file mode 100644 index 5eed08c2..00000000 --- a/_people/masters-students/alex-daigle.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Alex Daigle -first_name: Alex -last_name: Daigle -role: masters ---- diff --git a/_people/masters-students/andrew-kam.md b/_people/masters-students/andrew-kam.md deleted file mode 100644 index ee0dc5fd..00000000 --- a/_people/masters-students/andrew-kam.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Andrew Kam -first_name: Andrew -last_name: Kam -role: masters ---- diff --git a/_people/masters-students/timothy-de-reuse.md b/_people/masters-students/timothy-de-reuse.md deleted file mode 100644 index 6d78e107..00000000 --- a/_people/masters-students/timothy-de-reuse.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Timothy de Reuse -first_name: Timothy -last_name: de Reuse -role: masters ---- diff --git a/_people/post-doctoral-fellows/claire-arthur.md b/_people/post-doctoral-fellows/claire-arthur.md deleted file mode 100644 index 0b9311eb..00000000 --- a/_people/post-doctoral-fellows/claire-arthur.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Claire Arthur -first_name: Claire -last_name: Arthur -role: post-doctoral ---- diff --git a/_people/post-doctoral-fellows/gabriel-vigliensoni.md b/_people/post-doctoral-fellows/gabriel-vigliensoni.md deleted file mode 100644 index d70353db..00000000 --- a/_people/post-doctoral-fellows/gabriel-vigliensoni.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: Gabriel Vigliensoni -first_name: Gabriel -last_name: Vigliensoni -role: post-doctoral -link: http://vigliensoni.com/blog -neon: project-manager ---- diff --git a/_people/post-doctoral-fellows/nathaniel-condit-schultz.md b/_people/post-doctoral-fellows/nathaniel-condit-schultz.md deleted file mode 100644 index 9d0353a5..00000000 --- a/_people/post-doctoral-fellows/nathaniel-condit-schultz.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Nathaniel Condit-Schultz -first_name: Nathaniel -last_name: Condit-Schultz -role: post-doctoral ---- diff --git a/_people/project-manager/emily-hopkins.md b/_people/project-manager/emily-hopkins.md deleted file mode 100644 index 6a3d1729..00000000 --- a/_people/project-manager/emily-hopkins.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Emily Hopkins -first_name: Emily -last_name: Hopkins -role: project-manager ---- diff --git a/_people/supervisor/ichiro-fujinaga.md b/_people/supervisor/ichiro-fujinaga.md deleted file mode 100644 index 5b8a7e9c..00000000 --- a/_people/supervisor/ichiro-fujinaga.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: Ichiro Fujinaga -first_name: Ichiro Fujinaga -last_name: Fujinaga -link: http://www.music.mcgill.ca/~ich -role: supervisor -neon: project-manager ---- diff --git a/_posters/2005/Burgoyne_Learning_harmonic_Relationships_in_Digital_Audio_with_Dirichlet-Based_Hidden_Markov_Models_2005.md b/_posters/2005/Burgoyne_Learning_harmonic_Relationships_in_Digital_Audio_with_Dirichlet-Based_Hidden_Markov_Models_2005.md deleted file mode 100644 index f913dbd4..00000000 --- a/_posters/2005/Burgoyne_Learning_harmonic_Relationships_in_Digital_Audio_with_Dirichlet-Based_Hidden_Markov_Models_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Burgoyne, John Ashley, and Lawrence K. Saul. 2005. “Learning Harmonic Relationships in Digital Audio with Dirichlet-Based Hidden Markov Models.” Poster presented at the 6th International Conference on Music Information Retrieval, London, UK, September 11. \ No newline at end of file diff --git a/_posters/2005/Fiebrink_Combining_D2K_and_JGAP_for_Efficient_Feature_Weighting_for_Classification_Tasks_in_Music_Information_Retrieval_2005.md b/_posters/2005/Fiebrink_Combining_D2K_and_JGAP_for_Efficient_Feature_Weighting_for_Classification_Tasks_in_Music_Information_Retrieval_2005.md deleted file mode 100644 index 57dd46a6..00000000 --- a/_posters/2005/Fiebrink_Combining_D2K_and_JGAP_for_Efficient_Feature_Weighting_for_Classification_Tasks_in_Music_Information_Retrieval_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Fiebrink, Rebecca, Cory McKay, and Ichiro Fujinaga. 2005. “Combining D2K and JGAP for Efficient Feature Weighting for Classification Tasks in Music Information Retrieval.” Poster, London, UK, September 11. \ No newline at end of file diff --git a/_posters/2005/Lai_MetaData_for_Phonograph_Records:_Facilitating_New_Forms_of_Use_and_Access_to_Analogue_Recordings_2005.md b/_posters/2005/Lai_MetaData_for_Phonograph_Records:_Facilitating_New_Forms_of_Use_and_Access_to_Analogue_Recordings_2005.md deleted file mode 100644 index cf5bf9c6..00000000 --- a/_posters/2005/Lai_MetaData_for_Phonograph_Records:_Facilitating_New_Forms_of_Use_and_Access_to_Analogue_Recordings_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Lai, Catherine, Ichiro Fujinaga, and Cynthia A. Leive. 2005. “MetaData for Phonograph Records: Facilitating New Forms of Use and Access to Analogue Recordings.” Poster presented at the 5th ACM/IEEE-CS joint conference on Digital libraries, Denver, USA, June 7. \ No newline at end of file diff --git a/_posters/2005/Lai_Preservation_Digitizaation_of_David_Edelberg's_Handel_LP_Collection:_A_Pilot_Project_2005.md b/_posters/2005/Lai_Preservation_Digitizaation_of_David_Edelberg's_Handel_LP_Collection:_A_Pilot_Project_2005.md deleted file mode 100644 index 3987d631..00000000 --- a/_posters/2005/Lai_Preservation_Digitizaation_of_David_Edelberg's_Handel_LP_Collection:_A_Pilot_Project_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Lai, Catherine, Beinan Li, and Ichiro Fujinaga. 2005. “Preservation Digitizaation of David Edelberg’s Handel LP Collection: A Pilot Project.” Poster presented at the 6th International Conference on Music Information Retrieval, London, UK, September 11. \ No newline at end of file diff --git a/_posters/2005/McEnnis_jAudio:_A_Feature_Extraction_Library_2005.md b/_posters/2005/McEnnis_jAudio:_A_Feature_Extraction_Library_2005.md deleted file mode 100644 index 4a4eee27..00000000 --- a/_posters/2005/McEnnis_jAudio:_A_Feature_Extraction_Library_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -McEnnis, Daniel, Cory McKay, Ichiro Fujinaga, and Philippe Depalle. 2005. “JAudio: A Feature Extraction Library.” Posrer presented at the 6th International Conference on Music Information Retrieval, London, UK, September 11. \ No newline at end of file diff --git a/_posters/2005/Sinyor_Beatbox_Classification_using_ACE_2005.md b/_posters/2005/Sinyor_Beatbox_Classification_using_ACE_2005.md deleted file mode 100644 index f3abb402..00000000 --- a/_posters/2005/Sinyor_Beatbox_Classification_using_ACE_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Sinyor, Elliot, Cory McKay, Rebecca Fiebrink, Daniel McEnnis, and Ichiro Fujinaga. 2005. “Beatbox Classification Using ACE.” Poster presented at the 6th International Conference on Music Information Retrieval, London, UK, September 11. \ No newline at end of file diff --git a/_posters/2006/Fujinaga_On-Demand_Metadata_Extraction_Network_[OMEN]:_Making_libraries'_music_collections_available_to_MIR_researchers_for_search_and_analysis_2006.md b/_posters/2006/Fujinaga_On-Demand_Metadata_Extraction_Network_[OMEN]:_Making_libraries'_music_collections_available_to_MIR_researchers_for_search_and_analysis_2006.md deleted file mode 100644 index 031f73b1..00000000 --- a/_posters/2006/Fujinaga_On-Demand_Metadata_Extraction_Network_[OMEN]:_Making_libraries'_music_collections_available_to_MIR_researchers_for_search_and_analysis_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Fujinaga, Ichiro, and Daniel McEnnis. 2006. “On-Demand Metadata Extraction Network [OMEN]: Making Libraries’ Music Collections Available to MIR Researchers for Search and Analysis.” Poster presented at the 6th ACM/IEEE-CS joint conference on Digital libraries, New York City, USA, June 11. \ No newline at end of file diff --git a/_posters/2006/Lai_A_Metadata_Data_Dictionary_for_Analog_Sound_and_Recordings_2006.md b/_posters/2006/Lai_A_Metadata_Data_Dictionary_for_Analog_Sound_and_Recordings_2006.md deleted file mode 100644 index 71b9144f..00000000 --- a/_posters/2006/Lai_A_Metadata_Data_Dictionary_for_Analog_Sound_and_Recordings_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Lai, Catherine, and Ichiro Fujinaga. 2006. “A Metadata Data Dictionary for Analog Sound and Recordings.” Poster presented at the 6th ACM/IEEE-CS joint conference on Digital libraries, Chapel Hill, USA, June 11. \ No newline at end of file diff --git a/_posters/2006/Li_Automatic_Track_Segmentation_for_Digitized_Phonograph_Records_2006.md b/_posters/2006/Li_Automatic_Track_Segmentation_for_Digitized_Phonograph_Records_2006.md deleted file mode 100644 index 296ca224..00000000 --- a/_posters/2006/Li_Automatic_Track_Segmentation_for_Digitized_Phonograph_Records_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Li, Beinan, Ichiro Fujinaga, and Cory McKay. 2006. “Automatic Track Segmentation for Digitized Phonograph Records.” Poster, May. \ No newline at end of file diff --git a/_posters/2006/Li_Extending_Audacity_for_Audio_Annotation_2006.md b/_posters/2006/Li_Extending_Audacity_for_Audio_Annotation_2006.md deleted file mode 100644 index 7d0177e9..00000000 --- a/_posters/2006/Li_Extending_Audacity_for_Audio_Annotation_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Li, Beinan, John Ashley Burgoyne, and Ichiro Fujinaga. 2006. “Extending Audacity for Audio Annotation.” Poster presented at the 7th International Society for Music Information Retrieval Conference, Victoria, Canada, October 8. \ No newline at end of file diff --git a/_posters/2006/Li_Technical_Issues_in_Digitization_of_Large_Online_Collections_of_Phonograph_Records_-_Part_2_2006.md b/_posters/2006/Li_Technical_Issues_in_Digitization_of_Large_Online_Collections_of_Phonograph_Records_-_Part_2_2006.md deleted file mode 100644 index 4854dc14..00000000 --- a/_posters/2006/Li_Technical_Issues_in_Digitization_of_Large_Online_Collections_of_Phonograph_Records_-_Part_2_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Li, Beinan, Catherine Lai, and Ichiro Fujinaga. 2006b. “Technical Issues in Digitization of Large Online Collections of Phonograph Records - Part 2.” Poster presented at the 3rd IS&T Archiving Conference, Ottawa, Canada, May 23. \ No newline at end of file diff --git a/_posters/2006/Li_Technical_Issues_in_Digitization_of_Large_Online_Collections_of_Phonograph_Records_2006.md b/_posters/2006/Li_Technical_Issues_in_Digitization_of_Large_Online_Collections_of_Phonograph_Records_2006.md deleted file mode 100644 index 376849c9..00000000 --- a/_posters/2006/Li_Technical_Issues_in_Digitization_of_Large_Online_Collections_of_Phonograph_Records_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Li, Beinan, Catherine Lai, and Ichiro Fujinaga. 2006a. “Technical Issues in Digitization of Large Online Collections of Phonograph Records.” Poster presented at the 3rd IS&T Archiving Conference, Ottawa, Canada, May 23. \ No newline at end of file diff --git a/_posters/2006/McEnnis_jAudio:_Additions_and_Improvements_2006.md b/_posters/2006/McEnnis_jAudio:_Additions_and_Improvements_2006.md deleted file mode 100644 index 25ce5b9d..00000000 --- a/_posters/2006/McEnnis_jAudio:_Additions_and_Improvements_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -McEnnis, Daniel, Cory McKay, and Ichiro Fujinaga. 2006. “JAudio: Additions and Improvements.” Poster presented at the 7th International Conference on Music Information Retrieval, Victoria, Canada, October 8. \ No newline at end of file diff --git a/_posters/2006/McKay_Combining_Features_Extracted_from_Audio,_Symbolic_and_Cultural_Sources_2006.md b/_posters/2006/McKay_Combining_Features_Extracted_from_Audio,_Symbolic_and_Cultural_Sources_2006.md deleted file mode 100644 index 693a5124..00000000 --- a/_posters/2006/McKay_Combining_Features_Extracted_from_Audio,_Symbolic_and_Cultural_Sources_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -McKay, Cory, and Ichiro Fujinaga. 2006. “Combining Features Extracted from Audio, Symbolic and Cultural Sources.” Poster presented at the 8th International Conference on Music Information Retrieval, Vienna, Austria, June 11. \ No newline at end of file diff --git a/_posters/2006/Sinclair_Lilypond_for_PyScore:_Approaching_a_Universal_Translator_for_Music_Notation_2006.md b/_posters/2006/Sinclair_Lilypond_for_PyScore:_Approaching_a_Universal_Translator_for_Music_Notation_2006.md deleted file mode 100644 index bd66f762..00000000 --- a/_posters/2006/Sinclair_Lilypond_for_PyScore:_Approaching_a_Universal_Translator_for_Music_Notation_2006.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2006 -year: 2006 ---- - -Sinclair, Stephen, Michael Droettboom, and Ichiro Fujinaga. 2006. “Lilypond for PyScore: Approaching a Universal Translator for Music Notation.” Poster presented at the 7th International Conference on Music Information Retrieval, Victoria, Canada, October 8. \ No newline at end of file diff --git a/_posters/2007/Lai_Metadata_Infrastructure_for_Sound_Recordings_2007.md b/_posters/2007/Lai_Metadata_Infrastructure_for_Sound_Recordings_2007.md deleted file mode 100644 index d4d8d41b..00000000 --- a/_posters/2007/Lai_Metadata_Infrastructure_for_Sound_Recordings_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Lai, Catherine, Ichiro Fujinaga, David Descheneau, Michael Frishkopf, Jenn Riley, Joseph Hafner, and Brian McMillan. 2007. “Metadata Infrastructure for Sound Recordings.” Poster presented at the 8th International Conference on Music Information Retrieval, Vienna, Austria, September 23. \ No newline at end of file diff --git a/_posters/2007/Li_Alternative_Digitization_Approach_for_Stereo_Phonograph_Records_Using_Optical_Audio_Reconstruction_2007.md b/_posters/2007/Li_Alternative_Digitization_Approach_for_Stereo_Phonograph_Records_Using_Optical_Audio_Reconstruction_2007.md deleted file mode 100644 index e7ced622..00000000 --- a/_posters/2007/Li_Alternative_Digitization_Approach_for_Stereo_Phonograph_Records_Using_Optical_Audio_Reconstruction_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -Li, Beinan, Simon de Leon, and Ichiro Fujinaga. 2007. “Alternative Digitization Approach for Stereo Phonograph Records Using Optical Audio Reconstruction.” Poster presented at the 8th International Society for Music Information Retrieval Conference, Vienna, Austria, September 23. \ No newline at end of file diff --git a/_posters/2007/McKay_jWebMiner:_A_Web-Based_Feature_Extractor_2007.md b/_posters/2007/McKay_jWebMiner:_A_Web-Based_Feature_Extractor_2007.md deleted file mode 100644 index 59ecca93..00000000 --- a/_posters/2007/McKay_jWebMiner:_A_Web-Based_Feature_Extractor_2007.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2007 -year: 2007 ---- - -McKay, Cory, and Ichiro Fujinaga. 2007. “JWebMiner: A Web-Based Feature Extractor.” Poster presented at the 8th International Conference on Music Information Retrieval, Vienna, Austria, September 23. \ No newline at end of file diff --git a/_posters/2008/Burgoyne_Enhanced_Bleedthrough_Correction_for_Early_Music_Document_with_Recto-Verso_Registration_2008.md b/_posters/2008/Burgoyne_Enhanced_Bleedthrough_Correction_for_Early_Music_Document_with_Recto-Verso_Registration_2008.md deleted file mode 100644 index 081fc896..00000000 --- a/_posters/2008/Burgoyne_Enhanced_Bleedthrough_Correction_for_Early_Music_Document_with_Recto-Verso_Registration_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Burgoyne, John Ashley, Johanna Devaney, Laurent Pugin, and Ichiro Fujinaga. 2008. “Enhanced Bleedthrough Correction for Early Music Document with Recto-Verso Registration.” Poster presented at the 9th International Conference on Music Information Retrieval, Philadelphia, USA, September 14. \ No newline at end of file diff --git a/_posters/2008/Devaney_Assessing_the_Role_of_Sensory_Consonance_in_Trained_Musicians'_Tuning_Preferences_2008.md b/_posters/2008/Devaney_Assessing_the_Role_of_Sensory_Consonance_in_Trained_Musicians'_Tuning_Preferences_2008.md deleted file mode 100644 index 38cae22d..00000000 --- a/_posters/2008/Devaney_Assessing_the_Role_of_Sensory_Consonance_in_Trained_Musicians'_Tuning_Preferences_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Devaney, Johanna, and Ichiro Fujinaga. 2008. “Assessing the Role of Sensory Consonance in Trained Musicians’ Tuning Preferences.” Poster presented at the 10th International Conference on Music Perception and Cognition, Sapporo, Japan, August 25. \ No newline at end of file diff --git a/_posters/2008/Hankinson_A_Web-Based_Musical_Document_viewer_for_Digital_Music_library_2008.md b/_posters/2008/Hankinson_A_Web-Based_Musical_Document_viewer_for_Digital_Music_library_2008.md deleted file mode 100644 index eb6a8933..00000000 --- a/_posters/2008/Hankinson_A_Web-Based_Musical_Document_viewer_for_Digital_Music_library_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Hankinson, Andrew, Laurent Pugin, Gabriella Hanke Knaus, and Ichiro Fujinaga. 2008. “A Web-Based Musical Document Viewer for Digital Music Library.” Poster (late-breaking) presented at the Conference of the International Society for Music Information Retrieval, Philadelphia, PA. \ No newline at end of file diff --git a/_posters/2008/Hockman_Automated_Rhythmic_Transformation_of_Musical_Audio_2008.md b/_posters/2008/Hockman_Automated_Rhythmic_Transformation_of_Musical_Audio_2008.md deleted file mode 100644 index b21d76bd..00000000 --- a/_posters/2008/Hockman_Automated_Rhythmic_Transformation_of_Musical_Audio_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Hockman, Jason A., Matthew E.P. Davies, Juan P. Bello, and Mark D. Plumbley. 2008. “Automated Rhythmic Transformation of Musical Audio.” Poster presented at the 11th International Conference on Digital Audio Effects, Espoo, Finland, September 1. \ No newline at end of file diff --git a/_posters/2008/Pugin_Gamera_versus_Aruspix:_Two_Optical_Music_Recognition_Approaches_2008.md b/_posters/2008/Pugin_Gamera_versus_Aruspix:_Two_Optical_Music_Recognition_Approaches_2008.md deleted file mode 100644 index fcf5df27..00000000 --- a/_posters/2008/Pugin_Gamera_versus_Aruspix:_Two_Optical_Music_Recognition_Approaches_2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Pugin, Laurent, Jason Hockman, John Ashley Burgoyne, and Ichiro Fujinaga. 2008. “Gamera versus Aruspix: Two Optical Music Recognition Approaches.” Poster presented at the 9th International Society for Music Information Retrieval Conference, Philadelphia, USA, September 14. \ No newline at end of file diff --git a/_posters/2008/Pugin_Optical_Music_Recognition_to_Digitise_Early_Music_Collections_on_a_Library_Scale._2008.md b/_posters/2008/Pugin_Optical_Music_Recognition_to_Digitise_Early_Music_Collections_on_a_Library_Scale._2008.md deleted file mode 100644 index a70f221f..00000000 --- a/_posters/2008/Pugin_Optical_Music_Recognition_to_Digitise_Early_Music_Collections_on_a_Library_Scale._2008.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2008 -year: 2008 ---- - -Pugin, Laurent, John Ashley Burgoyne, and Ichiro Fujinaga. 2008. “Optical Music Recognition to Digitise Early Music Collections on a Library Scale.” Poster presented at the annual International Association of Music Libraries, Archives and Documentation Centres Congress, Naples, Italy, July 20. \ No newline at end of file diff --git a/_posters/2009/Devaney_Intonation_Tendencies_in_Sola_A_Cappella_Vocal_Performances_2009.md b/_posters/2009/Devaney_Intonation_Tendencies_in_Sola_A_Cappella_Vocal_Performances_2009.md deleted file mode 100644 index 17282a11..00000000 --- a/_posters/2009/Devaney_Intonation_Tendencies_in_Sola_A_Cappella_Vocal_Performances_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Devaney, Johanna, Jonathan Wild, Ichiro Fujinaga, and Douglas Elk. 2009. “Intonation Tendencies in Sola A Cappella Vocal Performances.” Poster presented at the 2009 Biennial Meeting of the Society for Music Perception and Cognition, Indianapolis, USA, August 3. \ No newline at end of file diff --git a/_posters/2009/Hockman_Automated_Phase_Vocoder_2009.md b/_posters/2009/Hockman_Automated_Phase_Vocoder_2009.md deleted file mode 100644 index 2a8263f8..00000000 --- a/_posters/2009/Hockman_Automated_Phase_Vocoder_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Hockman, Jason A., Marcelo M. Wanderley, and Ichiro Fujinaga. 2009. “Automated Phase Vocoder.” Poster presented at the 9th New Interfaces for Musical Expression International Conference, Pittsburgh, USA, June 4. \ No newline at end of file diff --git a/_posters/2009/Li_Optical_Audio_Reconstruction_for_Stereo_Phonograph_Records_using_White-Light_Interferometry_2009.md b/_posters/2009/Li_Optical_Audio_Reconstruction_for_Stereo_Phonograph_Records_using_White-Light_Interferometry_2009.md deleted file mode 100644 index ca4f83a0..00000000 --- a/_posters/2009/Li_Optical_Audio_Reconstruction_for_Stereo_Phonograph_Records_using_White-Light_Interferometry_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Li, Beinan, Jordan B. L. Smith, and Ichiro Fujinaga. 2009. “Optical Audio Reconstruction for Stereo Phonograph Records Using White-Light Interferometry.” Poster presented at the 10th International Society for Music Information Retrieval Conference, Kobe, Japan, October 26. \ No newline at end of file diff --git a/_posters/2009/McKay_jMir:_Tools_for_Automatic_Music_Classification_2009.md b/_posters/2009/McKay_jMir:_Tools_for_Automatic_Music_Classification_2009.md deleted file mode 100644 index 21b7b380..00000000 --- a/_posters/2009/McKay_jMir:_Tools_for_Automatic_Music_Classification_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -McKay, Cory, and Ichiro Fujinaga. 2009. “JMir: Tools for Automatic Music Classification.” Poster presented at the 2009 International Computer Music Conference, Montreal, Canada, August 16. \ No newline at end of file diff --git a/_posters/2009/Ouyang_A_Robust_Border_Detection_Algorithm_with_Application_to_Medieval_Music_Manuscripts_2009.md b/_posters/2009/Ouyang_A_Robust_Border_Detection_Algorithm_with_Application_to_Medieval_Music_Manuscripts_2009.md deleted file mode 100644 index b15a609c..00000000 --- a/_posters/2009/Ouyang_A_Robust_Border_Detection_Algorithm_with_Application_to_Medieval_Music_Manuscripts_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Ouyang, Yue, John Ashley Burgoyne, Laurent Pugin, and Ichiro Fujinaga. 2009. “A Robust Border Detection Algorithm with Application to Medieval Music Manuscripts.” Poster presented at the 2009 International Computer Music Conference, Montreal, Canada, August 16. \ No newline at end of file diff --git a/_posters/2009/Thompson_Additions_and_improvements_to_the_ACE_2.0_Music_Classifier_2009.md b/_posters/2009/Thompson_Additions_and_improvements_to_the_ACE_2.0_Music_Classifier_2009.md deleted file mode 100644 index 23aa9eba..00000000 --- a/_posters/2009/Thompson_Additions_and_improvements_to_the_ACE_2.0_Music_Classifier_2009.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2009 -year: 2009 ---- - -Thompson, Jessica, Cory McKay, John Ashley Burgoyne, and Ichiro Fujinaga. 2009. “Additions and Improvements to the ACE 2.0 Music Classifier.” Poster presented at the 10th International Society for Music Information Retrieval Conference, Kobe, Japan, October 26. \ No newline at end of file diff --git a/_posters/2010/Angeles_Discovering_Metadata_Inconsistencies_2010.md b/_posters/2010/Angeles_Discovering_Metadata_Inconsistencies_2010.md deleted file mode 100644 index 09d6dd72..00000000 --- a/_posters/2010/Angeles_Discovering_Metadata_Inconsistencies_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Angeles, Bruno, Cory McKay, and Ichiro Fujinaga. 2010. “Discovering Metadata Inconsistencies.” Poster presented at the 11th International Society for Music Information Retrieval Conference, Utrecht, Netherlands, August 9. \ No newline at end of file diff --git a/_posters/2010/Burgoyne_Smart_Statistical_Models_for_Musical_Data_2010.md b/_posters/2010/Burgoyne_Smart_Statistical_Models_for_Musical_Data_2010.md deleted file mode 100644 index 3b03a4b3..00000000 --- a/_posters/2010/Burgoyne_Smart_Statistical_Models_for_Musical_Data_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Burgoyne, John Ashley, and Ichiro Fujinaga. 2010. “Smart Statistical Models for Musical Data.” Poster presented at the annual meeting of the Society for Music Theory, Indianapolis, USA, November 4. \ No newline at end of file diff --git a/_posters/2010/Conklin_Discovery_of_Contrapuntal_Patterns_2010.md b/_posters/2010/Conklin_Discovery_of_Contrapuntal_Patterns_2010.md deleted file mode 100644 index d5f765b9..00000000 --- a/_posters/2010/Conklin_Discovery_of_Contrapuntal_Patterns_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Conklin, Darrell, and Mathieu Bergeron. 2010. “Discovery of Contrapuntal Patterns.” Poster presented at the 11th International Society for Music Information Retrieval Conference, Utrecht, Netherlands, August 9. \ No newline at end of file diff --git a/_posters/2010/Devaney_AMPACT:_Automated_music_Performance_Analysis_and_Comparison_Toolkit_2010.md b/_posters/2010/Devaney_AMPACT:_Automated_music_Performance_Analysis_and_Comparison_Toolkit_2010.md deleted file mode 100644 index 02b23228..00000000 --- a/_posters/2010/Devaney_AMPACT:_Automated_music_Performance_Analysis_and_Comparison_Toolkit_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Devaney, Johanna, and Ichiro Fujinaga. 2010. “AMPACT: Automated Music Performance Analysis and Comparison Toolkit.” Poster. \ No newline at end of file diff --git a/_posters/2010/Hankinson_An_Interchange_FOrmat_for_Optical_Music_Recognition_Applications_2010.md b/_posters/2010/Hankinson_An_Interchange_FOrmat_for_Optical_Music_Recognition_Applications_2010.md deleted file mode 100644 index f2e2b4eb..00000000 --- a/_posters/2010/Hankinson_An_Interchange_FOrmat_for_Optical_Music_Recognition_Applications_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Hankinson, Andrew, Laurent Pugin, and Ichiro Fujinaga. 2010. “An Interchange FOrmat for Optical Music Recognition Applications.” Poster presented at the 11th International Society for Music Information Retrieval Conference, Utrecht, Netherlands, August 9. \ No newline at end of file diff --git a/_posters/2010/Hockman_Fast_vs_Slow:_learning_Tempo_Ocataves_from_User_Data_2010.md b/_posters/2010/Hockman_Fast_vs_Slow:_learning_Tempo_Ocataves_from_User_Data_2010.md deleted file mode 100644 index 0da462cb..00000000 --- a/_posters/2010/Hockman_Fast_vs_Slow:_learning_Tempo_Ocataves_from_User_Data_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Hockman, Jason A., and Ichiro Fujinaga. 2010. “Fast vs Slow: Learning Tempo Ocataves from User Data.” Poster presented at the 11th International Society for Music Information Retrieval Conference, Utrecht, Netherlands, August 9. \ No newline at end of file diff --git a/_posters/2010/Hockman_Interactive_Real-Time_Rhythmic_2010.md b/_posters/2010/Hockman_Interactive_Real-Time_Rhythmic_2010.md deleted file mode 100644 index d22a351b..00000000 --- a/_posters/2010/Hockman_Interactive_Real-Time_Rhythmic_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Hockman, Jason A., Jason Malloch, Ichiro Fujinaga, and Marcelo M. Wanderley. 2010. “Interactive Real-Time Rhythmic.” Poster presented at the Center for Interdisciplinary Research in Music Media and Technology (CIRMMT) Student Symposium, Montreal, QC, May 27. \ No newline at end of file diff --git a/_posters/2010/McKay_Evaluating_the_Genre_Classification_Performance_of_Lyrical_Features_Relative_to_Audio,_Symbolic_and_Cultural_Features_2010.md b/_posters/2010/McKay_Evaluating_the_Genre_Classification_Performance_of_Lyrical_Features_Relative_to_Audio,_Symbolic_and_Cultural_Features_2010.md deleted file mode 100644 index 0c2e1bfd..00000000 --- a/_posters/2010/McKay_Evaluating_the_Genre_Classification_Performance_of_Lyrical_Features_Relative_to_Audio,_Symbolic_and_Cultural_Features_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -McKay, Cory, John Ashley Burgoyne, Jason Hockman, Jordan B. L. Smith, Gabriel Vigliensoni, and Ichiro Fujinaga. 2010. “Evaluating the Genre Classification Performance of Lyrical Features Relative to Audio, Symbolic and Cultural Features.” Utrecht, Netherlands, August 9. \ No newline at end of file diff --git a/_posters/2010/Vigliensoni_Using_jWebMiner_2.0_to_Improve_Music_Classification_Performance_by_Combining_Different_Types_of_Features_Mined_from_the_Web_2010.md b/_posters/2010/Vigliensoni_Using_jWebMiner_2.0_to_Improve_Music_Classification_Performance_by_Combining_Different_Types_of_Features_Mined_from_the_Web_2010.md deleted file mode 100644 index 6d150843..00000000 --- a/_posters/2010/Vigliensoni_Using_jWebMiner_2.0_to_Improve_Music_Classification_Performance_by_Combining_Different_Types_of_Features_Mined_from_the_Web_2010.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2010 -year: 2010 ---- - -Vigliensoni, Gabriel, Cory McKay, and Ichiro Fujinaga. 2010. “Using JWebMiner 2.0 to Improve Music Classification Performance by Combining Different Types of Features Mined from the Web.” Poster presented at the 10th International Society for Music Information Retrieval Conference, Utrecht, Netherlands, August 9. \ No newline at end of file diff --git a/_posters/2011/Burlet_Robotaba_Guitar_Tablature_Transcription_Framework_2011.md b/_posters/2011/Burlet_Robotaba_Guitar_Tablature_Transcription_Framework_2011.md deleted file mode 100644 index cc1b8fdd..00000000 --- a/_posters/2011/Burlet_Robotaba_Guitar_Tablature_Transcription_Framework_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Burlet, Gregory, and Ichiro Fujinaga. 2011. “Robotaba Guitar Tablature Transcription Framework.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24. \ No newline at end of file diff --git a/_posters/2011/Hankinson_An_Annotated_Dataset_for_Optical_music_Recognition_Systems_Development_2011.md b/_posters/2011/Hankinson_An_Annotated_Dataset_for_Optical_music_Recognition_Systems_Development_2011.md deleted file mode 100644 index 16d1f989..00000000 --- a/_posters/2011/Hankinson_An_Annotated_Dataset_for_Optical_music_Recognition_Systems_Development_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Hankinson, Andrew, Daniel Donnelly, Ichiro Fujinaga, and Julie Cumming. 2011. “An Annotated Dataset for Optical Music Recognition Systems Development.” Poster presented at the Center for Interdisciplanary Research in Music Media and Technology (CIRMMT) Student Symposium, Montreal, Canada, May 16. \ No newline at end of file diff --git a/_posters/2011/Hankinson_New_Tools_for_Optical_Chant_Recognition_2011.md b/_posters/2011/Hankinson_New_Tools_for_Optical_Chant_Recognition_2011.md deleted file mode 100644 index 807f6f98..00000000 --- a/_posters/2011/Hankinson_New_Tools_for_Optical_Chant_Recognition_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Hankinson, Andrew, Gabriel Vigliensoni, John Ashley Burgoyne, and Ichiro Fujinaga. 2011. “New Tools for Optical Chant Recognition.” Poster presented at the annual International Association of Music Libraries, Archives and Documentation Centres Congress, Dublin, Ireland, July 24. \ No newline at end of file diff --git a/_posters/2011/Hockman_Discrimination_between_Phonograph_Playback_ystems_2011.md b/_posters/2011/Hockman_Discrimination_between_Phonograph_Playback_ystems_2011.md deleted file mode 100644 index 4776466a..00000000 --- a/_posters/2011/Hockman_Discrimination_between_Phonograph_Playback_ystems_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Hockman, Jason A., David M. Weigh, Catherine Guastavino, and Ichiro Fujinaga. 2011. “Discrimination between Phonograph Playback Ystems.” Poster presented at the 131th Audio Engineering Society Convention, New York City, USA, October 20. \ No newline at end of file diff --git a/_posters/2011/Knight_The_Potential_for_Automatic_Assessment_of_Trumpet_Tone_Quality_2011.md b/_posters/2011/Knight_The_Potential_for_Automatic_Assessment_of_Trumpet_Tone_Quality_2011.md deleted file mode 100644 index 934085fd..00000000 --- a/_posters/2011/Knight_The_Potential_for_Automatic_Assessment_of_Trumpet_Tone_Quality_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Knight, Trevor, Finn Upham, and Ichiro Fujinaga. 2011. “The Potential for Automatic Assessment of Trumpet Tone Quality.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24. \ No newline at end of file diff --git a/_posters/2011/Neubarth_Associations_between_Musicology_and_Music_information_Retrieval_2011.md b/_posters/2011/Neubarth_Associations_between_Musicology_and_Music_information_Retrieval_2011.md deleted file mode 100644 index eee54490..00000000 --- a/_posters/2011/Neubarth_Associations_between_Musicology_and_Music_information_Retrieval_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Neubarth, Kerstin, Mathieu Bergeron, and Darrell Conklin. 2011. “Associations between Musicology and Music Information Retrieval.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24. \ No newline at end of file diff --git a/_posters/2011/Smith_Design_and_Creation_of_a_Large-Scale_Database_of_Structural_Annotations_2011.md b/_posters/2011/Smith_Design_and_Creation_of_a_Large-Scale_Database_of_Structural_Annotations_2011.md deleted file mode 100644 index 91e561a8..00000000 --- a/_posters/2011/Smith_Design_and_Creation_of_a_Large-Scale_Database_of_Structural_Annotations_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Smith, Jordan B. L., John Ashley Burgoyne, Ichiro Fujinaga, David de Roure, and J. Stephen Downie. 2011. “Design and Creation of a Large-Scale Database of Structural Annotations.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24. \ No newline at end of file diff --git a/_posters/2011/Thompson_Searching_for_the_Liber_Usualis:_Using_CouchDB_and_ElasticSearch_to_Query_Graphical_Music_Documents_2011.md b/_posters/2011/Thompson_Searching_for_the_Liber_Usualis:_Using_CouchDB_and_ElasticSearch_to_Query_Graphical_Music_Documents_2011.md deleted file mode 100644 index 237dfc4e..00000000 --- a/_posters/2011/Thompson_Searching_for_the_Liber_Usualis:_Using_CouchDB_and_ElasticSearch_to_Query_Graphical_Music_Documents_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Thompson, Jessica, Andrew Hankinson, and Ichiro Fujinaga. 2011. “Searching for the Liber Usualis: Using CouchDB and ElasticSearch to Query Graphical Music Documents.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24. \ No newline at end of file diff --git a/_posters/2011/Vigliensoni_Automatic_Pitch_Recognition_in_Printed_Square-Note_Notation_2011.md b/_posters/2011/Vigliensoni_Automatic_Pitch_Recognition_in_Printed_Square-Note_Notation_2011.md deleted file mode 100644 index 8d0f4fd8..00000000 --- a/_posters/2011/Vigliensoni_Automatic_Pitch_Recognition_in_Printed_Square-Note_Notation_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Vigliensoni, Gabriel, John Ashley Burgoyne, Andrew Hankinson, and Ichiro Fujinaga. 2011. “Automatic Pitch Recognition in Printed Square-Note Notation.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24. \ No newline at end of file diff --git a/_posters/2012/Burlet_Neon.js:_Neume_Editor_Online_2012.md b/_posters/2012/Burlet_Neon.js:_Neume_Editor_Online_2012.md deleted file mode 100644 index 10d0e139..00000000 --- a/_posters/2012/Burlet_Neon.js:_Neume_Editor_Online_2012.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2012 -year: 2012 ---- - -Burlet, Gregory, Alastair Porter, Andrew Hankinson, and Ichiro Fujinaga. 2012. “Neon.Js: Neume Editor Online.” Poster presented at the 13th International Society for Music Information Retrieval Conference, Porto, Portugal, October 8. \ No newline at end of file diff --git a/_posters/2012/Hankinson_New_Tools_for_Optical_Chant_Recognition_2012.md b/_posters/2012/Hankinson_New_Tools_for_Optical_Chant_Recognition_2012.md deleted file mode 100644 index 630c1bfa..00000000 --- a/_posters/2012/Hankinson_New_Tools_for_Optical_Chant_Recognition_2012.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2012 -year: 2012 ---- - -Hankinson, Andrew, Gabriel Vigliensoni, John Ashley Burgoyne, and Ichiro Fujinaga. 2012. “New Tools for Optical Chant Recognition.” Poster presented at the Music Libraries Association 81st Annual Meeting, Dallas, USA, February 15. \ No newline at end of file diff --git a/_posters/2013/Burlet_Stompboxes:_Kicking_the_Habit_2013.md b/_posters/2013/Burlet_Stompboxes:_Kicking_the_Habit_2013.md deleted file mode 100644 index 83b72656..00000000 --- a/_posters/2013/Burlet_Stompboxes:_Kicking_the_Habit_2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Burlet, Gregory, Marcelo M. Wanderley, and Ichiro Fujinaga. 2013. “Stompboxes: Kicking the Habit.” Poster presented at the 13th International Conference on New Interfaces for Musical Expression, Daejeon, Republic of Korea, May 27. \ No newline at end of file diff --git a/_posters/2013/Groves_Automatic_Rock'n'Roll_Accompaniment:_Using_a_Hidden_Semi-Markov_Model_2013.md b/_posters/2013/Groves_Automatic_Rock'n'Roll_Accompaniment:_Using_a_Hidden_Semi-Markov_Model_2013.md deleted file mode 100644 index 2de263eb..00000000 --- a/_posters/2013/Groves_Automatic_Rock'n'Roll_Accompaniment:_Using_a_Hidden_Semi-Markov_Model_2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Groves, Ryan, Doina Precup, and Ichiro Fujinaga. 2013. “Automatic Rock’n’Roll Accompaniment: Using a Hidden Semi-Markov Model.” Poster presented at the 4th International Conference on Mathematics and Computation in Music, Montreal, Canada, June 12. \ No newline at end of file diff --git a/_posters/2013/Vigliensoni_Musicbrainz_for_the_World:_The_Chilean_Experience_2013.md b/_posters/2013/Vigliensoni_Musicbrainz_for_the_World:_The_Chilean_Experience_2013.md deleted file mode 100644 index 2ae9df5e..00000000 --- a/_posters/2013/Vigliensoni_Musicbrainz_for_the_World:_The_Chilean_Experience_2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Vigliensoni, Gabriel, John Ashley Burgoyne, and Ichiro Fujinaga. 2013. “Musicbrainz for the World: The Chilean Experience.” Poster presented at the 14th International Society for Music Information Retrieval Conference, Miami, USA, November 4. \ No newline at end of file diff --git a/_posters/2013/Vigliensoni_Optical_Measure_Recognition_in_Common_Music_Notation_2013.md b/_posters/2013/Vigliensoni_Optical_Measure_Recognition_in_Common_Music_Notation_2013.md deleted file mode 100644 index e781e82e..00000000 --- a/_posters/2013/Vigliensoni_Optical_Measure_Recognition_in_Common_Music_Notation_2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Vigliensoni, Gabriel, Gregory Burlet, and Ichiro Fujinaga. 2013. “Optical Measure Recognition in Common Music Notation.” Poster presented at the 14th International Society for Music Information Retrieval Conference, Curitiba, Brazil, November 4. \ No newline at end of file diff --git a/_posters/2014/Antila_The_VIS_Framework:_Analyzing_Counterpoint_in_Large_Datasets_2014.md b/_posters/2014/Antila_The_VIS_Framework:_Analyzing_Counterpoint_in_Large_Datasets_2014.md deleted file mode 100644 index 66789458..00000000 --- a/_posters/2014/Antila_The_VIS_Framework:_Analyzing_Counterpoint_in_Large_Datasets_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Antila, Christopher, and Julie Cumming. 2014. “The VIS Framework: Analyzing Counterpoint in Large Datasets.” Poster presented at the 15th International Society for Music Information Retrieval Conference, Taipei, Taiwan, October 27. \ No newline at end of file diff --git a/_posters/2014/Vigliensoni_Identifying_Time_Zones_in_a_Large_Dataset_of_Music_Listening_Logs_2014.md b/_posters/2014/Vigliensoni_Identifying_Time_Zones_in_a_Large_Dataset_of_Music_Listening_Logs_2014.md deleted file mode 100644 index 0b490947..00000000 --- a/_posters/2014/Vigliensoni_Identifying_Time_Zones_in_a_Large_Dataset_of_Music_Listening_Logs_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Vigliensoni, Gabriel, and Ichiro Fujinaga. 2014a. “Identifying Time Zones in a Large Dataset of Music Listening Logs.” Poster presented at the 1st International Workshop on Social Media Retrieval and Analysis, Gold Coast, Australia, July 11. \ No newline at end of file diff --git a/_posters/2014/Vigliensoni_Time-Shift_Normalization_and_Listener_Profiling_in_a_Large_Dataset_of_Music_Listening_Histories_2014.md b/_posters/2014/Vigliensoni_Time-Shift_Normalization_and_Listener_Profiling_in_a_Large_Dataset_of_Music_Listening_Histories_2014.md deleted file mode 100644 index e793c1d7..00000000 --- a/_posters/2014/Vigliensoni_Time-Shift_Normalization_and_Listener_Profiling_in_a_Large_Dataset_of_Music_Listening_Histories_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Vigliensoni, Gabriel, and Ichiro Fujinaga. 2014b. “Time-Shift Normalization and Listener Profiling in a Large Dataset of Music Listening Histories.” Poster presented at the 4th annual seminar on cognitively based music informatics research, Toronto, Canada, October 4. \ No newline at end of file diff --git a/_posters/2014/Weiss_Digital_Prosopography_of_Renaissance_Musicians:_Discovery_of_Social_and_Professional_Networks_2014.md b/_posters/2014/Weiss_Digital_Prosopography_of_Renaissance_Musicians:_Discovery_of_Social_and_Professional_Networks_2014.md deleted file mode 100644 index af7cf084..00000000 --- a/_posters/2014/Weiss_Digital_Prosopography_of_Renaissance_Musicians:_Discovery_of_Social_and_Professional_Networks_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Weiss, Susan Forscher, and Ichiro Fujinaga. 2014. “Digital Prosopography of Renaissance Musicians: Discovery of Social and Professional Networks.” Poster presented at the 8th Annual Meeting of the American Musicological Society and the 37th Annual Meeting of the Society for music Theory, Milwaukee, USA, November 6. \ No newline at end of file diff --git a/_posters/2015/Fogarty_A_Browser-Based_Neume_Metadata_Editor_2015.md b/_posters/2015/Fogarty_A_Browser-Based_Neume_Metadata_Editor_2015.md deleted file mode 100644 index c6771a0c..00000000 --- a/_posters/2015/Fogarty_A_Browser-Based_Neume_Metadata_Editor_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Fogarty, Alex, Andrew Hankinson, and Ichiro Fujinaga. 2015. “A Browser-Based Neume Metadata Editor.” Poster presented at the annual Muic Encoding Conference, Florence, Italy, May 18. \ No newline at end of file diff --git a/_posters/2015/Horwitz_A_Browser-Based_MEI_Editor_2015.md b/_posters/2015/Horwitz_A_Browser-Based_MEI_Editor_2015.md deleted file mode 100644 index 1f905e80..00000000 --- a/_posters/2015/Horwitz_A_Browser-Based_MEI_Editor_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Horwitz, Andrew, Andrew Hankinson, and Ichiro Fujinaga. 2015. “A Browser-Based MEI Editor.” Poster presented at the annual Muic Encoding Conference, Florence, Italy, May 18. \ No newline at end of file diff --git a/_posters/2016/Calvo-Zaragoza_Staff_Line_Detection_on_Grewscale_Images_with_Pixel_Classification_2016.md b/_posters/2016/Calvo-Zaragoza_Staff_Line_Detection_on_Grewscale_Images_with_Pixel_Classification_2016.md deleted file mode 100644 index fd0ef69a..00000000 --- a/_posters/2016/Calvo-Zaragoza_Staff_Line_Detection_on_Grewscale_Images_with_Pixel_Classification_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2016. “Staff Line Detection on Grewscale Images with Pixel Classification.” Poster presented at the 17th International Society for Music Information Retrieval Conference, New York City, USA, August 7. \ No newline at end of file diff --git a/_posters/2016/Horwitz_An_MEI_Score_Alignment_Client_2016.md b/_posters/2016/Horwitz_An_MEI_Score_Alignment_Client_2016.md deleted file mode 100644 index 2680b3f7..00000000 --- a/_posters/2016/Horwitz_An_MEI_Score_Alignment_Client_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Horwitz, Andrew, Andrew Hankinson, and Ichiro Fujinaga. 2016. “An MEI Score Alignment Client.” Poster presented at the annual Music Encoding Conference, Montreal, Canada, May 17. \ No newline at end of file diff --git a/_posters/2016/McKay_jSymbolic2:_Extracting_Features_from_Symbolic_Music_Representations_2016.md b/_posters/2016/McKay_jSymbolic2:_Extracting_Features_from_Symbolic_Music_Representations_2016.md deleted file mode 100644 index 98f501d0..00000000 --- a/_posters/2016/McKay_jSymbolic2:_Extracting_Features_from_Symbolic_Music_Representations_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -McKay, Cory, Tristano Tenaglia, and Ichiro Fujinaga. 2016. “JSymbolic2: Extracting Features from Symbolic Music Representations.” Poster presented at the 17th International Society for Music Information Retrieval Conference, New York City, USA, August 7. \ No newline at end of file diff --git a/_posters/2016/Vigliensoni_Automatic_Music_Recommendation_Systems:_Do_Demographic,_Profiling,_and_Contextual_Features_Improve_their_Performance?_2016.md b/_posters/2016/Vigliensoni_Automatic_Music_Recommendation_Systems:_Do_Demographic,_Profiling,_and_Contextual_Features_Improve_their_Performance?_2016.md deleted file mode 100644 index 845b0acb..00000000 --- a/_posters/2016/Vigliensoni_Automatic_Music_Recommendation_Systems:_Do_Demographic,_Profiling,_and_Contextual_Features_Improve_their_Performance?_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Vigliensoni, Gabriel, and Ichiro Fujinaga. 2016. “Automatic Music Recommendation Systems: Do Demographic, Profiling, and Contextual Features Improve Their Performance?” Poster presented at the 17th International Society for Music Information Retrieval Conference, New York City, USA, August 7. \ No newline at end of file diff --git a/_posters/2016/Weiss_The_Human_History_Project:_Digital_Prosopography_of_Renaissance_Musicians_2016.md b/_posters/2016/Weiss_The_Human_History_Project:_Digital_Prosopography_of_Renaissance_Musicians_2016.md deleted file mode 100644 index c9eb9cc1..00000000 --- a/_posters/2016/Weiss_The_Human_History_Project:_Digital_Prosopography_of_Renaissance_Musicians_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Weiss, Susan Forscher, and Ichiro Fujinaga. 2016. “The Human History Project: Digital Prosopography of Renaissance Musicians.” Poster presented at the 3rd International Digital Libraries for Musicology workshop, New York City, USA, August 12. \ No newline at end of file diff --git a/_posters/2017/Ju_Non-Chord_Tone_Identification_using_Deep_Neural_Networks_2017.md b/_posters/2017/Ju_Non-Chord_Tone_Identification_using_Deep_Neural_Networks_2017.md deleted file mode 100644 index 8051f839..00000000 --- a/_posters/2017/Ju_Non-Chord_Tone_Identification_using_Deep_Neural_Networks_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Ju, Yaolong, Nathaniel Condit-Schultz, Claire Arthur, and Ichiro Fujinaga. 2017. “Non-Chord Tone Identification Using Deep Neural Networks.” Poster presented at the 18th International Society for Music Information Retrieval Conference (Late-Breaking), Suzhou, China, October 23. \ No newline at end of file diff --git a/_posters/2017/McKay_A_Database_Model_for_Computational_Music_Research_2017.md b/_posters/2017/McKay_A_Database_Model_for_Computational_Music_Research_2017.md deleted file mode 100644 index f3687b81..00000000 --- a/_posters/2017/McKay_A_Database_Model_for_Computational_Music_Research_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -McKay, Cory, Andrew Hankinson, Julie Cumming, and Ichiro Fujinaga. 2017. “A Database Model for Computational Music Research.” Poster presented at the 4th International Workshop on Digital Libraries for Musicology, Suzhou, China, October 28. \ No newline at end of file diff --git a/_posters/2017/McKay_Characterizing_Composers_using_jSymbolic2_Features_2017.md b/_posters/2017/McKay_Characterizing_Composers_using_jSymbolic2_Features_2017.md deleted file mode 100644 index 7c4d58c9..00000000 --- a/_posters/2017/McKay_Characterizing_Composers_using_jSymbolic2_Features_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -McKay, Cory, Julie Cumming, and Ichiro Fujinaga. 2017. “Characterizing Composers Using JSymbolic2 Features.” Poster presented at the 18th International Society for Music Information Retrieval Conference, Suzhou, China, August 7. \ No newline at end of file diff --git a/_posters/2017/Parmentier_Tripoli:_Presentation_API_Validation_2017.md b/_posters/2017/Parmentier_Tripoli:_Presentation_API_Validation_2017.md deleted file mode 100644 index a4aeac26..00000000 --- a/_posters/2017/Parmentier_Tripoli:_Presentation_API_Validation_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Parmentier, Alex, Andrew Hankinson, and Ichiro Fujinaga. 2017. “Tripoli: Presentation API Validation.” Poster presented at the International Image Interoperability Framework Annual Conference, The Vatican, Italy, June 7. \ No newline at end of file diff --git "a/_posters/2017/Vigliensoni_Reconnaissance_Optique_de_la_Musique_Bas\303\251e_sur_l'Apprentissage_Machine_\303\240_Grande_\303\211chelle_pour_des_Donn\303\251es_de_partitions_Musicales_2017.md" "b/_posters/2017/Vigliensoni_Reconnaissance_Optique_de_la_Musique_Bas\303\251e_sur_l'Apprentissage_Machine_\303\240_Grande_\303\211chelle_pour_des_Donn\303\251es_de_partitions_Musicales_2017.md" deleted file mode 100644 index 86eb2fb7..00000000 --- "a/_posters/2017/Vigliensoni_Reconnaissance_Optique_de_la_Musique_Bas\303\251e_sur_l'Apprentissage_Machine_\303\240_Grande_\303\211chelle_pour_des_Donn\303\251es_de_partitions_Musicales_2017.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Vigliensoni, Gabriel, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2017. “Reconnaissance Optique de La Musique Basée Sur l’Apprentissage Machine à Grande Échelle Pour Des Données de Partitions Musicales.” Poster presented at the 85e édition du Congrès de l’Association francophone pour le savoir, Montreal, Canada, May 8. \ No newline at end of file diff --git "a/_posters/2018/N\303\241poles_Symbolic_and_Audio_Key_Detection_Based_on_a_Hidden_Markov_Model_2018.md" "b/_posters/2018/N\303\241poles_Symbolic_and_Audio_Key_Detection_Based_on_a_Hidden_Markov_Model_2018.md" deleted file mode 100644 index dc0bee5a..00000000 --- "a/_posters/2018/N\303\241poles_Symbolic_and_Audio_Key_Detection_Based_on_a_Hidden_Markov_Model_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Nápoles, Néstor, Claire Arthur, and Ichiro Fujinaga. 2018. “Symbolic and Audio Key Detection Based on a Hidden Markov Model.” Poster presented at the 19th International Society for Music Information Retrieval Conference, Paris, France, September 23. \ No newline at end of file diff --git a/_posters/2019/Hopkins_SIMSSA_DB:_Symbolic_Music_Discovery_and_Search_2019.md b/_posters/2019/Hopkins_SIMSSA_DB:_Symbolic_Music_Discovery_and_Search_2019.md deleted file mode 100644 index 6e9f652a..00000000 --- a/_posters/2019/Hopkins_SIMSSA_DB:_Symbolic_Music_Discovery_and_Search_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Hopkins, Emily, Yaolong Ju, Gustavo Polins Pedro, Cory McKay, Julie Cumming, and Ichiro Fujinaga. 2019. “SIMSSA DB: Symbolic Music Discovery and Search.” Poster presented at the 6th International Conference on Digital Libraries for Musicology, Den Haag, Netherlands, November 9. \ No newline at end of file diff --git a/_posters/2019/Ju_An_Interactive_Workflow_for_Generating_Chord_Labels_for_Homorhythmic_Music_in_Symbolic_Formats_2019.md b/_posters/2019/Ju_An_Interactive_Workflow_for_Generating_Chord_Labels_for_Homorhythmic_Music_in_Symbolic_Formats_2019.md deleted file mode 100644 index 5c16700f..00000000 --- a/_posters/2019/Ju_An_Interactive_Workflow_for_Generating_Chord_Labels_for_Homorhythmic_Music_in_Symbolic_Formats_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Ju, Yaolong. 2019. “An Interactive Workflow for Generating Chord Labels for Homorhythmic Music in Symbolic Formats.” Presented at the The 20thInternational Society of Music Information Retrieval Conference, Delft, Netherlands, November 8. http://cloud.simssa.ca/index.php/f/996. \ No newline at end of file diff --git "a/_posters/2019/N\303\241poles_The_Effects_of_Translation_between_Symbolic_Music_Formats:_A_case_study_with_Humdrum,_Lilypond,_MEI,_and_MusicXML_2019.md" "b/_posters/2019/N\303\241poles_The_Effects_of_Translation_between_Symbolic_Music_Formats:_A_case_study_with_Humdrum,_Lilypond,_MEI,_and_MusicXML_2019.md" deleted file mode 100644 index f29250ec..00000000 --- "a/_posters/2019/N\303\241poles_The_Effects_of_Translation_between_Symbolic_Music_Formats:_A_case_study_with_Humdrum,_Lilypond,_MEI,_and_MusicXML_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Nápoles, Néstor López, Gabriel Vigliensoni, and Ichiro Fujinaga. 2019. “The Effects of Translation between Symbolic Music Formats: A Case Study with Humdrum, Lilypond, MEI, and MusicXML.” Poster presented at the annual Music Encoding Conference, Vienna, Austria, June 29. \ No newline at end of file diff --git a/_posters/2019/de Reuse_CopyForward:_Point-Set_Matching_for_Predicting_Patterns_2019.md b/_posters/2019/de Reuse_CopyForward:_Point-Set_Matching_for_Predicting_Patterns_2019.md deleted file mode 100644 index 224e0212..00000000 --- a/_posters/2019/de Reuse_CopyForward:_Point-Set_Matching_for_Predicting_Patterns_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Reuse, Tim de, and Ichiro Fujinaga. 2019. “CopyForward: Point-Set Matching for Predicting Patterns.” Poster presented at the 15th running of the Music Information Retrieval Evaluation eXchange at the 20th International Society for Music Information retrieval Conference, Delft, Netherlands, November 4. \ No newline at end of file diff --git a/_posts/2018-12-21-test-post-2.md b/_posts/2018-12-21-test-post-2.md deleted file mode 100644 index 4182d577..00000000 --- a/_posts/2018-12-21-test-post-2.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Test post 2 -layout: page -tab: Blog -date: 2018-12-21 21:22:47 +0000 -permalink: /blog/:title/ - ---- -Hello, this is just a check to make sure I have connected Forestry to the new repo correctly. diff --git "a/_presentations/2011/Behrendt_Automatic_Neume_Recognition_Program_\342\200\224_Computergest\303\274tzte_Analyse_der_St._Galler_Neumenotation_2011.md" "b/_presentations/2011/Behrendt_Automatic_Neume_Recognition_Program_\342\200\224_Computergest\303\274tzte_Analyse_der_St._Galler_Neumenotation_2011.md" deleted file mode 100644 index ee2cbb8c..00000000 --- "a/_presentations/2011/Behrendt_Automatic_Neume_Recognition_Program_\342\200\224_Computergest\303\274tzte_Analyse_der_St._Galler_Neumenotation_2011.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Behrendt, Inga. 2011b. “Automatic Neume Recognition Program — Computergestützte Analyse der St. Galler Neumenotation.” Paper presented at the Internationaler Sommerkurs Gregorianik 2011, Folkwang Universität der Künste, Essen, Germany, July. \ No newline at end of file diff --git "a/_presentations/2011/Behrendt_Die_\303\244lteste_Notenschrift_trifft_auf_modernste_Technik:_Vorstellung_des_\342\200\236Automatic_Neume_Recognition_Program\342\200\235_zur_computergest\303\274tzten_Analyse_der_St._Galler_Neumenotation_2011.md" "b/_presentations/2011/Behrendt_Die_\303\244lteste_Notenschrift_trifft_auf_modernste_Technik:_Vorstellung_des_\342\200\236Automatic_Neume_Recognition_Program\342\200\235_zur_computergest\303\274tzten_Analyse_der_St._Galler_Neumenotation_2011.md" deleted file mode 100644 index 054a1d6a..00000000 --- "a/_presentations/2011/Behrendt_Die_\303\244lteste_Notenschrift_trifft_auf_modernste_Technik:_Vorstellung_des_\342\200\236Automatic_Neume_Recognition_Program\342\200\235_zur_computergest\303\274tzten_Analyse_der_St._Galler_Neumenotation_2011.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Behrendt, Inga. 2011a. “Die älteste Notenschrift trifft auf modernste Technik: Vorstellung des „Automatic Neume Recognition Program” zur computergestützten Analyse der St. Galler Neumenotation.” Paper presented at the Music Room at the Abby of St. Gall, St. Gall, Switzerland, May. \ No newline at end of file diff --git a/_presentations/2011/Helsen_The_Optical_Neume_Recognition_Project:_First_Steps_2011.md b/_presentations/2011/Helsen_The_Optical_Neume_Recognition_Project:_First_Steps_2011.md deleted file mode 100644 index 53ad4f97..00000000 --- a/_presentations/2011/Helsen_The_Optical_Neume_Recognition_Project:_First_Steps_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Helsen, Kate. 2011c. “The Optical Neume Recognition Project: First Steps.” Paper presented at the Cantus Planus Conference, Vienna, August. \ No newline at end of file diff --git a/_presentations/2011/Helsen_The_Optical_Neume_Recognition_Project_2011.md b/_presentations/2011/Helsen_The_Optical_Neume_Recognition_Project_2011.md deleted file mode 100644 index 4c6d8a91..00000000 --- a/_presentations/2011/Helsen_The_Optical_Neume_Recognition_Project_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Helsen, Kate. 2011a. “The Optical Neume Recognition Project.” Poster presented at the Digital Medievalist Poster Session at the 46th International Congress on Medieval Studies, Western Michigan University, Kalamazoo, MI, May. \ No newline at end of file diff --git a/_presentations/2011/Helsen_Venite_et_Videte:_the_Optical_Neume_Recognition_Project_2011.md b/_presentations/2011/Helsen_Venite_et_Videte:_the_Optical_Neume_Recognition_Project_2011.md deleted file mode 100644 index 64594ea4..00000000 --- a/_presentations/2011/Helsen_Venite_et_Videte:_the_Optical_Neume_Recognition_Project_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Helsen, Kate. 2011b. “Venite et Videte: The Optical Neume Recognition Project.” Paper presented at the 46th International Congress on Medieval Studies, Western Michigan University, Kalamazoo, MI, May. \ No newline at end of file diff --git "a/_presentations/2011/Kol\303\241\304\215ek_A_New_Research_Interface_for_the_Cantus_Database_2011.md" "b/_presentations/2011/Kol\303\241\304\215ek_A_New_Research_Interface_for_the_Cantus_Database_2011.md" deleted file mode 100644 index 4dc57173..00000000 --- "a/_presentations/2011/Kol\303\241\304\215ek_A_New_Research_Interface_for_the_Cantus_Database_2011.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Koláček, Jan, and Debra Lacoste. 2011. “A New Research Interface for the Cantus Database.” Presented at the International Congress on Medieval Studies, Kalamazoo, MI, May 12. \ No newline at end of file diff --git a/_presentations/2011/Lacoste_Elastic_Melodies:_Variants_in_Responsory_Verses_2011.md b/_presentations/2011/Lacoste_Elastic_Melodies:_Variants_in_Responsory_Verses_2011.md deleted file mode 100644 index e4f671d0..00000000 --- a/_presentations/2011/Lacoste_Elastic_Melodies:_Variants_in_Responsory_Verses_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Lacoste, Debra. 2011b. “Elastic Melodies: Variants in Responsory Verses.” Presented at the IMS Study Group Meeting for Cantus Planus, Vienna, August 26. \ No newline at end of file diff --git a/_presentations/2011/Lacoste_The_Reinvention_of_the_Cantus_Database:_New_Location,_Platform_and_Features_for_Old_Chants_2011.md b/_presentations/2011/Lacoste_The_Reinvention_of_the_Cantus_Database:_New_Location,_Platform_and_Features_for_Old_Chants_2011.md deleted file mode 100644 index bc8778fa..00000000 --- a/_presentations/2011/Lacoste_The_Reinvention_of_the_Cantus_Database:_New_Location,_Platform_and_Features_for_Old_Chants_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Lacoste, Debra. 2011a. “The Reinvention of the Cantus Database: New Location, Platform and Features for Old Chants.” Presented at the Sixth Annual Colloquium of the Gregorian Institute of Cnada, Halifax, NS, Canada, August 6. \ No newline at end of file diff --git a/_presentations/2011/Lacoste_Tracking_Hymns_Through_the_Cantus_Database_2011.md b/_presentations/2011/Lacoste_Tracking_Hymns_Through_the_Cantus_Database_2011.md deleted file mode 100644 index 9e132c4e..00000000 --- a/_presentations/2011/Lacoste_Tracking_Hymns_Through_the_Cantus_Database_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Lacoste, Debra. 2011c. “Tracking Hymns Through the Cantus Database.” Presented at the Medieval Day, Wilfrid Laurier University, October 26. \ No newline at end of file diff --git a/_presentations/2011/Vigliensoni_Automatic_Pitch_Recognition_in_Printed_Sqaure-Note_Notation_2011.md b/_presentations/2011/Vigliensoni_Automatic_Pitch_Recognition_in_Printed_Sqaure-Note_Notation_2011.md deleted file mode 100644 index e5900ce4..00000000 --- a/_presentations/2011/Vigliensoni_Automatic_Pitch_Recognition_in_Printed_Sqaure-Note_Notation_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Vigliensoni, Gabriel, John Ashley Burgoyne, Andrew Hankinson, and Ichiro Fujinaga. 2011. “Automatic Pitch Recognition in Printed Sqaure-Note Notation.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24. \ No newline at end of file diff --git a/_presentations/2012/Behrendt_The_Optical_Neume_Recognition_Project_2012.md b/_presentations/2012/Behrendt_The_Optical_Neume_Recognition_Project_2012.md deleted file mode 100644 index 291b8c26..00000000 --- a/_presentations/2012/Behrendt_The_Optical_Neume_Recognition_Project_2012.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2012 -year: 2012 ---- - -Behrendt, Inga. 2012. “The Optical Neume Recognition Project.” Poster presented at the Digital Humanities Workshop, Katholieke Universiteit Leuven, Belgium, September. \ No newline at end of file diff --git a/_presentations/2012/Lacoste_Tracking_the_Chants_of_the_Laurier_Manuscript_in_the_Cantus_Database_2012.md b/_presentations/2012/Lacoste_Tracking_the_Chants_of_the_Laurier_Manuscript_in_the_Cantus_Database_2012.md deleted file mode 100644 index ab7e82df..00000000 --- a/_presentations/2012/Lacoste_Tracking_the_Chants_of_the_Laurier_Manuscript_in_the_Cantus_Database_2012.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2012 -year: 2012 ---- - -Lacoste, Debra. 2012. “Tracking the Chants of the Laurier Manuscript in the Cantus Database.” Presented at the Meeting of the Canadian Society of Medievalists, Waterloo, ON, May 27. \ No newline at end of file diff --git "a/_presentations/2013/Behrendt_Neumen_und_Neumentrennung_\342\200\223_Herausforderungen_in_der_Arbeit_im_Optical_Neume_Recognition_Project_(ONRP)_2013.md" "b/_presentations/2013/Behrendt_Neumen_und_Neumentrennung_\342\200\223_Herausforderungen_in_der_Arbeit_im_Optical_Neume_Recognition_Project_(ONRP)_2013.md" deleted file mode 100644 index 1fb4e814..00000000 --- "a/_presentations/2013/Behrendt_Neumen_und_Neumentrennung_\342\200\223_Herausforderungen_in_der_Arbeit_im_Optical_Neume_Recognition_Project_(ONRP)_2013.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Behrendt, Inga. 2013. “Neumen und Neumentrennung – Herausforderungen in der Arbeit im Optical Neume Recognition Project (ONRP).” Paper presented at the Digitale Rekonstruktionen mittelalterlicher Bibliotheken Universität, Trier, Germany, January. \ No newline at end of file diff --git "a/_presentations/2013/Kol\303\241\304\215ek_CANTUS_Index:_Building_an_Online_Network_of_Chant_Databases_for_Mass_and_Office_2013.md" "b/_presentations/2013/Kol\303\241\304\215ek_CANTUS_Index:_Building_an_Online_Network_of_Chant_Databases_for_Mass_and_Office_2013.md" deleted file mode 100644 index 546b65cf..00000000 --- "a/_presentations/2013/Kol\303\241\304\215ek_CANTUS_Index:_Building_an_Online_Network_of_Chant_Databases_for_Mass_and_Office_2013.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Koláček, Jan. 2013. “CANTUS Index: Building an Online Network of Chant Databases for Mass and Office.” Poster presented at the Medieval and Renaissance International Music Conference, Certaldo, Italy, July. \ No newline at end of file diff --git a/_presentations/2013/Vigliensoni_Musicbrainz_for_the_World:_The_Chilean_Experience_2013.md b/_presentations/2013/Vigliensoni_Musicbrainz_for_the_World:_The_Chilean_Experience_2013.md deleted file mode 100644 index 6aff55b2..00000000 --- a/_presentations/2013/Vigliensoni_Musicbrainz_for_the_World:_The_Chilean_Experience_2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Vigliensoni, Gabriel, John Ashley Burgoyne, and Ichiro Fujinaga. 2013. “Musicbrainz for the World: The Chilean Experience.” Poster presented at the 14th International Society for Music Information Retrieval Conference, Curitiba, Brazil, November 4. https://zenodo.org/record/1417951#.X-rvJtgzYdU. \ No newline at end of file diff --git a/_presentations/2013/Vigliensoni_Optical_Measure_Recognition_in_Common_Music_Notation_2013.md b/_presentations/2013/Vigliensoni_Optical_Measure_Recognition_in_Common_Music_Notation_2013.md deleted file mode 100644 index e781e82e..00000000 --- a/_presentations/2013/Vigliensoni_Optical_Measure_Recognition_in_Common_Music_Notation_2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Vigliensoni, Gabriel, Gregory Burlet, and Ichiro Fujinaga. 2013. “Optical Measure Recognition in Common Music Notation.” Poster presented at the 14th International Society for Music Information Retrieval Conference, Curitiba, Brazil, November 4. \ No newline at end of file diff --git a/_presentations/2014/Bain_Medieval_Musicology_in_a_Digital_World:_The_Optical_Neume_Recognition_Project_2014.md b/_presentations/2014/Bain_Medieval_Musicology_in_a_Digital_World:_The_Optical_Neume_Recognition_Project_2014.md deleted file mode 100644 index 68504ea4..00000000 --- a/_presentations/2014/Bain_Medieval_Musicology_in_a_Digital_World:_The_Optical_Neume_Recognition_Project_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Bain, Jennifer. 2014. “Medieval Musicology in a Digital World: The Optical Neume Recognition Project.” Paper presented at the SSHRC-sponsored Connecting Cultures: Imagining Canada’s Future, Dalhousie University, Halifax, NS, March. \ No newline at end of file diff --git a/_presentations/2014/Behrendt_The_Optical_Neume_Recognition_Project_2014.md b/_presentations/2014/Behrendt_The_Optical_Neume_Recognition_Project_2014.md deleted file mode 100644 index 67f8ac97..00000000 --- a/_presentations/2014/Behrendt_The_Optical_Neume_Recognition_Project_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Behrendt, Inga. 2014. “The Optical Neume Recognition Project.” Poster presented at the Mitgliedertreffen der deutschsprachigen Sektion der Internationalen Gesellschaft für Studien des Gregorianischen Chorals (AISCGre), Tettenweis, Germany, October. \ No newline at end of file diff --git a/_presentations/2014/Helsen_A_New_Way_to_See_Neumes:_The_Optical_Neume_Recognition_Project_in_Action_2014.md b/_presentations/2014/Helsen_A_New_Way_to_See_Neumes:_The_Optical_Neume_Recognition_Project_in_Action_2014.md deleted file mode 100644 index c24d7e10..00000000 --- a/_presentations/2014/Helsen_A_New_Way_to_See_Neumes:_The_Optical_Neume_Recognition_Project_in_Action_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Helsen, Kate. 2014b. “A New Way to See Neumes: The Optical Neume Recognition Project in Action.” Paper presented at the Meeting of IMS Study Group Cantus Planus, Venice, Italy, July. \ No newline at end of file diff --git a/_presentations/2014/Helsen_Optical_Neume_Recognition_Project_2014.md b/_presentations/2014/Helsen_Optical_Neume_Recognition_Project_2014.md deleted file mode 100644 index b0cf18c3..00000000 --- a/_presentations/2014/Helsen_Optical_Neume_Recognition_Project_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Helsen, Kate. 2014d. “Optical Neume Recognition Project.” TED-Style Talk, Medieval Day at Western, London, ON, November. \ No newline at end of file diff --git a/_presentations/2014/Helsen_The_Optical_Neume_Recognition_Project_2014.md b/_presentations/2014/Helsen_The_Optical_Neume_Recognition_Project_2014.md deleted file mode 100644 index ee1510b7..00000000 --- a/_presentations/2014/Helsen_The_Optical_Neume_Recognition_Project_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Helsen, Kate. 2014c. “The Optical Neume Recognition Project.” Poster presented at the Don Wright Faculty of Music Research Showcase, University of Western Ontario, London, ON, September. \ No newline at end of file diff --git a/_presentations/2014/Lacoste_An_EnCHANTed_Evening:_Singing_Vespers_with_CANTUS_(A_Workshop)._2014.md b/_presentations/2014/Lacoste_An_EnCHANTed_Evening:_Singing_Vespers_with_CANTUS_(A_Workshop)._2014.md deleted file mode 100644 index cc6e4811..00000000 --- a/_presentations/2014/Lacoste_An_EnCHANTed_Evening:_Singing_Vespers_with_CANTUS_(A_Workshop)._2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Lacoste, Debra, and Alison Altstatt. 2014. “An EnCHANTed Evening: Singing Vespers with CANTUS (A Workshop).” Paper presented at the International Congress on Medieval Studies, Kalamazoo, MI, May 8. \ No newline at end of file diff --git a/_presentations/2014/Lacoste_Old,_New,_and_Newer_Chant_Databases:_The_CANTUS_Database_and_CANTUS_Index._2014.md b/_presentations/2014/Lacoste_Old,_New,_and_Newer_Chant_Databases:_The_CANTUS_Database_and_CANTUS_Index._2014.md deleted file mode 100644 index 6087457f..00000000 --- a/_presentations/2014/Lacoste_Old,_New,_and_Newer_Chant_Databases:_The_CANTUS_Database_and_CANTUS_Index._2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Lacoste, Debra. 2014. “Old, New, and Newer Chant Databases: The CANTUS Database and CANTUS Index.” Paper presented at the Annual Meeting of the Canadian Society of Medievalists (part of the 2014 Congress of the Humanities and Social Sciences), St. Catharines, ON, May 24. \ No newline at end of file diff --git a/_presentations/2014/Lacoste_So_You_Think_You_Can_Chant:_Gregorian_or_Old-Roman?_2014.md b/_presentations/2014/Lacoste_So_You_Think_You_Can_Chant:_Gregorian_or_Old-Roman?_2014.md deleted file mode 100644 index 791055cc..00000000 --- a/_presentations/2014/Lacoste_So_You_Think_You_Can_Chant:_Gregorian_or_Old-Roman?_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Lacoste, Debra, and a panel of experts. 2014. “So You Think You Can Chant: Gregorian or Old-Roman?” Demonstration and panel discussion presented at the International Congress on Medieval Studies, Kalamazoo, MI, May 10. \ No newline at end of file diff --git a/_presentations/2014/Rodin_Beyond_the_Thematic_Index:_Repertory-Wide_Search_and_Analysis._2014.md b/_presentations/2014/Rodin_Beyond_the_Thematic_Index:_Repertory-Wide_Search_and_Analysis._2014.md deleted file mode 100644 index 40c141bf..00000000 --- a/_presentations/2014/Rodin_Beyond_the_Thematic_Index:_Repertory-Wide_Search_and_Analysis._2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Rodin, Jesse, and Craig Sapp. 2014. “Beyond the Thematic Index: Repertory-Wide Search and Analysis.” Poster presented at the Empirical Approaches to Music Theory and Musicology session at the AMS/SMT Annual Meeting, Milwaukee, WI, November. \ No newline at end of file diff --git a/_presentations/2014/Rusch_Figured-bass_Patterns_and_Their_Voice-Leading_Tendencies_in_Bach's_Four-Part_Chorales_2014.md b/_presentations/2014/Rusch_Figured-bass_Patterns_and_Their_Voice-Leading_Tendencies_in_Bach's_Four-Part_Chorales_2014.md deleted file mode 100644 index 58fe3978..00000000 --- a/_presentations/2014/Rusch_Figured-bass_Patterns_and_Their_Voice-Leading_Tendencies_in_Bach's_Four-Part_Chorales_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Rusch, René. 2014. “Figured-Bass Patterns and Their Voice-Leading Tendencies in Bach’s Four-Part Chorales.” Presented at the An afternoon of seminars, CIRMMT, McGill University, Montreal, January 21. \ No newline at end of file diff --git a/_presentations/2014/Schubert_Another_Lesson_from_Lassus_2014.md b/_presentations/2014/Schubert_Another_Lesson_from_Lassus_2014.md deleted file mode 100644 index c420ab0a..00000000 --- a/_presentations/2014/Schubert_Another_Lesson_from_Lassus_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Schubert, Peter, and Julie Cumming. 2014. “Another Lesson from Lassus.” Paper presented at the Annual Joint meeting of the AMS/SMT, Milwaukee, WI, November 9. \ No newline at end of file diff --git a/_presentations/2014/Sexton_The_Optical_Neume_Recognition_Project_2014.md b/_presentations/2014/Sexton_The_Optical_Neume_Recognition_Project_2014.md deleted file mode 100644 index 4f53dae9..00000000 --- a/_presentations/2014/Sexton_The_Optical_Neume_Recognition_Project_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Sexton, Alan. 2014. “The Optical Neume Recognition Project.” Paper presented at the The Institute for Computing and Information Sciences (iCIS), Radboud University, Nijmegen, Netherlands, April. \ No newline at end of file diff --git a/_presentations/2014/Swanson_Optical_Neume_Recognition:_Teaching_Computers_to_Think_Like_Medieval_Singers_2014.md b/_presentations/2014/Swanson_Optical_Neume_Recognition:_Teaching_Computers_to_Think_Like_Medieval_Singers_2014.md deleted file mode 100644 index 9b72b966..00000000 --- a/_presentations/2014/Swanson_Optical_Neume_Recognition:_Teaching_Computers_to_Think_Like_Medieval_Singers_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Swanson, Barbara. 2014. “Optical Neume Recognition: Teaching Computers to Think Like Medieval Singers.” Paper presented at the Dalhousie Postdoctoral Research Day, Dalhousie University, Halifax, NS, October. \ No newline at end of file diff --git a/_presentations/2014/Vigliensoni_Identifying_Time_Zones_in_a_Large_Dataset_of_Music_Listening_Logs_2014.md b/_presentations/2014/Vigliensoni_Identifying_Time_Zones_in_a_Large_Dataset_of_Music_Listening_Logs_2014.md deleted file mode 100644 index 0e4d7b15..00000000 --- a/_presentations/2014/Vigliensoni_Identifying_Time_Zones_in_a_Large_Dataset_of_Music_Listening_Logs_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Vigliensoni, Gabriel, and Ichiro Fujinaga. 2014. “Identifying Time Zones in a Large Dataset of Music Listening Logs.” Poster presented at the 1st International Workshop on Social Media Retrieval and Analysis, Gold Coast, Australia, July 11. \ No newline at end of file diff --git "a/_presentations/2015/Bain_The_Optical_Neume_Recognition_Project_(ONRP)_\342\200\224_the_Development_of_a_Search_Tool_for_Neume_Notation_in_Digital_Images._2015.md" "b/_presentations/2015/Bain_The_Optical_Neume_Recognition_Project_(ONRP)_\342\200\224_the_Development_of_a_Search_Tool_for_Neume_Notation_in_Digital_Images._2015.md" deleted file mode 100644 index ef724ed8..00000000 --- "a/_presentations/2015/Bain_The_Optical_Neume_Recognition_Project_(ONRP)_\342\200\224_the_Development_of_a_Search_Tool_for_Neume_Notation_in_Digital_Images._2015.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Bain, Jennifer, and Inga Behrendt. 2015. “The Optical Neume Recognition Project (ONRP) — the Development of a Search Tool for Neume Notation in Digital Images.” Poster presented at the 2nd International Workshop on Opportunities for the Automatic Pattern Recognition and Analysis of Historical Documents, “Machines and Manuscripts 2015,” Karlsruher Institut für Technologie, Institute for Data Processing and Electronics, Karlsruhe, Germany, February 19. \ No newline at end of file diff --git a/_presentations/2015/Cumming_'Google_Scores'_without_Google_2015.md b/_presentations/2015/Cumming_'Google_Scores'_without_Google_2015.md deleted file mode 100644 index 976bbf1f..00000000 --- a/_presentations/2015/Cumming_'Google_Scores'_without_Google_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Cumming, Julie. 2015e. “‘Google Scores’ without Google.” Invited Talk presented at the Digital Humanities Group, University of Florida, Gainesville, November 16. \ No newline at end of file diff --git a/_presentations/2015/Cumming_Analysing_Renaissance_Polyphony:_Taxonomy_and_Terminology,_1_and_2._2015.md b/_presentations/2015/Cumming_Analysing_Renaissance_Polyphony:_Taxonomy_and_Terminology,_1_and_2._2015.md deleted file mode 100644 index a1b32c59..00000000 --- a/_presentations/2015/Cumming_Analysing_Renaissance_Polyphony:_Taxonomy_and_Terminology,_1_and_2._2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Cumming, Julie. 2015c. “Analysing Renaissance Polyphony: Taxonomy and Terminology, 1 and 2.” Paper presented at the Annual Medieval and Renaissance Music Conference, Brussels, Belgium, July 9. \ No newline at end of file diff --git a/_presentations/2015/Cumming_How_has_Technology_Changed_Musicological_Research?_2015.md b/_presentations/2015/Cumming_How_has_Technology_Changed_Musicological_Research?_2015.md deleted file mode 100644 index ae1bd53d..00000000 --- a/_presentations/2015/Cumming_How_has_Technology_Changed_Musicological_Research?_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Cumming, Julie. 2015a. “How Has Technology Changed Musicological Research?” Paper presented at the IMS Study Group on Digital Musicology, International Association of Music Libraries, Archives and Documentation Centres/International Musicological Society Congress “Music Research in the Digital Age,” New York, June 21. \ No newline at end of file diff --git a/_presentations/2015/Cumming_SIMSSA,_Search_and_Analysis_Axis,_Report_on_our_First_Year._2015.md b/_presentations/2015/Cumming_SIMSSA,_Search_and_Analysis_Axis,_Report_on_our_First_Year._2015.md deleted file mode 100644 index 719acfc5..00000000 --- a/_presentations/2015/Cumming_SIMSSA,_Search_and_Analysis_Axis,_Report_on_our_First_Year._2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Cumming, Julie. 2015d. “SIMSSA, Search and Analysis Axis, Report on Our First Year.” Paper presented at the Annual Medieval and Renaissance Music Conference, SIMSSA Workshop VII, Brussels, Belgium, July 9. \ No newline at end of file diff --git a/_presentations/2015/Fogarty_A_browser-based_neume_metadata_editor_2015.md b/_presentations/2015/Fogarty_A_browser-based_neume_metadata_editor_2015.md deleted file mode 100644 index 81ce0f05..00000000 --- a/_presentations/2015/Fogarty_A_browser-based_neume_metadata_editor_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Fogarty, Andrew, Andrew Hankinson, and Ichiro Fujinaga. 2015. “A Browser-Based Neume Metadata Editor.” Poster presented at the Music Encoding Conference, Florence, Italy, May 18. \ No newline at end of file diff --git a/_presentations/2015/Helsen_Neume_Search_2015.md b/_presentations/2015/Helsen_Neume_Search_2015.md deleted file mode 100644 index ca95ae1c..00000000 --- a/_presentations/2015/Helsen_Neume_Search_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Helsen, Kate, Inga Behrendt, and Jennifer Bain. 2015. “Neume Search.” Paper presented at the Annual Medieval and Renaissance Music Conference, Brussels, Belgium, July 8. \ No newline at end of file diff --git a/_presentations/2015/Helsen_The_Optical_Neume_Recognition_Project_2015.md b/_presentations/2015/Helsen_The_Optical_Neume_Recognition_Project_2015.md deleted file mode 100644 index 79741e37..00000000 --- a/_presentations/2015/Helsen_The_Optical_Neume_Recognition_Project_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Helsen, Kate, Inga Behrendt, Jennifer Bain, and Anton Stingl. 2015. “The Optical Neume Recognition Project.” Paper presented at the Annual Medieval and Renaissance Music Conference, Brussels, Belgium, July 7. \ No newline at end of file diff --git a/_presentations/2015/Kepper_Scholarly_editions_2.0:_How_digital_media_promote_new_editorial_concepts._2015.md b/_presentations/2015/Kepper_Scholarly_editions_2.0:_How_digital_media_promote_new_editorial_concepts._2015.md deleted file mode 100644 index f0246efb..00000000 --- a/_presentations/2015/Kepper_Scholarly_editions_2.0:_How_digital_media_promote_new_editorial_concepts._2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Kepper, Johannes, and Richard Sänger. 2015. “Scholarly Editions 2.0: How Digital Media Promote New Editorial Concepts.” Paper presented at the International Association of Music Libraries, Archives and Documentation Centres/International Musicological Society Congress “Music Research in the Digital Age,” New York, June 21. \ No newline at end of file diff --git "a/_presentations/2015/Lacoste_CANTUS_Antique_Fragments_Roadshow,_or,_\342\200\230What\342\200\231s_My_Fragment?\342\200\231_2015.md" "b/_presentations/2015/Lacoste_CANTUS_Antique_Fragments_Roadshow,_or,_\342\200\230What\342\200\231s_My_Fragment?\342\200\231_2015.md" deleted file mode 100644 index 20590e77..00000000 --- "a/_presentations/2015/Lacoste_CANTUS_Antique_Fragments_Roadshow,_or,_\342\200\230What\342\200\231s_My_Fragment?\342\200\231_2015.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Lacoste, Debra, Kate Helsen, and a panel of experts. 2015. “CANTUS Antique Fragments Roadshow, or, ‘What’s My Fragment?’” Workshop and panel discussion presented at the International Congress on Medieval Studies, Kalamazoo, MI, May 14. \ No newline at end of file diff --git "a/_presentations/2015/Laplante_La_recherche_de_documents_musicaux_dans_les_outils_de_d\303\251couverte_2015.md" "b/_presentations/2015/Laplante_La_recherche_de_documents_musicaux_dans_les_outils_de_d\303\251couverte_2015.md" deleted file mode 100644 index 44df054b..00000000 --- "a/_presentations/2015/Laplante_La_recherche_de_documents_musicaux_dans_les_outils_de_d\303\251couverte_2015.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Laplante, Audrey, and Ariane Legault-Venne. 2015. “La Recherche de Documents Musicaux Dans Les Outils de Découverte.” Presented at the 2015 Annual Meeting of the Québec Chapter of CAML, Grande bibliothèque, BAnQ, Montréal, QC, November 27. \ No newline at end of file diff --git "a/_presentations/2015/Laplante_Vers_une_biblioth\303\250que_num\303\251rique_collective_de_partitions_musicales_2015.md" "b/_presentations/2015/Laplante_Vers_une_biblioth\303\250que_num\303\251rique_collective_de_partitions_musicales_2015.md" deleted file mode 100644 index cc308ad5..00000000 --- "a/_presentations/2015/Laplante_Vers_une_biblioth\303\250que_num\303\251rique_collective_de_partitions_musicales_2015.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Laplante, Audrey. 2015. “Vers Une Bibliothèque Numérique Collective de Partitions Musicales.” Presented at the Journée d’étude sur les bibliothèques numériques, Université de Montréal, Montréal, QC, February 26. \ No newline at end of file diff --git a/_presentations/2015/Roland_MEI_at_15:_Reflections,_Challenges,_and_opportunities._2015.md b/_presentations/2015/Roland_MEI_at_15:_Reflections,_Challenges,_and_opportunities._2015.md deleted file mode 100644 index 6e8bd348..00000000 --- a/_presentations/2015/Roland_MEI_at_15:_Reflections,_Challenges,_and_opportunities._2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Roland, Perry. 2015. “MEI at 15: Reflections, Challenges, and Opportunities.” Paper presented at the International Association of Music Libraries, Archives and Documentation Centres/International Musicological Society Congress “Music Research in the Digital Age,” New York, June 21. \ No newline at end of file diff --git a/_presentations/2015/Rusch_Music_Analysis_as_a_Workflow?_An_Automated_Approach_to_Studying_Voice_Leading_in_the_Bach_Chorales_2015.md b/_presentations/2015/Rusch_Music_Analysis_as_a_Workflow?_An_Automated_Approach_to_Studying_Voice_Leading_in_the_Bach_Chorales_2015.md deleted file mode 100644 index 0607768c..00000000 --- a/_presentations/2015/Rusch_Music_Analysis_as_a_Workflow?_An_Automated_Approach_to_Studying_Voice_Leading_in_the_Bach_Chorales_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Rusch, René, and Ryan Bannon. 2015. “Music Analysis as a Workflow? An Automated Approach to Studying Voice Leading in the Bach Chorales.” Presented at the Workshop on digital musicology: Revisiting the collaborative process between music researchers and computer programmers, CIRMMT, McGill University, Montreal, March 20. \ No newline at end of file diff --git a/_presentations/2015/Swanson_Working_with_Technologies_in_Development:_Mediating_Sources,_Research_Needs,_and_Technological_Capacity_in_Cantus_Ultimus_2015.md b/_presentations/2015/Swanson_Working_with_Technologies_in_Development:_Mediating_Sources,_Research_Needs,_and_Technological_Capacity_in_Cantus_Ultimus_2015.md deleted file mode 100644 index ed460db7..00000000 --- a/_presentations/2015/Swanson_Working_with_Technologies_in_Development:_Mediating_Sources,_Research_Needs,_and_Technological_Capacity_in_Cantus_Ultimus_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Swanson, Barbara. 2015. “Working with Technologies in Development: Mediating Sources, Research Needs, and Technological Capacity in Cantus Ultimus.” Presented at the Digital Humanities Forum, Dalhousie University, Halifax, NS, October 22. \ No newline at end of file diff --git a/_presentations/2016/Bain_Cantus_Ultimus_Project_2016.md b/_presentations/2016/Bain_Cantus_Ultimus_Project_2016.md deleted file mode 100644 index 066a3b15..00000000 --- a/_presentations/2016/Bain_Cantus_Ultimus_Project_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Bain, Jennifer. 2016. “Cantus Ultimus Project.” Presented at the Workshop on SIMSSA XI, AMS/SMT, Vancouver, BC, November 3. \ No newline at end of file diff --git a/_presentations/2016/Cumming_SIMSSA,_Search_and_Analysis_Axis,_Fall_2016_2016.md b/_presentations/2016/Cumming_SIMSSA,_Search_and_Analysis_Axis,_Fall_2016_2016.md deleted file mode 100644 index 87ea538a..00000000 --- a/_presentations/2016/Cumming_SIMSSA,_Search_and_Analysis_Axis,_Fall_2016_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Cumming, Julie. 2016. “SIMSSA, Search and Analysis Axis, Fall 2016.” Presented at the Workshop on SIMSSA XI, AMS/SMT, Vancouver, BC, November 3. \ No newline at end of file diff --git a/_presentations/2016/De Luca_Encoding_Old_Hispanic_neumes_2016.md b/_presentations/2016/De Luca_Encoding_Old_Hispanic_neumes_2016.md deleted file mode 100644 index 1b9fd295..00000000 --- a/_presentations/2016/De Luca_Encoding_Old_Hispanic_neumes_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -De Luca, Elsa. 2016. “Encoding Old Hispanic Neumes.” Presented at the Music Encoding Conference, McGill University, Montreal, QC, May 18. \ No newline at end of file diff --git a/_presentations/2016/Desmond_2000_Years_of_Seeing_Sounds:_The_Story_of_Music_Notation_2016.md b/_presentations/2016/Desmond_2000_Years_of_Seeing_Sounds:_The_Story_of_Music_Notation_2016.md deleted file mode 100644 index 23a10e58..00000000 --- a/_presentations/2016/Desmond_2000_Years_of_Seeing_Sounds:_The_Story_of_Music_Notation_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Desmond, Karen, and Peter Schubert. 2016. “2000 Years of Seeing Sounds: The Story of Music Notation.” Lecture Recital presented at the Music Encoding Conference, McGill University, Montreal, QC, May 20. https://www.youtube.com/watch?v=2GqtCqnC8SI. \ No newline at end of file diff --git a/_presentations/2016/Desmond_Circles,_Dots,_and_Lines:_Punctuating_Sound_in_Time,_ca._1300-1350_2016.md b/_presentations/2016/Desmond_Circles,_Dots,_and_Lines:_Punctuating_Sound_in_Time,_ca._1300-1350_2016.md deleted file mode 100644 index 5ad81715..00000000 --- a/_presentations/2016/Desmond_Circles,_Dots,_and_Lines:_Punctuating_Sound_in_Time,_ca._1300-1350_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Desmond, Karen. 2016a. “Circles, Dots, and Lines: Punctuating Sound in Time, ca. 1300-1350.” Invited Talk, Stanford University, February. \ No newline at end of file diff --git "a/_presentations/2016/Desmond_Rhythmic_Organization_and_the_Potential_for_Flexibility_in_Digital_Encodings_of_Machaut\342\200\231s_Music_2016.md" "b/_presentations/2016/Desmond_Rhythmic_Organization_and_the_Potential_for_Flexibility_in_Digital_Encodings_of_Machaut\342\200\231s_Music_2016.md" deleted file mode 100644 index 8a947551..00000000 --- "a/_presentations/2016/Desmond_Rhythmic_Organization_and_the_Potential_for_Flexibility_in_Digital_Encodings_of_Machaut\342\200\231s_Music_2016.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Desmond, Karen. 2016b. “Rhythmic Organization and the Potential for Flexibility in Digital Encodings of Machaut’s Music.” Presented at the 51st International Congress on Medieval Studies, Western Michigan University, Kalamazoo, MI, May. \ No newline at end of file diff --git a/_presentations/2016/Lacoste_Working_'Live'_with_Cantus_Ultimus_2016.md b/_presentations/2016/Lacoste_Working_'Live'_with_Cantus_Ultimus_2016.md deleted file mode 100644 index f34a742b..00000000 --- a/_presentations/2016/Lacoste_Working_'Live'_with_Cantus_Ultimus_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Lacoste, Debra, Jennifer Bain, and Kate Helsen. 2016. “Working ‘Live’ with Cantus Ultimus.” Presented at the IMS Study Group Meeting for Cantus Planus, Dublin, Ireland, August. \ No newline at end of file diff --git a/_presentations/2016/Laplante_Digitizing_music_scores_and_manuscripts_in_libraries:_Issues_and_challenges_2016.md b/_presentations/2016/Laplante_Digitizing_music_scores_and_manuscripts_in_libraries:_Issues_and_challenges_2016.md deleted file mode 100644 index 3fcf7b75..00000000 --- a/_presentations/2016/Laplante_Digitizing_music_scores_and_manuscripts_in_libraries:_Issues_and_challenges_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Laplante, Audrey. 2016. “Digitizing Music Scores and Manuscripts in Libraries: Issues and Challenges.” Presented at the 65th Congress of the International Association of Music Libraries, Archives and Documentation Centres, Rome, Italy, July 8. \ No newline at end of file diff --git a/_presentations/2016/Laplante_Searching_for_music_materials_in_libraries:_Discovery_tools_as_seen_through_the_eyes_of_the_users_2016.md b/_presentations/2016/Laplante_Searching_for_music_materials_in_libraries:_Discovery_tools_as_seen_through_the_eyes_of_the_users_2016.md deleted file mode 100644 index 52bade25..00000000 --- a/_presentations/2016/Laplante_Searching_for_music_materials_in_libraries:_Discovery_tools_as_seen_through_the_eyes_of_the_users_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Laplante, Audrey, and Ariane Legault-Venne. 2016. “Searching for Music Materials in Libraries: Discovery Tools as Seen through the Eyes of the Users.” Presented at the 65th Congress of the International Association of Music Libraries, Archives and Documentation Centres, Rome, Italy, July 7. \ No newline at end of file diff --git a/_presentations/2016/Thomae_Digital_Encoding_of_Mensural_Music_2016.md b/_presentations/2016/Thomae_Digital_Encoding_of_Mensural_Music_2016.md deleted file mode 100644 index 236a6a52..00000000 --- a/_presentations/2016/Thomae_Digital_Encoding_of_Mensural_Music_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Thomae, Martha E. 2016. “Digital Encoding of Mensural Music.” Presented at the Workshop on SIMSSA X, McGill University, Montreal, QC, September 24. \ No newline at end of file diff --git a/_presentations/2016/Vigliensoni_Automatic_music_recommendation_systems:_do_demographic,_profiling,_and_contextual_features_improve_their_performance?_2016.md b/_presentations/2016/Vigliensoni_Automatic_music_recommendation_systems:_do_demographic,_profiling,_and_contextual_features_improve_their_performance?_2016.md deleted file mode 100644 index f79d7c8f..00000000 --- a/_presentations/2016/Vigliensoni_Automatic_music_recommendation_systems:_do_demographic,_profiling,_and_contextual_features_improve_their_performance?_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Vigliensoni, Gabriel, and Ichiro Fujinaga. 2016. “Automatic Music Recommendation Systems: Do Demographic, Profiling, and Contextual Features Improve Their Performance?” Poster presented at the 17th International Society for Music Information Retrieval Conference, New York, August 7. \ No newline at end of file diff --git a/_presentations/2017/Behrendt_Report_on_MEI_Meeting_in_Graz_2017.md b/_presentations/2017/Behrendt_Report_on_MEI_Meeting_in_Graz_2017.md deleted file mode 100644 index 1363c964..00000000 --- a/_presentations/2017/Behrendt_Report_on_MEI_Meeting_in_Graz_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Behrendt, Inga. 2017. “Report on MEI Meeting in Graz.” Presented at the Workshop on SIMSSA XIII, Art Gallery of Nova Scotia, Halifax, NS, September 22. \ No newline at end of file diff --git a/_presentations/2017/Calvo-Zaragoza_A_unified_approach_towards_automatic_recognition_of_heterogeneous_music_documents_2017.md b/_presentations/2017/Calvo-Zaragoza_A_unified_approach_towards_automatic_recognition_of_heterogeneous_music_documents_2017.md deleted file mode 100644 index 8ec06e8e..00000000 --- a/_presentations/2017/Calvo-Zaragoza_A_unified_approach_towards_automatic_recognition_of_heterogeneous_music_documents_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017. “A Unified Approach towards Automatic Recognition of Heterogeneous Music Documents.” Presented at the Music Encoding Conference, Tours, France, May 17. \ No newline at end of file diff --git a/_presentations/2017/Calvo-Zaragoza_Music_Document_Layout_Analysis_through_Machine_Learning_and_Human_Feedback_2017.md b/_presentations/2017/Calvo-Zaragoza_Music_Document_Layout_Analysis_through_Machine_Learning_and_Human_Feedback_2017.md deleted file mode 100644 index e5539373..00000000 --- a/_presentations/2017/Calvo-Zaragoza_Music_Document_Layout_Analysis_through_Machine_Learning_and_Human_Feedback_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, Ké Zhang, Zeyad Saleh, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017. “Music Document Layout Analysis through Machine Learning and Human Feedback.” Presented at the International Workshop on Graphic Recognition, Kyoto, Japan, November 10. \ No newline at end of file diff --git a/_presentations/2017/Garfinkle_PatternFinder:_Content-Based_Music_Retrieval_with_music21_2017.md b/_presentations/2017/Garfinkle_PatternFinder:_Content-Based_Music_Retrieval_with_music21_2017.md deleted file mode 100644 index db8124fe..00000000 --- a/_presentations/2017/Garfinkle_PatternFinder:_Content-Based_Music_Retrieval_with_music21_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Garfinkle, David. 2017. “PatternFinder: Content-Based Music Retrieval with Music21.” Presented at the DLfM ’17 4th International Workshop on Digital Libraries for Musicology, Shanghai, China, October 28. \ No newline at end of file diff --git a/_presentations/2017/Ju_Non-chord_Tone_Identification_Using_Deep_Neural_Networks_2017.md b/_presentations/2017/Ju_Non-chord_Tone_Identification_Using_Deep_Neural_Networks_2017.md deleted file mode 100644 index cd0f910b..00000000 --- a/_presentations/2017/Ju_Non-chord_Tone_Identification_Using_Deep_Neural_Networks_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Ju, Yaolong, Nathaniel Condit-Schultz, Claire Arthur, and Ichiro Fujinaga. 2017. “Non-Chord Tone Identification Using Deep Neural Networks.” Presented at the 18th International Society for Music Information Retrieval Conference (Late-Breaking), Suzhou, China. \ No newline at end of file diff --git a/_presentations/2017/Ju_Non-chord_tone_identification_2017.md b/_presentations/2017/Ju_Non-chord_tone_identification_2017.md deleted file mode 100644 index 2a957d21..00000000 --- a/_presentations/2017/Ju_Non-chord_tone_identification_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Ju, Yaolong. 2017. “Non-Chord Tone Identification.” Presented at the Workshop on SIMSSA XII, McGill University, Montreal, QC, August 7. \ No newline at end of file diff --git a/_presentations/2017/Lacoste_Cantus_Hackathon:_Create_an_Inventory_with_the_Cantus_Database_in_Real_Time_2017.md b/_presentations/2017/Lacoste_Cantus_Hackathon:_Create_an_Inventory_with_the_Cantus_Database_in_Real_Time_2017.md deleted file mode 100644 index 3357d433..00000000 --- a/_presentations/2017/Lacoste_Cantus_Hackathon:_Create_an_Inventory_with_the_Cantus_Database_in_Real_Time_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Lacoste, Debra, and Kate Helsen. 2017. “Cantus Hackathon: Create an Inventory with the Cantus Database in Real Time.” Presented at the International Congress on Medieval Studies, Kalamazoo, MI, May 11. \ No newline at end of file diff --git a/_presentations/2017/Lacoste_Mysterious_Melodies?_Searching_for_Chant_Melodies_in_the_Cantus_Database_2017.md b/_presentations/2017/Lacoste_Mysterious_Melodies?_Searching_for_Chant_Melodies_in_the_Cantus_Database_2017.md deleted file mode 100644 index a4fef0d0..00000000 --- a/_presentations/2017/Lacoste_Mysterious_Melodies?_Searching_for_Chant_Melodies_in_the_Cantus_Database_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Lacoste, Debra. 2017. “Mysterious Melodies? Searching for Chant Melodies in the Cantus Database.” Presented at the “New Technologies and Renaissance Studies II: Emerging, Continuing Directions” session at the meeting of the Renaissance Society of America, Chicago, IL, April 1. \ No newline at end of file diff --git a/_presentations/2017/Lacoste_Virginity_in_Song:_Digital_Tools_for_the_Liturgy_2017.md b/_presentations/2017/Lacoste_Virginity_in_Song:_Digital_Tools_for_the_Liturgy_2017.md deleted file mode 100644 index ce245544..00000000 --- a/_presentations/2017/Lacoste_Virginity_in_Song:_Digital_Tools_for_the_Liturgy_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Lacoste, Debra (Session organizer). 2017. “Virginity in Song: Digital Tools for the Liturgy.” Presented at the Renaissance Society of America, Chicago, IL, March 30. \ No newline at end of file diff --git a/_presentations/2017/Sapp_Verovio_Humdrum_Viewer:_online_music_notation_rendering_and_analysis_2017.md b/_presentations/2017/Sapp_Verovio_Humdrum_Viewer:_online_music_notation_rendering_and_analysis_2017.md deleted file mode 100644 index b5032907..00000000 --- a/_presentations/2017/Sapp_Verovio_Humdrum_Viewer:_online_music_notation_rendering_and_analysis_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Sapp, Craig. 2017. “Verovio Humdrum Viewer: Online Music Notation Rendering and Analysis.” Keynote presented at the Workshop on SIMSSA XII, McGill University, Montreal, QC, August 7. \ No newline at end of file diff --git a/_presentations/2017/Thomae_A_Methodology_for_Encoding_Mensural_Music:_Introducing_the_Mensural_MEI_Translator_2017.md b/_presentations/2017/Thomae_A_Methodology_for_Encoding_Mensural_Music:_Introducing_the_Mensural_MEI_Translator_2017.md deleted file mode 100644 index 4434a07d..00000000 --- a/_presentations/2017/Thomae_A_Methodology_for_Encoding_Mensural_Music:_Introducing_the_Mensural_MEI_Translator_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Thomae, Martha. 2017. “A Methodology for Encoding Mensural Music: Introducing the Mensural MEI Translator.” Invited Talk, Music Technology Group, Universitat Pompeu Fabra, Barcelona, Spain, May 22. \ No newline at end of file diff --git a/_presentations/2017/Vigliensoni_The_Music_Listening_Histories_Dataset_2017.md b/_presentations/2017/Vigliensoni_The_Music_Listening_Histories_Dataset_2017.md deleted file mode 100644 index 69a0ef87..00000000 --- a/_presentations/2017/Vigliensoni_The_Music_Listening_Histories_Dataset_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Vigliensoni, Gabriel, and Ichiro Fujinaga. 2017. “The Music Listening Histories Dataset.” Presented at the 18th International Society for Music Information Retrieval Conference, Suzhou, China, October 23. http://cloud.simssa.ca/index.php/s/HUvFrpFl0ErRVz9. \ No newline at end of file diff --git a/_presentations/2018/Arthur_Computer-assisted_modal_identification_2018.md b/_presentations/2018/Arthur_Computer-assisted_modal_identification_2018.md deleted file mode 100644 index 141a22c5..00000000 --- a/_presentations/2018/Arthur_Computer-assisted_modal_identification_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Arthur, Claire, Julie Cumming, and Peter Schubert. 2018a. “Computer-Assisted Modal Identification.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 5. \ No newline at end of file diff --git a/_presentations/2018/Arthur_The_Role_of_Structural_Tones_in_Establishing_Mode_in_Renaissance_Two-part_Counterpoint_2018.md b/_presentations/2018/Arthur_The_Role_of_Structural_Tones_in_Establishing_Mode_in_Renaissance_Two-part_Counterpoint_2018.md deleted file mode 100644 index 419780d1..00000000 --- a/_presentations/2018/Arthur_The_Role_of_Structural_Tones_in_Establishing_Mode_in_Renaissance_Two-part_Counterpoint_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Arthur, Claire, Julie Cumming, and Peter Schubert. 2018b. “The Role of Structural Tones in Establishing Mode in Renaissance Two-Part Counterpoint.” Poster presented at the 15th International Conference on Music Perception and Cognition, Montreal, QC, July 26. \ No newline at end of file diff --git a/_presentations/2018/Calvo-Zaragoza_Human-aided_Automatic_Music_Document_Analysis_2018.md b/_presentations/2018/Calvo-Zaragoza_Human-aided_Automatic_Music_Document_Analysis_2018.md deleted file mode 100644 index b097b414..00000000 --- a/_presentations/2018/Calvo-Zaragoza_Human-aided_Automatic_Music_Document_Analysis_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Calvo-Zaragoza, Jorge, Ké Zhang, Zeyad Saleh, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Human-Aided Automatic Music Document Analysis.” Presented at the Music Encoding Conference, University of Maryland, College Park, MD, May 22. \ No newline at end of file diff --git a/_presentations/2018/Cumming_Contrapuntal_Style:_Josquin_Desprez_vs._Pierre_de_la_Rue_2018.md b/_presentations/2018/Cumming_Contrapuntal_Style:_Josquin_Desprez_vs._Pierre_de_la_Rue_2018.md deleted file mode 100644 index 822163b0..00000000 --- a/_presentations/2018/Cumming_Contrapuntal_Style:_Josquin_Desprez_vs._Pierre_de_la_Rue_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Cumming, Julie, Peter Schubert, Cory McKay, Nathaniel Condit-Schultz, and Jonathan Stuchbery. 2018b. “Contrapuntal Style: Josquin Desprez vs. Pierre de La Rue.” Presented at the Conference Pierre de la Rue (ca. 1452-1518), Mechelen, Belgium, November. \ No newline at end of file diff --git a/_presentations/2018/Cumming_Revisiting_the_origins_of_the_Italian_Madrigal_2018.md b/_presentations/2018/Cumming_Revisiting_the_origins_of_the_Italian_Madrigal_2018.md deleted file mode 100644 index d7f6c60d..00000000 --- a/_presentations/2018/Cumming_Revisiting_the_origins_of_the_Italian_Madrigal_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Cumming, Julie E., and Cory McKay. 2018. “Revisiting the Origins of the Italian Madrigal.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 5. \ No newline at end of file diff --git a/_presentations/2018/Cumming_The_Questione_della_musica:_Revisiting_the_Origins_of_the_Italian_Madrigal_2018.md b/_presentations/2018/Cumming_The_Questione_della_musica:_Revisiting_the_Origins_of_the_Italian_Madrigal_2018.md deleted file mode 100644 index b303f5a2..00000000 --- a/_presentations/2018/Cumming_The_Questione_della_musica:_Revisiting_the_Origins_of_the_Italian_Madrigal_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Cumming, Julie, and Zoey Cochran. 2018b. “The Questione Della Musica: Revisiting the Origins of the Italian Madrigal.” Presented at the American Musicological Society, San Antonio, Texas, November. \ No newline at end of file diff --git a/_presentations/2018/Cumming_The_Transformative_Power_of_Digital_Tools_for_Music_Research_2018.md b/_presentations/2018/Cumming_The_Transformative_Power_of_Digital_Tools_for_Music_Research_2018.md deleted file mode 100644 index a23a3300..00000000 --- a/_presentations/2018/Cumming_The_Transformative_Power_of_Digital_Tools_for_Music_Research_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Cumming, Julie E. 2018. “The Transformative Power of Digital Tools for Music Research.” Keynote presented at the Joint meeting of the New York State-Ontario (NYS/O) and New England (NEMLA) Chapters of the Music Library Association, and the Quebec Chapter of the Canadian Association of Music Libraries, Archives and Documentation Centres (SQACBM), McGill University, Montreal, QC, November 8. \ No newline at end of file diff --git a/_presentations/2018/Garfinkle_Computer-assisted_corpus_analysis_finds_a_signature_progression_in_Willaert_and_Palestrina_2018.md b/_presentations/2018/Garfinkle_Computer-assisted_corpus_analysis_finds_a_signature_progression_in_Willaert_and_Palestrina_2018.md deleted file mode 100644 index 8c909fb5..00000000 --- a/_presentations/2018/Garfinkle_Computer-assisted_corpus_analysis_finds_a_signature_progression_in_Willaert_and_Palestrina_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Garfinkle, David, and Peter Schubert. 2018. “Computer-Assisted Corpus Analysis Finds a Signature Progression in Willaert and Palestrina.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 5. \ No newline at end of file diff --git a/_presentations/2018/Helsen_'A_neume_by_any_other_name...':_Considering_Neumes_Described_in_MEI_2018.md b/_presentations/2018/Helsen_'A_neume_by_any_other_name...':_Considering_Neumes_Described_in_MEI_2018.md deleted file mode 100644 index 6fe3ebdc..00000000 --- a/_presentations/2018/Helsen_'A_neume_by_any_other_name...':_Considering_Neumes_Described_in_MEI_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Helsen, Kate, Inga Behrendt, Elsa De Luca, Ichiro Fujinaga, Alessandra Ignesti, Debra Lacoste, and Sarah Long. 2018. “‘A Neume by Any Other Name...’: Considering Neumes Described in MEI.” Panel presented at the IMS Study Group Meeting for Cantus Planus, Linnaeus University, Växjö, Sweden, August 7. \ No newline at end of file diff --git a/_presentations/2018/Helsen_Melody_Models:_Construction_and_Evolution_in_Office_Chants_2018.md b/_presentations/2018/Helsen_Melody_Models:_Construction_and_Evolution_in_Office_Chants_2018.md deleted file mode 100644 index bd73d7e6..00000000 --- a/_presentations/2018/Helsen_Melody_Models:_Construction_and_Evolution_in_Office_Chants_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Helsen, Kate, and Mark Daley. 2018. “Melody Models: Construction and Evolution in Office Chants.” Presented at the IMS Study Group Meeting for Cantus Planus, Linnaeus University, Växjö, Sweden, August 7. \ No newline at end of file diff --git a/_presentations/2018/Howes_Harmonic_syntax_in_the_instrumental_music_of_Frescobaldi:_a_probabilistic_model_2018.md b/_presentations/2018/Howes_Harmonic_syntax_in_the_instrumental_music_of_Frescobaldi:_a_probabilistic_model_2018.md deleted file mode 100644 index 0cf5e2e1..00000000 --- a/_presentations/2018/Howes_Harmonic_syntax_in_the_instrumental_music_of_Frescobaldi:_a_probabilistic_model_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Howes, Samuel. 2018. “Harmonic Syntax in the Instrumental Music of Frescobaldi: A Probabilistic Model.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 5. \ No newline at end of file diff --git a/_presentations/2018/Ju_The_LMLO_goes_MEI:_an_exercise_in_melodic_encoding_translation_2018.md b/_presentations/2018/Ju_The_LMLO_goes_MEI:_an_exercise_in_melodic_encoding_translation_2018.md deleted file mode 100644 index e6b185de..00000000 --- a/_presentations/2018/Ju_The_LMLO_goes_MEI:_an_exercise_in_melodic_encoding_translation_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Ju, Yaolong, and Katharine Eve Helsen. 2018. “The LMLO Goes MEI: An Exercise in Melodic Encoding Translation.” Presented at the Music Encoding Conference, University of Maryland, College Park, MD, May 22. \ No newline at end of file diff --git "a/_presentations/2018/Laplante_Musicologie_num\303\251rique_:_d\303\251veloppement_d'outils_et_de_services_centr\303\251s_sur_l'utilisateur_2018.md" "b/_presentations/2018/Laplante_Musicologie_num\303\251rique_:_d\303\251veloppement_d'outils_et_de_services_centr\303\251s_sur_l'utilisateur_2018.md" deleted file mode 100644 index c066a185..00000000 --- "a/_presentations/2018/Laplante_Musicologie_num\303\251rique_:_d\303\251veloppement_d'outils_et_de_services_centr\303\251s_sur_l'utilisateur_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Laplante, Audrey, and Jean-Sebastian Sauvé. 2018. “Musicologie Numérique : Développement d’outils et de Services Centrés Sur l’utilisateur.” Presented at the Joint meeting of the New York State-Ontario (NYS/O) and New England (NEMLA) Chapters of the Music Library Association, and the Quebec Chapter of the Canadian Association of Music Libraries, Archives and Documentation Centres (SQACBM), Montreal, QC, November 8. \ No newline at end of file diff --git "a/_presentations/2018/Lorenz_Cad\303\251ac,_Gombert,_and_CRIM:_a_new_approach_to_the_renaissance_imitation_mass_2018.md" "b/_presentations/2018/Lorenz_Cad\303\251ac,_Gombert,_and_CRIM:_a_new_approach_to_the_renaissance_imitation_mass_2018.md" deleted file mode 100644 index 92b7b36f..00000000 --- "a/_presentations/2018/Lorenz_Cad\303\251ac,_Gombert,_and_CRIM:_a_new_approach_to_the_renaissance_imitation_mass_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Lorenz, Ian. 2018. “Cadéac, Gombert, and CRIM: A New Approach to the Renaissance Imitation Mass.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 5. \ No newline at end of file diff --git a/_presentations/2018/McKay_Performing_statistical_musicological_research_using_jSymbolic_and_machine_learning_2018.md b/_presentations/2018/McKay_Performing_statistical_musicological_research_using_jSymbolic_and_machine_learning_2018.md deleted file mode 100644 index 2d4e44c5..00000000 --- a/_presentations/2018/McKay_Performing_statistical_musicological_research_using_jSymbolic_and_machine_learning_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -McKay, Cory. 2018. “Performing Statistical Musicological Research Using JSymbolic and Machine Learning.” Presented at the International Conference on the Anatomy of Polyphonic Music around 1500, Cascais, Portugal, June. \ No newline at end of file diff --git a/_presentations/2018/McLennan_Neon2:_Redesigning_a_web-based_MEI_neume_editor_2018.md b/_presentations/2018/McLennan_Neon2:_Redesigning_a_web-based_MEI_neume_editor_2018.md deleted file mode 100644 index d19d5014..00000000 --- a/_presentations/2018/McLennan_Neon2:_Redesigning_a_web-based_MEI_neume_editor_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -McLennan, Zoé, and Juliette Regimbal. 2018. “Neon2: Redesigning a Web-Based MEI Neume Editor.” Presented at the SIMSSA XVII Workshop, Montréal, QC, December 1. \ No newline at end of file diff --git a/_presentations/2018/Nguyen_Updates_to_RODAN_Gamera_Interactive_Classifier_2018.md b/_presentations/2018/Nguyen_Updates_to_RODAN_Gamera_Interactive_Classifier_2018.md deleted file mode 100644 index 2186ff98..00000000 --- a/_presentations/2018/Nguyen_Updates_to_RODAN_Gamera_Interactive_Classifier_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Nguyen, Minh Anh. 2018. “Updates to RODAN Gamera Interactive Classifier.” Presented at the Workshop on SIMSSA XVII: Infrastructure for Music Discovery, McGill University, December 1. \ No newline at end of file diff --git "a/_presentations/2018/N\303\241poles L\303\263pez_Encoding_Matters_2018.md" "b/_presentations/2018/N\303\241poles L\303\263pez_Encoding_Matters_2018.md" deleted file mode 100644 index 7d59fd87..00000000 --- "a/_presentations/2018/N\303\241poles L\303\263pez_Encoding_Matters_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Nápoles López, Néstor, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Encoding Matters.” Presented at the 5th International Conference on Digital Libraries for Musicology, Paris, France, September. \ No newline at end of file diff --git "a/_presentations/2018/N\303\241poles_Symbolic_and_Audio_Key_Detection_Based_on_a_Hidden_Markov_Model_2018.md" "b/_presentations/2018/N\303\241poles_Symbolic_and_Audio_Key_Detection_Based_on_a_Hidden_Markov_Model_2018.md" deleted file mode 100644 index dc0bee5a..00000000 --- "a/_presentations/2018/N\303\241poles_Symbolic_and_Audio_Key_Detection_Based_on_a_Hidden_Markov_Model_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Nápoles, Néstor, Claire Arthur, and Ichiro Fujinaga. 2018. “Symbolic and Audio Key Detection Based on a Hidden Markov Model.” Poster presented at the 19th International Society for Music Information Retrieval Conference, Paris, France, September 23. \ No newline at end of file diff --git a/_presentations/2018/Polins Pedro_SIMSSA_DB_Implementation_2018.md b/_presentations/2018/Polins Pedro_SIMSSA_DB_Implementation_2018.md deleted file mode 100644 index 50971f44..00000000 --- a/_presentations/2018/Polins Pedro_SIMSSA_DB_Implementation_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Polins Pedro, Gustavo, and Yaolong Ju. 2018. “SIMSSA DB Implementation.” Presented at the Workshop on SIMSSA XVII: Infrastructure for Music Discovery, McGill University, December 1. \ No newline at end of file diff --git a/_presentations/2018/Rizo_MuRET:_A_music_recognition,_encoding,_and_transcription_tool_2018.md b/_presentations/2018/Rizo_MuRET:_A_music_recognition,_encoding,_and_transcription_tool_2018.md deleted file mode 100644 index e5b49906..00000000 --- a/_presentations/2018/Rizo_MuRET:_A_music_recognition,_encoding,_and_transcription_tool_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Rizo, David, Jorge Calvo-Zaragoza, and José M. Iñesta. 2018. “MuRET: A Music Recognition, Encoding, and Transcription Tool.” Presented at the 5th International Conference on Digital Libraries for Musicology, Institut de Recherche et Coordination Acoustique/Musique (IRCAM), Paris, France, September 28. \ No newline at end of file diff --git a/_presentations/2018/Sailor_The_insufficiently_stimulated_ear:_a_corpus_study_of_dissonance_treatment_from_Dufay_to_Victoria_2018.md b/_presentations/2018/Sailor_The_insufficiently_stimulated_ear:_a_corpus_study_of_dissonance_treatment_from_Dufay_to_Victoria_2018.md deleted file mode 100644 index 595178ce..00000000 --- a/_presentations/2018/Sailor_The_insufficiently_stimulated_ear:_a_corpus_study_of_dissonance_treatment_from_Dufay_to_Victoria_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Sailor, Malcolm. 2018. “The Insufficiently Stimulated Ear: A Corpus Study of Dissonance Treatment from Dufay to Victoria.” Presented at the 45th Medieval and Renaissance Music Conference, Prague, Czech Republic, July 4. \ No newline at end of file diff --git a/_presentations/2018/Thomae_Automatic_Scoring_up_of_Mensural_Parts_2018.md b/_presentations/2018/Thomae_Automatic_Scoring_up_of_Mensural_Parts_2018.md deleted file mode 100644 index a78a625f..00000000 --- a/_presentations/2018/Thomae_Automatic_Scoring_up_of_Mensural_Parts_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Thomae, Martha E. 2018a. “Automatic Scoring up of Mensural Parts.” Presented at the Workshop on Digital Musicology, McGill University, Montreal, QC, April 27. \ No newline at end of file diff --git a/_presentations/2018/Thomae_Automatic_Scoring_up_of_Music_in_Mensural_Notation_2018.md b/_presentations/2018/Thomae_Automatic_Scoring_up_of_Music_in_Mensural_Notation_2018.md deleted file mode 100644 index 107e1d48..00000000 --- a/_presentations/2018/Thomae_Automatic_Scoring_up_of_Music_in_Mensural_Notation_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2018a. “Automatic Scoring up of Music in Mensural Notation.” Presented at the Music Encoding Conference, University of Maryland, College Park, MD, May 23. \ No newline at end of file diff --git a/_presentations/2018/Thomae_Automatic_scoring_up_of_parts_in_mensural_notation_2018.md b/_presentations/2018/Thomae_Automatic_scoring_up_of_parts_in_mensural_notation_2018.md deleted file mode 100644 index 88da88bb..00000000 --- a/_presentations/2018/Thomae_Automatic_scoring_up_of_parts_in_mensural_notation_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2018b. “Automatic Scoring up of Parts in Mensural Notation.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 6. \ No newline at end of file diff --git a/_presentations/2018/Thomae_Guatemalan_Manuscript_Digitization_Project_2018.md b/_presentations/2018/Thomae_Guatemalan_Manuscript_Digitization_Project_2018.md deleted file mode 100644 index 684dbb43..00000000 --- a/_presentations/2018/Thomae_Guatemalan_Manuscript_Digitization_Project_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Thomae, Martha E. 2018b. “Guatemalan Manuscript Digitization Project.” Presented at the Workshop on SIMSSA XVII: Infrastructure for Music Discovery, McGill University, Montreal, QC, December 1. \ No newline at end of file diff --git a/_presentations/2018/Vigliensoni_Developing_an_environment_for_teaching_computers_to_read_music_2018.md b/_presentations/2018/Vigliensoni_Developing_an_environment_for_teaching_computers_to_read_music_2018.md deleted file mode 100644 index f390be59..00000000 --- a/_presentations/2018/Vigliensoni_Developing_an_environment_for_teaching_computers_to_read_music_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Vigliensoni, Gabriel, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2018. “Developing an Environment for Teaching Computers to Read Music.” Presented at the 1st International Workshop on Reading Music Systems (WoRMS), Conservatoire national des arts et métiers, Paris, France, September 20. \ No newline at end of file diff --git a/_presentations/2018/Vigliensoni_Pixel.js:_a_Web-based_Application_for_Pixel_Classification_and_Correction_2018.md b/_presentations/2018/Vigliensoni_Pixel.js:_a_Web-based_Application_for_Pixel_Classification_and_Correction_2018.md deleted file mode 100644 index e2becb8c..00000000 --- a/_presentations/2018/Vigliensoni_Pixel.js:_a_Web-based_Application_for_Pixel_Classification_and_Correction_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Vigliensoni, Gabriel. 2018. “Pixel.Js: A Web-Based Application for Pixel Classification and Correction.” Presented at the Workshop on SIMSSA XVII: Infrastructure for Music Discovery, McGill University, December 1. \ No newline at end of file diff --git a/_presentations/2019/Calvo-Zaragoza_Holistic_methods_for_optical_music_recognition_2019.md b/_presentations/2019/Calvo-Zaragoza_Holistic_methods_for_optical_music_recognition_2019.md deleted file mode 100644 index 1ea4ae64..00000000 --- a/_presentations/2019/Calvo-Zaragoza_Holistic_methods_for_optical_music_recognition_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Calvo-Zaragoza, Jorge. 2019. “Holistic Methods for Optical Music Recognition.” Presented at the Workshop on SIMSSA XVIII at the Music Encoding Conference, University of Vienna, Vienna, Austria, June 2. \ No newline at end of file diff --git "a/_presentations/2019/Cuenca Rodr\303\255guez_Exploring_musical_style_in__the_anonymous_and_doubtfully_attributed_mass_movements_of_the_Coimbra__manuscripts:_A_statistical_approach_2019.md" "b/_presentations/2019/Cuenca Rodr\303\255guez_Exploring_musical_style_in__the_anonymous_and_doubtfully_attributed_mass_movements_of_the_Coimbra__manuscripts:_A_statistical_approach_2019.md" deleted file mode 100644 index 9e338eef..00000000 --- "a/_presentations/2019/Cuenca Rodr\303\255guez_Exploring_musical_style_in__the_anonymous_and_doubtfully_attributed_mass_movements_of_the_Coimbra__manuscripts:_A_statistical_approach_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Cuenca Rodríguez, María Elena, and Cory McKay. 2019. “Exploring Musical Style in  the Anonymous and Doubtfully Attributed Mass Movements of the Coimbra  Manuscripts: A Statistical Approach.” Presented at the Medieval and Renaissance Music Conference, Basel, Switzerland. \ No newline at end of file diff --git a/_presentations/2019/Cumming_The_Questione_della_musica:_Revisiting_the_Origins_of_the_Italian_Madrigal_2019.md b/_presentations/2019/Cumming_The_Questione_della_musica:_Revisiting_the_Origins_of_the_Italian_Madrigal_2019.md deleted file mode 100644 index f7b1b3e4..00000000 --- a/_presentations/2019/Cumming_The_Questione_della_musica:_Revisiting_the_Origins_of_the_Italian_Madrigal_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Cumming, Julie, and Zoey Cochran. 2019. “The Questione Della Musica: Revisiting the Origins of the Italian Madrigal.” Presented at the Medieval and Renaissance Music Conference, Basel, Switzerland, July 4. \ No newline at end of file diff --git "a/_presentations/2019/De Luca_Cantus_Ultimus\342\200\231_MEI_Neume_Module_and_its_Interoperability_Across_Chant_Notation_2019.md" "b/_presentations/2019/De Luca_Cantus_Ultimus\342\200\231_MEI_Neume_Module_and_its_Interoperability_Across_Chant_Notation_2019.md" deleted file mode 100644 index 4facc6ab..00000000 --- "a/_presentations/2019/De Luca_Cantus_Ultimus\342\200\231_MEI_Neume_Module_and_its_Interoperability_Across_Chant_Notation_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -De Luca, Elsa, Jennifer Bain, Inga Behrendt, Kate Helsen, Alessandra Ignesti, Debra Lacoste, and Sarah Ann Long. 2019. “Cantus Ultimus’ MEI Neume Module and Its Interoperability Across Chant Notation.” Poster (refereed) presented at the Music Encoding Conference, University of Vienna, Vienna, Austria, May 31. \ No newline at end of file diff --git a/_presentations/2019/Fujinaga_SIMSSA_Project_&_Linked_Open_Data_2019.md b/_presentations/2019/Fujinaga_SIMSSA_Project_&_Linked_Open_Data_2019.md deleted file mode 100644 index c7accbe1..00000000 --- a/_presentations/2019/Fujinaga_SIMSSA_Project_&_Linked_Open_Data_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Fujinaga, Ichiro. 2019. “SIMSSA Project & Linked Open Data.” Presented at the Canadian Workshop on Linked Open Data for Cultural Scholarship, Banff, AB, September 13. https://www.birs.ca/events/2019/2-day-workshops/19w2276. \ No newline at end of file diff --git a/_presentations/2019/Hopkins_SIMSSA_DB:_Symbolic_music_discovery_and_search_2019.md b/_presentations/2019/Hopkins_SIMSSA_DB:_Symbolic_music_discovery_and_search_2019.md deleted file mode 100644 index 614a7be8..00000000 --- a/_presentations/2019/Hopkins_SIMSSA_DB:_Symbolic_music_discovery_and_search_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Hopkins, Emily, Yaolong Ju, Gustavo Polins Pedro, Cory McKay, Julie Cumming, and Ichiro Fujinaga. 2019. “SIMSSA DB: Symbolic Music Discovery and Search.” Poster (refereed) presented at the Digital Libraries for Musicology, The Hague, Netherlands, November. \ No newline at end of file diff --git a/_presentations/2019/Howes_Chord_Progressions_in_Lutheran_Chorales_2019.md b/_presentations/2019/Howes_Chord_Progressions_in_Lutheran_Chorales_2019.md deleted file mode 100644 index 803c8fb7..00000000 --- a/_presentations/2019/Howes_Chord_Progressions_in_Lutheran_Chorales_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Howes, Samuel, and Yaolong Ju. 2019. “Chord Progressions in Lutheran Chorales.” Presented at the Workshop on SIMSSA (Single Interface for Music Score Searching and Analysis) XIX, Montreal, Canada, September 21. https://www.cirmmt.org/activities/workshops/research/workshop_on_SIMSSA_XIX. \ No newline at end of file diff --git a/_presentations/2019/Ju_An_Interactive_Workflow_for_Generating_Chord_Labels_for_Homorhythmic_Music_in_Symbolic_Formats_2019.md b/_presentations/2019/Ju_An_Interactive_Workflow_for_Generating_Chord_Labels_for_Homorhythmic_Music_in_Symbolic_Formats_2019.md deleted file mode 100644 index ded54879..00000000 --- a/_presentations/2019/Ju_An_Interactive_Workflow_for_Generating_Chord_Labels_for_Homorhythmic_Music_in_Symbolic_Formats_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Ju, Yaolong, Samuel Howes, Cory McKay, Nathaniel Condit-Schultz, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2019. “An Interactive Workflow for Generating Chord Labels for Homorhythmic Music in Symbolic Formats.” Presented at the 20th annual conference of the International Society for Music Information Retrieval (ISMIR), Delft, Netherlands, November 8. \ No newline at end of file diff --git a/_presentations/2019/Ju_Enabling_Music_Search_and_Analysis:_A_Database_for_Symbolic_Music_Files_2019.md b/_presentations/2019/Ju_Enabling_Music_Search_and_Analysis:_A_Database_for_Symbolic_Music_Files_2019.md deleted file mode 100644 index 4476107d..00000000 --- a/_presentations/2019/Ju_Enabling_Music_Search_and_Analysis:_A_Database_for_Symbolic_Music_Files_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Ju, Yaolong, Gustavo Polins Pedro, Cory McKay, Emily Ann Hopkins, and Julie Cumming. 2019. “Enabling Music Search and Analysis: A Database for Symbolic Music Files.” Poster (refereed) presented at the Music Encoding Conference 2019, University of Vienna, Austria, May 30. \ No newline at end of file diff --git a/_presentations/2019/Ju_Search_and_Analysis_Tool_for_Use_with_the_SIMSSA_Database_2019.md b/_presentations/2019/Ju_Search_and_Analysis_Tool_for_Use_with_the_SIMSSA_Database_2019.md deleted file mode 100644 index 9fea73b3..00000000 --- a/_presentations/2019/Ju_Search_and_Analysis_Tool_for_Use_with_the_SIMSSA_Database_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Ju, Yaolong. 2019. “Search and Analysis Tool for Use with the SIMSSA Database.” Presented at the SIMSSA Workshop, Montréal, QC, June 2. \ No newline at end of file diff --git a/_presentations/2019/Laplante_The_place_of_digital_technologies_in_musicology_from_the_perspective_of_music_scholars_2019.md b/_presentations/2019/Laplante_The_place_of_digital_technologies_in_musicology_from_the_perspective_of_music_scholars_2019.md deleted file mode 100644 index 8b9c1a3f..00000000 --- a/_presentations/2019/Laplante_The_place_of_digital_technologies_in_musicology_from_the_perspective_of_music_scholars_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Laplante, Audrey, and Jean-Sebastian Sauvé. 2019. “The Place of Digital Technologies in Musicology from the Perspective of Music Scholars.” Presented at the Workshop on Requirements, Use Cases, and User Studies in Digital Music Libraries and Archives (RUCUS 2019)/ACM/IEEE-CS Joint Conference on Digital Libraries (JCDL), Urbana-Champaign, IL, USA, June 6. \ No newline at end of file diff --git "a/_presentations/2019/Margot_L\342\200\231influence_des_espaces_g\303\251oculturels_sur_la_structure_et_la_syntaxe_cadentielle_du_rondeau_entre_1250_et_1450_2019.md" "b/_presentations/2019/Margot_L\342\200\231influence_des_espaces_g\303\251oculturels_sur_la_structure_et_la_syntaxe_cadentielle_du_rondeau_entre_1250_et_1450_2019.md" deleted file mode 100644 index c6f5de2e..00000000 --- "a/_presentations/2019/Margot_L\342\200\231influence_des_espaces_g\303\251oculturels_sur_la_structure_et_la_syntaxe_cadentielle_du_rondeau_entre_1250_et_1450_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Margot, Sylvain. 2019. “L’influence Des Espaces Géoculturels Sur La Structure et La Syntaxe Cadentielle Du Rondeau Entre 1250 et 1450.” Presented at the 47th Medieval and Renaissance Music Conference, Schola Cantorum Basiliensis, Basel, Switzerland, July. \ No newline at end of file diff --git a/_presentations/2019/McKay_A_collaborative_symbolic_music_database_for_computational_research_on_music_2019.md b/_presentations/2019/McKay_A_collaborative_symbolic_music_database_for_computational_research_on_music_2019.md deleted file mode 100644 index 9e480740..00000000 --- a/_presentations/2019/McKay_A_collaborative_symbolic_music_database_for_computational_research_on_music_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -McKay, Cory, Emily Hopkins, Gustavo Polins Pedro, Yaolong Ju, Andrew Kam, Julie Cumming, and Ichiro Fujinaga. 2019. “A Collaborative Symbolic Music Database for Computational Research on Music.” Presented at the Medieval and Renaissance Music Conference, Basel, Switzerland. \ No newline at end of file diff --git a/_presentations/2019/McKay_Lessons_learned_in_a_large-scale_project_to_digitize_and_computationally_analyze_musical_scores_2019.md b/_presentations/2019/McKay_Lessons_learned_in_a_large-scale_project_to_digitize_and_computationally_analyze_musical_scores_2019.md deleted file mode 100644 index 70badf69..00000000 --- a/_presentations/2019/McKay_Lessons_learned_in_a_large-scale_project_to_digitize_and_computationally_analyze_musical_scores_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -McKay, Cory, Julie Cumming, and Ichiro Fujinaga. 2019. “Lessons Learned in a Large-Scale Project to Digitize and Computationally Analyze Musical Scores.” Presented at the Digital Humanities Conference, Utrecht, NL, July. \ No newline at end of file diff --git "a/_presentations/2019/N\303\241poles L\303\263pez_Cantus_Ultimus:_Status_Update_2019.md" "b/_presentations/2019/N\303\241poles L\303\263pez_Cantus_Ultimus:_Status_Update_2019.md" deleted file mode 100644 index ae19400a..00000000 --- "a/_presentations/2019/N\303\241poles L\303\263pez_Cantus_Ultimus:_Status_Update_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Nápoles López, Néstor. 2019. “Cantus Ultimus: Status Update.” Presented at the Workshop on SIMSSA XIX, CIRMMT, McGill University, Montreal. \ No newline at end of file diff --git "a/_presentations/2019/N\303\241poles L\303\263pez_Key-Finding_Based_on_a_Hidden_Markov_Model_and_Key_Profiles_2019.md" "b/_presentations/2019/N\303\241poles L\303\263pez_Key-Finding_Based_on_a_Hidden_Markov_Model_and_Key_Profiles_2019.md" deleted file mode 100644 index 81a0aeaa..00000000 --- "a/_presentations/2019/N\303\241poles L\303\263pez_Key-Finding_Based_on_a_Hidden_Markov_Model_and_Key_Profiles_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Nápoles López, Néstor, Claire Arthur, and Ichiro Fujinaga. 2019. “Key-Finding Based on a Hidden Markov Model and Key Profiles.” Presented at the 6th International Conference on Digital Libraries for Musicology, The Hague, Netherlands, November 9. \ No newline at end of file diff --git "a/_presentations/2019/N\303\241poles L\303\263pez_The_effects_of_translation_between_symbolic_music_formats:\302\240A_case_study_with_Humdrum,_Lilypond,_MEI,_and_MusicXML_2019.md" "b/_presentations/2019/N\303\241poles L\303\263pez_The_effects_of_translation_between_symbolic_music_formats:\302\240A_case_study_with_Humdrum,_Lilypond,_MEI,_and_MusicXML_2019.md" deleted file mode 100644 index f751fe0b..00000000 --- "a/_presentations/2019/N\303\241poles L\303\263pez_The_effects_of_translation_between_symbolic_music_formats:\302\240A_case_study_with_Humdrum,_Lilypond,_MEI,_and_MusicXML_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Nápoles López, Néstor, Gabriel Vigliensoni, and Ichiro Fujinaga. 2019. “The Effects of Translation between Symbolic Music Formats: A Case Study with Humdrum, Lilypond, MEI, and MusicXML.” Presented at the Music Encoding Conference, University of Vienna, Vienna, Austria. \ No newline at end of file diff --git a/_presentations/2019/Pugin_A_Verovio_JavaScript_application_2019.md b/_presentations/2019/Pugin_A_Verovio_JavaScript_application_2019.md deleted file mode 100644 index 9a726fbb..00000000 --- a/_presentations/2019/Pugin_A_Verovio_JavaScript_application_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Pugin, Laurent. 2019. “A Verovio JavaScript Application.” Presented at the Workshop on SIMSSA XVIII at the Music Encoding Conference, University of Vienna, Vienna, Austria, June 2. \ No newline at end of file diff --git a/_presentations/2019/Regimbal_Neon.js_After_v3:_How_to_move_forward_with_OMR_visualization_and_correction_of_full_manuscripts_2019.md b/_presentations/2019/Regimbal_Neon.js_After_v3:_How_to_move_forward_with_OMR_visualization_and_correction_of_full_manuscripts_2019.md deleted file mode 100644 index d56087c8..00000000 --- a/_presentations/2019/Regimbal_Neon.js_After_v3:_How_to_move_forward_with_OMR_visualization_and_correction_of_full_manuscripts_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Regimbal, Juliette, Zoé McLennan, Gabriel Vigliensoni, Andrew Tran, and Ichiro Fujinaga. 2019b. “Neon.Js After v3: How to Move Forward with OMR Visualization and Correction of Full Manuscripts.” Presented at the Workshop on SIMSSA XVIII at the Music Encoding Conference, University of Vienna, Vienna, Austria, June 2. \ No newline at end of file diff --git a/_presentations/2019/Regimbal_Neon2:_A_Verovio-based_square-notation_editor_2019.md b/_presentations/2019/Regimbal_Neon2:_A_Verovio-based_square-notation_editor_2019.md deleted file mode 100644 index 32422142..00000000 --- a/_presentations/2019/Regimbal_Neon2:_A_Verovio-based_square-notation_editor_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Regimbal, Juliette, Zoé McLennan, Gabriel Vigliensoni, Andrew Tran, and Ichiro Fujinaga. 2019a. “Neon2: A Verovio-Based Square-Notation Editor.” Poster (refereed) presented at the Music Encoding Conference, University of Vienna, Vienna, Austria, May 31. \ No newline at end of file diff --git a/_presentations/2019/Regimbal_Neon:_Full_Manuscripts,_Lyrics_and_Staves_2019.md b/_presentations/2019/Regimbal_Neon:_Full_Manuscripts,_Lyrics_and_Staves_2019.md deleted file mode 100644 index 49c739d3..00000000 --- a/_presentations/2019/Regimbal_Neon:_Full_Manuscripts,_Lyrics_and_Staves_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Regimbal, Juliette, and Caitlin Hutnyk. 2019. “Neon: Full Manuscripts, Lyrics and Staves.” Presented at the Workshop on SIMSSA XIX, CIRMMT, McGill University, Montreal, September 21. \ No newline at end of file diff --git a/_presentations/2019/Savage_Neume_Component_Pitch_and_Type_Classification_2019.md b/_presentations/2019/Savage_Neume_Component_Pitch_and_Type_Classification_2019.md deleted file mode 100644 index c383cf06..00000000 --- a/_presentations/2019/Savage_Neume_Component_Pitch_and_Type_Classification_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Savage, Evan. 2019. “Neume Component Pitch and Type Classification.” Presented at the Workshop on SIMSSA XIX, CIRMMT, McGill University, Montreal, September 21. \ No newline at end of file diff --git a/_presentations/2019/Shaw_The_Differentiae_Database_2019.md b/_presentations/2019/Shaw_The_Differentiae_Database_2019.md deleted file mode 100644 index 365aa07e..00000000 --- a/_presentations/2019/Shaw_The_Differentiae_Database_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Shaw, Rebecca. 2019. “The Differentiae Database.” Presented at the Workshop on SIMSSA XIX, CIRMMT, McGill University, Montreal, September 21. \ No newline at end of file diff --git a/_presentations/2019/Thomae_Application_of_Music-Encoding_Technologies_to_Guatemalan_Choirbooks,_Facilitating_Preservation_and_Musicological_Studies_of_the_Colonial_Repertoire_2019.md b/_presentations/2019/Thomae_Application_of_Music-Encoding_Technologies_to_Guatemalan_Choirbooks,_Facilitating_Preservation_and_Musicological_Studies_of_the_Colonial_Repertoire_2019.md deleted file mode 100644 index bc64364c..00000000 --- a/_presentations/2019/Thomae_Application_of_Music-Encoding_Technologies_to_Guatemalan_Choirbooks,_Facilitating_Preservation_and_Musicological_Studies_of_the_Colonial_Repertoire_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2019a. “Application of Music-Encoding Technologies to Guatemalan Choirbooks, Facilitating Preservation and Musicological Studies of the Colonial Repertoire.” Paper presentation presented at the Music Encoding Conference, University of Vienna, Vienna, Austria, May 31. \ No newline at end of file diff --git a/_presentations/2019/Thomae_Digitization_and_Encoding_of_the_Musical_Contents_of_a_Set_of_Guatemalan_Choirbooks_2019.md b/_presentations/2019/Thomae_Digitization_and_Encoding_of_the_Musical_Contents_of_a_Set_of_Guatemalan_Choirbooks_2019.md deleted file mode 100644 index 5fac12a6..00000000 --- a/_presentations/2019/Thomae_Digitization_and_Encoding_of_the_Musical_Contents_of_a_Set_of_Guatemalan_Choirbooks_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Thomae, Martha E. 2019d. “Digitization and Encoding of the Musical Contents of a Set of Guatemalan Choirbooks.” Invited Lecture presented at the Multimedia Systems (GLIS 633) course, McGill University, Montreal, QC, November 27. \ No newline at end of file diff --git a/_presentations/2019/Thomae_Guatemalan_Manuscripts:_Digitization_issues_and_forthcoming_challenges_in_the_adaptation_of_the_OMR_workflow_for_mensural_music_2019.md b/_presentations/2019/Thomae_Guatemalan_Manuscripts:_Digitization_issues_and_forthcoming_challenges_in_the_adaptation_of_the_OMR_workflow_for_mensural_music_2019.md deleted file mode 100644 index dee7f8c5..00000000 --- a/_presentations/2019/Thomae_Guatemalan_Manuscripts:_Digitization_issues_and_forthcoming_challenges_in_the_adaptation_of_the_OMR_workflow_for_mensural_music_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Thomae, Martha E. 2019b. “Guatemalan Manuscripts: Digitization Issues and Forthcoming Challenges in the Adaptation of the OMR Workflow for Mensural Music.” Presented at the Workshop on SIMSSA XVIII at the Music Encoding Conference, University of Vienna, Vienna, Austria, June 2. \ No newline at end of file diff --git a/_presentations/2019/Thomae_OMR_for_Mensural_Notation:_Looking_at_a_Guatemalan_Music_Manuscript_2019.md b/_presentations/2019/Thomae_OMR_for_Mensural_Notation:_Looking_at_a_Guatemalan_Music_Manuscript_2019.md deleted file mode 100644 index 0870c94c..00000000 --- a/_presentations/2019/Thomae_OMR_for_Mensural_Notation:_Looking_at_a_Guatemalan_Music_Manuscript_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Thomae, Martha E. 2019c. “OMR for Mensural Notation: Looking at a Guatemalan Music Manuscript.” Presented at the Workshop on SIMSSA XIX, CIRMMT, McGill University, Montreal, September 21. \ No newline at end of file diff --git a/_presentations/2019/Thomae_Preservation_of_the_Colonial_Musical_Heritage_of_Guatemala_Through_Digitization_and_Music_Encoding_Technologies_2019.md b/_presentations/2019/Thomae_Preservation_of_the_Colonial_Musical_Heritage_of_Guatemala_Through_Digitization_and_Music_Encoding_Technologies_2019.md deleted file mode 100644 index de92353d..00000000 --- a/_presentations/2019/Thomae_Preservation_of_the_Colonial_Musical_Heritage_of_Guatemala_Through_Digitization_and_Music_Encoding_Technologies_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Thomae, Martha E. 2019a. “Preservation of the Colonial Musical Heritage of Guatemala Through Digitization and Music Encoding Technologies.” Invited Talk presented at the Association of Canadian Archivists McGill Student Chapter’s Annual Colloquium, Montreal, QC, March 18. \ No newline at end of file diff --git a/_presentations/2019/Thomae_Taking_Digital_Humanities_to_Guatemala,_a_Case_Study_in_the_Preservation_of_Colonial_Musical_Heritage_2019.md b/_presentations/2019/Thomae_Taking_Digital_Humanities_to_Guatemala,_a_Case_Study_in_the_Preservation_of_Colonial_Musical_Heritage_2019.md deleted file mode 100644 index 276bc585..00000000 --- a/_presentations/2019/Thomae_Taking_Digital_Humanities_to_Guatemala,_a_Case_Study_in_the_Preservation_of_Colonial_Musical_Heritage_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2019b. “Taking Digital Humanities to Guatemala, a Case Study in the Preservation of Colonial Musical Heritage.” Presented at the Digital Humanities Conference, Utrecht, NL, July 10. \ No newline at end of file diff --git a/_presentations/2019/Thomae_The_Mensural_Scoring-up_Tool_2019.md b/_presentations/2019/Thomae_The_Mensural_Scoring-up_Tool_2019.md deleted file mode 100644 index 189af6a4..00000000 --- a/_presentations/2019/Thomae_The_Mensural_Scoring-up_Tool_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2019c. “The Mensural Scoring-up Tool.” Presented at the 6th International Conference on Digital Libraries for Musicology, The Hague, NL, November 9. \ No newline at end of file diff --git a/_presentations/2019/Upham_Human_Subtracted:_Social_Distortion_of_Music_Technology_2019.md b/_presentations/2019/Upham_Human_Subtracted:_Social_Distortion_of_Music_Technology_2019.md deleted file mode 100644 index bbd37fc2..00000000 --- a/_presentations/2019/Upham_Human_Subtracted:_Social_Distortion_of_Music_Technology_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Upham, Finn. 2019. “Human Subtracted: Social Distortion of Music Technology.” Presented at the 1 st Workshop on Designing Human-Centric Music  Information Research Systems, Delft, Netherlands, November 2. \ No newline at end of file diff --git a/_presentations/2019/Vigliensoni_From_image_to_encoding:_Full_optical_music_recognition_of_Medieval_and_Renaissance_music_2019.md b/_presentations/2019/Vigliensoni_From_image_to_encoding:_Full_optical_music_recognition_of_Medieval_and_Renaissance_music_2019.md deleted file mode 100644 index 3c959039..00000000 --- a/_presentations/2019/Vigliensoni_From_image_to_encoding:_Full_optical_music_recognition_of_Medieval_and_Renaissance_music_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Vigliensoni, Gabriel, Alex Daigle, Eric Liu, Jorge Calvo-Zaragoza, Juliette Regimbal, Minh Anh Nguyen, Noah Baxter, Zoé McLennan, and Ichiro Fujinaga. 2019a. “From Image to Encoding: Full Optical Music Recognition of Medieval and Renaissance Music.” Presented at the Music Encoding Conference, University of Vienna, Vienna, Austria, May. \ No newline at end of file diff --git a/_presentations/2019/Vigliensoni_Image_to_Encoding:_Full_Optical_Music_Recognition_of_Medieval_and_Renaissance_Music_2019.md b/_presentations/2019/Vigliensoni_Image_to_Encoding:_Full_Optical_Music_Recognition_of_Medieval_and_Renaissance_Music_2019.md deleted file mode 100644 index e70982eb..00000000 --- a/_presentations/2019/Vigliensoni_Image_to_Encoding:_Full_Optical_Music_Recognition_of_Medieval_and_Renaissance_Music_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Vigliensoni, Gabriel, Alex Daigle, Eric Liu, Jorge Calvo-Zaragoza, Juliette Regimbal, Minh Anh Nguyen, Noah Baxter, and Zoé Mclennan. 2019. “Image to Encoding: Full Optical Music Recognition of Medieval and Renaissance Music.” Poster (refereed) presented at the Music Encoding Conference, University of Vienna, Vienna, Austria, May 31. \ No newline at end of file diff --git a/_presentations/2019/Vigliensoni_OMR_after_document_segmentation:_Classifying_and_aligning_music_symbols_and_lyrics_to_generate_MEI_neume_files_2019.md b/_presentations/2019/Vigliensoni_OMR_after_document_segmentation:_Classifying_and_aligning_music_symbols_and_lyrics_to_generate_MEI_neume_files_2019.md deleted file mode 100644 index 88e9e3e3..00000000 --- a/_presentations/2019/Vigliensoni_OMR_after_document_segmentation:_Classifying_and_aligning_music_symbols_and_lyrics_to_generate_MEI_neume_files_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Vigliensoni, Gabriel. 2019. “OMR after Document Segmentation: Classifying and Aligning Music Symbols and Lyrics to Generate MEI Neume Files.” Presented at the Workshop on SIMSSA XVIII at the Music Encoding Conference, University of Vienna, Vienna, Austria, June 2. \ No newline at end of file diff --git a/_presentations/2019/Vigliensoni_Overcoming_the_challenges_of_optical_music_recognition_of_Early_Music_with_machine_learning_2019.md b/_presentations/2019/Vigliensoni_Overcoming_the_challenges_of_optical_music_recognition_of_Early_Music_with_machine_learning_2019.md deleted file mode 100644 index a02eff24..00000000 --- a/_presentations/2019/Vigliensoni_Overcoming_the_challenges_of_optical_music_recognition_of_Early_Music_with_machine_learning_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Vigliensoni, Gabriel, Alex Daigle, Eric Liu, Jorge Calvo-Zaragoza, Juliette Regimbal, Minh Anh Nguyen, Noah Baxter, Zoé McLennan, and Ichiro Fujinaga. 2019b. “Overcoming the Challenges of Optical Music Recognition of Early Music with Machine Learning.” Presented at the Digital Humanities Conference, Utrecht, NL, July. \ No newline at end of file diff --git a/_presentations/2019/de Reuse_Pattern_clustering_in_monophonic_music_by_learning_a_non-linear_embedding_from_human_annotations_2019.md b/_presentations/2019/de Reuse_Pattern_clustering_in_monophonic_music_by_learning_a_non-linear_embedding_from_human_annotations_2019.md deleted file mode 100644 index 925c1b00..00000000 --- a/_presentations/2019/de Reuse_Pattern_clustering_in_monophonic_music_by_learning_a_non-linear_embedding_from_human_annotations_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Reuse, Timothy de, and Ichiro Fujinaga. 2019. “Pattern Clustering in Monophonic Music by Learning a Non-Linear Embedding from Human Annotations.” Presented at the The 20th International Society for Music Information Retrieval Conference, Delft, Netherlands, November. \ No newline at end of file diff --git a/_presentations/2020/Cumming_Thoughts_on_Sustainability,_8_years_later_2020.md b/_presentations/2020/Cumming_Thoughts_on_Sustainability,_8_years_later_2020.md deleted file mode 100644 index 8cc7da94..00000000 --- a/_presentations/2020/Cumming_Thoughts_on_Sustainability,_8_years_later_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Cumming, Julie E. 2020. “Thoughts on Sustainability, 8 Years Later.” Presented at the Round Four Digging into Data Conference, National Science Foundation, Alexandria, VA, January 29. https://diggingintodata.org/awards/news/round-4-conference-2020. \ No newline at end of file diff --git a/_presentations/2020/De Luca_Workshop_I:_Introduction_to_MEI_2020.md b/_presentations/2020/De Luca_Workshop_I:_Introduction_to_MEI_2020.md deleted file mode 100644 index 72322ec6..00000000 --- a/_presentations/2020/De Luca_Workshop_I:_Introduction_to_MEI_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -De Luca, Elsa, and Martha E. Thomae. 2020a. “Workshop I: Introduction to MEI.” Invited Lecture. Prague, Czech Republic (online). \ No newline at end of file diff --git a/_presentations/2020/De Luca_Workshop_II:_Hands-on_MEI_Encoding_2020.md b/_presentations/2020/De Luca_Workshop_II:_Hands-on_MEI_Encoding_2020.md deleted file mode 100644 index 3c4f7359..00000000 --- a/_presentations/2020/De Luca_Workshop_II:_Hands-on_MEI_Encoding_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -De Luca, Elsa, and Martha E. Thomae. 2020b. “Workshop II: Hands-on MEI Encoding.” Invited Lecture presented at the Digital Humanities in Early Music Research I Series – Session II: Early Music Databases and Encoding, Prague, Czech Republic (online), June 30. \ No newline at end of file diff --git a/_presentations/2020/McKay_Exploring_Renaissance_Music_using_N-Gram_Aggregates_to_Summarize_Local_Musical_Content_2020.md b/_presentations/2020/McKay_Exploring_Renaissance_Music_using_N-Gram_Aggregates_to_Summarize_Local_Musical_Content_2020.md deleted file mode 100644 index 249fece7..00000000 --- a/_presentations/2020/McKay_Exploring_Renaissance_Music_using_N-Gram_Aggregates_to_Summarize_Local_Musical_Content_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -McKay, Cory, Rían Adamían, Julie E. Cumming, and Ichiro Fujinaga. 2020. “Exploring Renaissance Music Using N-Gram Aggregates to Summarize Local Musical Content.” Presented at the Medieval and Renaissance Music Conference, Edinburgh, Scotland, July 4. \ No newline at end of file diff --git a/_presentations/2020/Regimbal_IIIF-based_lyric_and_neume_editor_for_square-notation_manuscripts_2020.md b/_presentations/2020/Regimbal_IIIF-based_lyric_and_neume_editor_for_square-notation_manuscripts_2020.md deleted file mode 100644 index 30a4ab81..00000000 --- a/_presentations/2020/Regimbal_IIIF-based_lyric_and_neume_editor_for_square-notation_manuscripts_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Regimbal, Juliette, Gabriel Vigliensoni, Caitlin Hutnyk, and Ichiro Fujinaga. 2020. “IIIF-Based Lyric and Neume Editor for Square-Notation Manuscripts.” Presented at the Music Encoding Conference 2020, Tufts University, Boston, May 27. https://hcommons.org/deposits/item/hc:31975. \ No newline at end of file diff --git "a/_presentations/2020/Thomae_MEI_for_Encoding_Mensural_Music_\342\200\223_A_Survey_2020.md" "b/_presentations/2020/Thomae_MEI_for_Encoding_Mensural_Music_\342\200\223_A_Survey_2020.md" deleted file mode 100644 index 10972294..00000000 --- "a/_presentations/2020/Thomae_MEI_for_Encoding_Mensural_Music_\342\200\223_A_Survey_2020.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Thomae, Martha E. 2020. “MEI for Encoding Mensural Music – A Survey.” Invited Lecture presented at the Digital Humanities in Early Music Research I Series – Session II: Early Music Databases and Encoding, Prague, Czech Republic (online), June 22. \ No newline at end of file diff --git a/_presentations/2020/Thomae_Retrieving_Music_Semantics_from_Optical_Music_Recognition_by_Machine_Translation_2020.md b/_presentations/2020/Thomae_Retrieving_Music_Semantics_from_Optical_Music_Recognition_by_Machine_Translation_2020.md deleted file mode 100644 index 4fcb998c..00000000 --- a/_presentations/2020/Thomae_Retrieving_Music_Semantics_from_Optical_Music_Recognition_by_Machine_Translation_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Thomae, Martha E., Antonio Ríos-Vila, Jorge Calvo-Zaragoza, David Rizo, and José M. Iñesta. 2020. “Retrieving Music Semantics from Optical Music Recognition by Machine Translation.” Presented at the Music Encoding Conference, Tufts University, Boston, MA (online), May. \ No newline at end of file diff --git "a/_presentations/2021/McKay_Musical_influences_on_the_masses_and_motets_of_Crist\303\263bal_de_Morales_and_Francisco_Guerrero:_A_statistical_approach_2021.md" "b/_presentations/2021/McKay_Musical_influences_on_the_masses_and_motets_of_Crist\303\263bal_de_Morales_and_Francisco_Guerrero:_A_statistical_approach_2021.md" deleted file mode 100644 index dc32eeed..00000000 --- "a/_presentations/2021/McKay_Musical_influences_on_the_masses_and_motets_of_Crist\303\263bal_de_Morales_and_Francisco_Guerrero:_A_statistical_approach_2021.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2021 -year: 2021 ---- - -McKay, Cory, and María Elena Cuenca. 2021. “Musical Influences on the Masses and Motets of Cristóbal de Morales and Francisco Guerrero: A Statistical Approach.” Presented at the 49th Medieval and Renaissance International Music Conference, Universidade NOVA de Lisboa, Portugal, July. http://jmir.sourceforge.net/publications/mckay21musical.pdf. \ No newline at end of file diff --git "a/_presentations/2021/Rodr\303\255guez-Garc\303\255a_Ave_festiva_ferculis:_exploring_attribution_by_combining_manual_and_computational_analysis_2021.md" "b/_presentations/2021/Rodr\303\255guez-Garc\303\255a_Ave_festiva_ferculis:_exploring_attribution_by_combining_manual_and_computational_analysis_2021.md" deleted file mode 100644 index fc573c33..00000000 --- "a/_presentations/2021/Rodr\303\255guez-Garc\303\255a_Ave_festiva_ferculis:_exploring_attribution_by_combining_manual_and_computational_analysis_2021.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2021 -year: 2021 ---- - -Rodríguez-García, Esperanza, and Cory McKay. 2021. “Ave Festiva Ferculis: Exploring Attribution by Combining Manual and Computational Analysis.” Presented at the 49th Medieval and Renaissance International Music Conference, Universidade NOVA de Lisboa, Portugal, July. \ No newline at end of file diff --git a/_presentations/2021/Thomae_Digital_Infrastructures_for_Mensural_Music_Using_MEI_2021.md b/_presentations/2021/Thomae_Digital_Infrastructures_for_Mensural_Music_Using_MEI_2021.md deleted file mode 100644 index 430331cc..00000000 --- a/_presentations/2021/Thomae_Digital_Infrastructures_for_Mensural_Music_Using_MEI_2021.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2021 -year: 2021 ---- - -Thomae, Martha E. 2021b. “Digital Infrastructures for Mensural Music Using MEI.” Invited Lecture presented at the Kolloquium Musikwissenschaft, Freiburger Forschungs- und Lehrzentrum Musik (FZM), Freiburg, Germany, January 26. \ No newline at end of file diff --git a/_presentations/2021/Thomae_Encoding_Mensural_Notation_with_MEI_2021.md b/_presentations/2021/Thomae_Encoding_Mensural_Notation_with_MEI_2021.md deleted file mode 100644 index b3ee009d..00000000 --- a/_presentations/2021/Thomae_Encoding_Mensural_Notation_with_MEI_2021.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2021 -year: 2021 ---- - -Thomae, Martha E. 2021a. “Encoding Mensural Notation with MEI.” Invited Lecture presented at the Paleography course, University of Freiburg, Freiburg, Germany, January 25. \ No newline at end of file diff --git a/_presentations/2021/Thomae_Guatemalan_Cathedral_Choirbook_1:_From_manuscript_to_digital_images_to_digital_scores_2021.md b/_presentations/2021/Thomae_Guatemalan_Cathedral_Choirbook_1:_From_manuscript_to_digital_images_to_digital_scores_2021.md deleted file mode 100644 index b6328978..00000000 --- a/_presentations/2021/Thomae_Guatemalan_Cathedral_Choirbook_1:_From_manuscript_to_digital_images_to_digital_scores_2021.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2021 -year: 2021 ---- - -Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2021. “Guatemalan Cathedral Choirbook 1: From Manuscript to Digital Images to Digital Scores.” Presented at the 49th Medieval and Renaissance International Music Conference, Universidade NOVA de Lisboa, Portugal, July. \ No newline at end of file diff --git a/_publications/2005/Sapp_Online_Database_of_Scores_in_the_Humdrum_File_Format_2005.md b/_publications/2005/Sapp_Online_Database_of_Scores_in_the_Humdrum_File_Format_2005.md deleted file mode 100644 index 82d8aa8f..00000000 --- a/_publications/2005/Sapp_Online_Database_of_Scores_in_the_Humdrum_File_Format_2005.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2005 -year: 2005 ---- - -Sapp, Craig Stuart. 2005. “Online Database of Scores in the Humdrum File Format.” In Proceedings of the 6th International Society for Music Information Retrieval Conference, 664–65. London, UK: ISMIR. \ No newline at end of file diff --git "a/_publications/2011/Helsen_A_Report_on_the_Encoding_of_Melodic_Incipits_in_the_Cantus_Database_with_the_Music_Font_\342\200\230'Volpiano\342\200\231_2011.md" "b/_publications/2011/Helsen_A_Report_on_the_Encoding_of_Melodic_Incipits_in_the_Cantus_Database_with_the_Music_Font_\342\200\230'Volpiano\342\200\231_2011.md" deleted file mode 100644 index 75a433fb..00000000 --- "a/_publications/2011/Helsen_A_Report_on_the_Encoding_of_Melodic_Incipits_in_the_Cantus_Database_with_the_Music_Font_\342\200\230'Volpiano\342\200\231_2011.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Helsen, Kate, and Debra Lacoste. 2011. “A Report on the Encoding of Melodic Incipits in the Cantus Database with the Music Font ‘'Volpiano.’” Plainsong & Medieval Music 20 (1):51–65. \ No newline at end of file diff --git a/_publications/2011/Lacoste_The_Cantus_Database:_Mining_for_Medieval_Chant_Traditions_2011.md b/_publications/2011/Lacoste_The_Cantus_Database:_Mining_for_Medieval_Chant_Traditions_2011.md deleted file mode 100644 index 6c6bc59a..00000000 --- a/_publications/2011/Lacoste_The_Cantus_Database:_Mining_for_Medieval_Chant_Traditions_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Lacoste, Debra. 2011. “The Cantus Database: Mining for Medieval Chant Traditions.” In Digital Medievalist. Vol. 7. Barnard College. \ No newline at end of file diff --git a/_publications/2011/Vigliensoni_Automatic_pitch_detection_in_printed_square_notation._2011.md b/_publications/2011/Vigliensoni_Automatic_pitch_detection_in_printed_square_notation._2011.md deleted file mode 100644 index 1630096b..00000000 --- a/_publications/2011/Vigliensoni_Automatic_pitch_detection_in_printed_square_notation._2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Vigliensoni, Gabriel, John Ashley Burgoyne, Andrew Hankinson, and Ichiro Fujinaga. 2011. “Automatic Pitch Detection in Printed Square Notation.” In Proceedings of the International Society for Music Information Retrieval Conference, 423–28. Miami, FL. \ No newline at end of file diff --git a/_publications/2011/Vigliensoni_Touchless_Gestural_Control_of_Concatenative_Sound_Synthesis_2011.md b/_publications/2011/Vigliensoni_Touchless_Gestural_Control_of_Concatenative_Sound_Synthesis_2011.md deleted file mode 100644 index 0353455c..00000000 --- a/_publications/2011/Vigliensoni_Touchless_Gestural_Control_of_Concatenative_Sound_Synthesis_2011.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2011 -year: 2011 ---- - -Vigliensoni, Gabriel. 2011. “Touchless Gestural Control of Concatenative Sound Synthesis.” Master’s Thesis, Montreal, Canada: McGill University. \ No newline at end of file diff --git a/_publications/2012/Hankinson_Creating_a_large-scale_searchable_digital_collection_from_printed_music_materials._2012.md b/_publications/2012/Hankinson_Creating_a_large-scale_searchable_digital_collection_from_printed_music_materials._2012.md deleted file mode 100644 index 22e871b4..00000000 --- a/_publications/2012/Hankinson_Creating_a_large-scale_searchable_digital_collection_from_printed_music_materials._2012.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2012 -year: 2012 ---- - -Hankinson, Andrew, John Ashley Burgoyne, Gabriel Vigliensoni, and Ichiro Fujinaga. 2012. “Creating a Large-Scale Searchable Digital Collection from Printed Music Materials.” In Proceedings of the World Wide Web Conference, 903–8. Lyon, FR. \ No newline at end of file diff --git a/_publications/2012/Hankinson_Digital_document_image_retrieval_using_optical_music_recognition._2012.md b/_publications/2012/Hankinson_Digital_document_image_retrieval_using_optical_music_recognition._2012.md deleted file mode 100644 index 7f30eeb7..00000000 --- a/_publications/2012/Hankinson_Digital_document_image_retrieval_using_optical_music_recognition._2012.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2012 -year: 2012 ---- - -Hankinson, Andrew, John Ashley Burgoyne, Gabriel Vigliensoni, Alastair Porter, Jessica Thompson, Wendy Liu, Remi Chiu, and Ichiro Fujinaga. 2012. “Digital Document Image Retrieval Using Optical Music Recognition.” In Proceedings of the Conference of the International Society for Music Information Retrieval. Porto, Portugal. \ No newline at end of file diff --git a/_publications/2012/Lacoste_Renewal,_Revival,_Rejuvenation:_a_New_Vision_for_the_Cantus_Database_2012.md b/_publications/2012/Lacoste_Renewal,_Revival,_Rejuvenation:_a_New_Vision_for_the_Cantus_Database_2012.md deleted file mode 100644 index cc95b4d5..00000000 --- a/_publications/2012/Lacoste_Renewal,_Revival,_Rejuvenation:_a_New_Vision_for_the_Cantus_Database_2012.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2012 -year: 2012 ---- - -Lacoste, Debra, and Jan Koláček. 2012. “Renewal, Revival, Rejuvenation: A New Vision for the Cantus Database.” In Cantus Planus: Study Group of the International Musicological Society - Papers Read at the 16th Meeting, Vienna, Austria, 2011, 202–9. Vienna: Verlag Brüder Hollinek. \ No newline at end of file diff --git "a/_publications/2013/G\303\263mez-P\303\251rez_Guidelines_for_multilingual_linked_data_2013.md" "b/_publications/2013/G\303\263mez-P\303\251rez_Guidelines_for_multilingual_linked_data_2013.md" deleted file mode 100644 index 2ae32270..00000000 --- "a/_publications/2013/G\303\263mez-P\303\251rez_Guidelines_for_multilingual_linked_data_2013.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Gómez-Pérez, Asunción, Daniel Vila-Suero, Elena Montiel-Ponsoda, Jorge Gracia, and Guadalupe Aguado-de-Cea. 2013. “Guidelines for Multilingual Linked Data.” In Proceedings of the 3rd International Conference on Web Intelligence, Mining and Semantics, 1–12. \ No newline at end of file diff --git a/_publications/2013/Lacoste_CANTUS:_A_Database_for_Latin_Ecclesiastical_Chant_-_Progress_Report_(2009)_2013.md b/_publications/2013/Lacoste_CANTUS:_A_Database_for_Latin_Ecclesiastical_Chant_-_Progress_Report_(2009)_2013.md deleted file mode 100644 index d9139868..00000000 --- a/_publications/2013/Lacoste_CANTUS:_A_Database_for_Latin_Ecclesiastical_Chant_-_Progress_Report_(2009)_2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Lacoste, Debra. 2013. “CANTUS: A Database for Latin Ecclesiastical Chant - Progress Report (2009).” In Papers Read at the 15th Meeting of the IMS Study Group “Cantus Planus”, DobogókÅ/Hungary, 2009. Aug. 23-29, 939–43. Lions Bay, BC, Canada: The Institute of Medieval Music. \ No newline at end of file diff --git a/_publications/2013/Vigliensoni_Musicbrainz_for_the_World:_The_Chilean_Experience_2013.md b/_publications/2013/Vigliensoni_Musicbrainz_for_the_World:_The_Chilean_Experience_2013.md deleted file mode 100644 index cd922a39..00000000 --- a/_publications/2013/Vigliensoni_Musicbrainz_for_the_World:_The_Chilean_Experience_2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Vigliensoni, Gabriel, John Ashley Burgoyne, and Ichiro Fujinaga. 2013. “Musicbrainz for the World: The Chilean Experience.” In Proceedings of the 14th International Society for Music Information Retrieval Conference, 131–36. Curitiba, Brazil. https://zenodo.org/record/1417951#.X-rvJtgzYdU. \ No newline at end of file diff --git a/_publications/2013/Vigliensoni_Optical_Measure_Recognition_in_Common_Music_Notation._2013.md b/_publications/2013/Vigliensoni_Optical_Measure_Recognition_in_Common_Music_Notation._2013.md deleted file mode 100644 index f2cd9351..00000000 --- a/_publications/2013/Vigliensoni_Optical_Measure_Recognition_in_Common_Music_Notation._2013.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2013 -year: 2013 ---- - -Vigliensoni, Gabriel, Gregory Burlet, and Ichiro Fujinaga. 2013. “Optical Measure Recognition in Common Music Notation.” In Proceedings of the International Society for Music Information Retrieval Conference, 125–30. Curitiba, Brazil. \ No newline at end of file diff --git "a/_publications/2014/Bain_Linienlose_Neumen,_Neumentrennung_und_Repr\303\244sentation_von_Neumen_mit_MEI_Schema_\342\200\223Herausforderungen_in_der_Arbeit_im_Optical_Neume_Recognition_Project_(ONRP)._2014.md" "b/_publications/2014/Bain_Linienlose_Neumen,_Neumentrennung_und_Repr\303\244sentation_von_Neumen_mit_MEI_Schema_\342\200\223Herausforderungen_in_der_Arbeit_im_Optical_Neume_Recognition_Project_(ONRP)._2014.md" deleted file mode 100644 index 1326ddaa..00000000 --- "a/_publications/2014/Bain_Linienlose_Neumen,_Neumentrennung_und_Repr\303\244sentation_von_Neumen_mit_MEI_Schema_\342\200\223Herausforderungen_in_der_Arbeit_im_Optical_Neume_Recognition_Project_(ONRP)._2014.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Bain, Jennifer, Inga Behrendt, and Katherine Helsen. 2014. “Linienlose Neumen, Neumentrennung und Repräsentation von Neumen mit MEI Schema –Herausforderungen in der Arbeit im Optical Neume Recognition Project (ONRP).” In Digitale Rekonstruktionen mittelalterlicher Bibliotheken, edited by Sabine Philippi and Philipp Vanscheidt, 119–32. Trierer Beiträge zu den historischen Kulturwissenschaften 12. Wiesbaden: Ludwig Reichert. \ No newline at end of file diff --git a/_publications/2014/Cumming_The_Past_is_not_Over:_Special_Collections_in_the_Digital_Age._2014.md b/_publications/2014/Cumming_The_Past_is_not_Over:_Special_Collections_in_the_Digital_Age._2014.md deleted file mode 100644 index 2c28a3a7..00000000 --- a/_publications/2014/Cumming_The_Past_is_not_Over:_Special_Collections_in_the_Digital_Age._2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Cumming, Julie. 2014. “The Past Is Not Over: Special Collections in the Digital Age.” In Meetings with Books: Symposium on Special Collections in the 21st Century. With a Tribute to Raymond Klibansky and an Illustrated Survey of McGill Library Special Collections, edited by Jillian Tomm and Richard Virr, 109–14. Montreal: McGill University Library. \ No newline at end of file diff --git a/_publications/2014/Lacoste_CANTUS_for_Office_and_Mass:_Building_an_Online_Network_of_Chant_Databases_2014.md b/_publications/2014/Lacoste_CANTUS_for_Office_and_Mass:_Building_an_Online_Network_of_Chant_Databases_2014.md deleted file mode 100644 index 5a419abc..00000000 --- a/_publications/2014/Lacoste_CANTUS_for_Office_and_Mass:_Building_an_Online_Network_of_Chant_Databases_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Lacoste, Debra, and Jan Koláček. 2014. “CANTUS for Office and Mass: Building an Online Network of Chant Databases.” In Cantus Planus: Study Group of the International Musicological Society -- Papers Read at the 18th Meeting, Venice, Italy, 2014. Venice, Italy. \ No newline at end of file diff --git a/_publications/2014/Pugin_Verovio:_a_Library_for_Typesetting_MEI_2014.md b/_publications/2014/Pugin_Verovio:_a_Library_for_Typesetting_MEI_2014.md deleted file mode 100644 index 55bb4953..00000000 --- a/_publications/2014/Pugin_Verovio:_a_Library_for_Typesetting_MEI_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Pugin, Laurent, and Rodolfo Zitellini. 2014. “Verovio: A Library for Typesetting MEI.” In Proceedings of the Music Encoding Conference (2013-2014). University of Virginia, Charlottesville, VA: Music Encoding Initiative. \ No newline at end of file diff --git a/_publications/2014/Vigliensoni_Identifying_time_zones_in_a_large_dataset_of_music_listening_logs_2014.md b/_publications/2014/Vigliensoni_Identifying_time_zones_in_a_large_dataset_of_music_listening_logs_2014.md deleted file mode 100644 index 57201a4a..00000000 --- a/_publications/2014/Vigliensoni_Identifying_time_zones_in_a_large_dataset_of_music_listening_logs_2014.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2014 -year: 2014 ---- - -Vigliensoni, Gabriel, and Ichiro Fujinaga. 2014. “Identifying Time Zones in a Large Dataset of Music Listening Logs.” In Proceedings of the International Workshop on Social Media Retrieval and Analysis, 27–32. Gold Coast, Australia. \ No newline at end of file diff --git a/_publications/2015/Cumming_The_Origins_of_Pervasive_Imitation._2015.md b/_publications/2015/Cumming_The_Origins_of_Pervasive_Imitation._2015.md deleted file mode 100644 index 735ef7ed..00000000 --- a/_publications/2015/Cumming_The_Origins_of_Pervasive_Imitation._2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Cumming, Julie, and Peter Schubert. 2015. “The Origins of Pervasive Imitation.” In The Cambridge History of Fifteenth-Century Music, edited by Anna Maria Busse Berger and Jesse Rodin. Cambridge, UK: Cambridge University Press. \ No newline at end of file diff --git a/_publications/2015/Di Bacco_MEI_for_Mensural_Notation_in_the_Thesaurus_Musicarum_Latinarum_2015.md b/_publications/2015/Di Bacco_MEI_for_Mensural_Notation_in_the_Thesaurus_Musicarum_Latinarum_2015.md deleted file mode 100644 index cc955820..00000000 --- a/_publications/2015/Di Bacco_MEI_for_Mensural_Notation_in_the_Thesaurus_Musicarum_Latinarum_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Di Bacco, Giuliano, and Perry Roland. 2015. “MEI for Mensural Notation in the Thesaurus Musicarum Latinarum.” In Proceedings of the Music Encoding Conference (2015-2017), 25–36. Florence, Italy: Music Encoding Initiative. \ No newline at end of file diff --git a/_publications/2015/Horwitz_A_browser-based_MEI_editor_2015.md b/_publications/2015/Horwitz_A_browser-based_MEI_editor_2015.md deleted file mode 100644 index 35894419..00000000 --- a/_publications/2015/Horwitz_A_browser-based_MEI_editor_2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Horwitz, Andrew, Andrew Hankinson, and Ichiro Fujinaga. 2015. “A Browser-Based MEI Editor.” Poster presented at the Music Encoding Conference, Florence, Italy, May 18. \ No newline at end of file diff --git a/_publications/2015/Schubert_Another_Lesson_from_Lassus:_Quantifying_Contrapuntal_Repetition_in_the_Duos_of_1577._2015.md b/_publications/2015/Schubert_Another_Lesson_from_Lassus:_Quantifying_Contrapuntal_Repetition_in_the_Duos_of_1577._2015.md deleted file mode 100644 index fefa9d44..00000000 --- a/_publications/2015/Schubert_Another_Lesson_from_Lassus:_Quantifying_Contrapuntal_Repetition_in_the_Duos_of_1577._2015.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2015 -year: 2015 ---- - -Schubert, Peter, and Julie Cumming. 2015. “Another Lesson from Lassus: Quantifying Contrapuntal Repetition in the Duos of 1577.” Early Music 43 (4). \ No newline at end of file diff --git a/_publications/2016/Bell_Approaches_to_Handwritten_Conductor_Annotation_Extraction_in_Musical_Scores_2016.md b/_publications/2016/Bell_Approaches_to_Handwritten_Conductor_Annotation_Extraction_in_Musical_Scores_2016.md deleted file mode 100644 index 1bc1aba4..00000000 --- a/_publications/2016/Bell_Approaches_to_Handwritten_Conductor_Annotation_Extraction_in_Musical_Scores_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Bell, Eamonn, and Laurent Pugin. 2016. “Approaches to Handwritten Conductor Annotation Extraction in Musical Scores.” In Proceedings of the 3rd International Workshop on Digital Libraries for Musicology, 33–36. DLfM 2016. New York, NY, USA: ACM. https://doi.org/10.1145/2970044.2970053. \ No newline at end of file diff --git a/_publications/2016/Brinkman_Musical_Stylometry,_Machine_Learning,_and_Attribution_Studies_:_A_Semi-Supervised_Approach_to_the_Works_of_Josquin_2016.md b/_publications/2016/Brinkman_Musical_Stylometry,_Machine_Learning,_and_Attribution_Studies_:_A_Semi-Supervised_Approach_to_the_Works_of_Josquin_2016.md deleted file mode 100644 index e1aeabea..00000000 --- a/_publications/2016/Brinkman_Musical_Stylometry,_Machine_Learning,_and_Attribution_Studies_:_A_Semi-Supervised_Approach_to_the_Works_of_Josquin_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Brinkman, Andrew W., Daniel Shanahan, and Craig Stuart Sapp. 2016. “Musical Stylometry, Machine Learning, and Attribution Studies : A Semi-Supervised Approach to the Works of Josquin.” In Proceedings  of  the  14th  International  Conference  on  Music  Perception  and  Cognition, 91–97. San Francisco, CA, United States: ICMPC. \ No newline at end of file diff --git a/_publications/2016/Calvo-Zaragoza_Document_Analysis_for_Music_Scores_via_Machine_Learning_2016.md b/_publications/2016/Calvo-Zaragoza_Document_Analysis_for_Music_Scores_via_Machine_Learning_2016.md deleted file mode 100644 index 7009f154..00000000 --- a/_publications/2016/Calvo-Zaragoza_Document_Analysis_for_Music_Scores_via_Machine_Learning_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2016. “Document Analysis for Music Scores via Machine Learning.” In Proceedings of the 3rd International Workshop on Digital Libraries for Musicology, 37–40. DLfM 2016. New York, NY, USA: ACM. https://doi.org/10.1145/2970044.2970047. \ No newline at end of file diff --git a/_publications/2016/Calvo-Zaragoza_Music_staff_removal_with_supervised_pixel_classification_2016.md b/_publications/2016/Calvo-Zaragoza_Music_staff_removal_with_supervised_pixel_classification_2016.md deleted file mode 100644 index c0e0c66f..00000000 --- a/_publications/2016/Calvo-Zaragoza_Music_staff_removal_with_supervised_pixel_classification_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Calvo-Zaragoza, Jorge, Luisa Micó, and Jose Oncina. 2016. “Music Staff Removal with Supervised Pixel Classification.” International Journal on Document Analysis and Recognition (IJDAR) 19 (3):211–19. https://doi.org/10.1007/s10032-016-0266-2. \ No newline at end of file diff --git a/_publications/2016/Lacoste_Chants_that_Defy_Classification:_The_Implications_of_Categorization_in_the_Cantus_Database_2016.md b/_publications/2016/Lacoste_Chants_that_Defy_Classification:_The_Implications_of_Categorization_in_the_Cantus_Database_2016.md deleted file mode 100644 index f8c54356..00000000 --- a/_publications/2016/Lacoste_Chants_that_Defy_Classification:_The_Implications_of_Categorization_in_the_Cantus_Database_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Lacoste, Debra, and Barbara Swanson. 2016. “Chants That Defy Classification: The Implications of Categorization in the Cantus Database.” In Proceedings of the Music Encoding Conference (2015-2017), 73–78. Montreal, QC: Music Encoding Initiative. \ No newline at end of file diff --git a/_publications/2016/Pedersoli_Document_segmentation_and_classification_into_musical_scores_and_text_2016.md b/_publications/2016/Pedersoli_Document_segmentation_and_classification_into_musical_scores_and_text_2016.md deleted file mode 100644 index acc480ef..00000000 --- a/_publications/2016/Pedersoli_Document_segmentation_and_classification_into_musical_scores_and_text_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Pedersoli, Fabrizio, and George Tzanetakis. 2016. “Document Segmentation and Classification into Musical Scores and Text.” International Journal on Document Analysis and Recognition (IJDAR) 19 (4):289–304. \ No newline at end of file diff --git a/_publications/2016/Vigliensoni_Automatic_music_recommendation_systems:_do_demographic,_profiling,_and_contextual_features_improve_their_performance?_2016.md b/_publications/2016/Vigliensoni_Automatic_music_recommendation_systems:_do_demographic,_profiling,_and_contextual_features_improve_their_performance?_2016.md deleted file mode 100644 index 714ed189..00000000 --- a/_publications/2016/Vigliensoni_Automatic_music_recommendation_systems:_do_demographic,_profiling,_and_contextual_features_improve_their_performance?_2016.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2016 -year: 2016 ---- - -Vigliensoni, Gabriel, and Ichiro Fujinaga. 2016. “Automatic Music Recommendation Systems: Do Demographic, Profiling, and Contextual Features Improve Their Performance?” In Proceedings of the 17th International Society for Music Information Retrieval Conference, 94–100. New York City, USA. \ No newline at end of file diff --git a/_publications/2017/Barone_GRAIL:_Database_Linking_Music_Metadata_Across_Artist,_Release,and_Track_2017.md b/_publications/2017/Barone_GRAIL:_Database_Linking_Music_Metadata_Across_Artist,_Release,and_Track_2017.md deleted file mode 100644 index e15d3a16..00000000 --- a/_publications/2017/Barone_GRAIL:_Database_Linking_Music_Metadata_Across_Artist,_Release,and_Track_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Barone, Michael D., Kurt Dacosta, Gabriel Vigliensoni, and Matthew H. Woolhouse. 2017. “GRAIL: Database Linking Music Metadata Across Artist, Release,and Track.” In Proceedings of the 4th International Workshop on Digital Libraries for Musicology, 49–54. Association for Computing Machinery. https://dl.acm.org/doi/10.1145/3144749.3144760. \ No newline at end of file diff --git "a/_publications/2017/Behrendt_MEI_Kodierung_der_fr\303\274hesten_Notation_in_linienlosen_Neumen_2017.md" "b/_publications/2017/Behrendt_MEI_Kodierung_der_fr\303\274hesten_Notation_in_linienlosen_Neumen_2017.md" deleted file mode 100644 index f3827f43..00000000 --- "a/_publications/2017/Behrendt_MEI_Kodierung_der_fr\303\274hesten_Notation_in_linienlosen_Neumen_2017.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Behrendt, Inga, Jennifer Bain, and Kate Helsen. 2017. “MEI Kodierung Der Frühesten Notation in Linienlosen Neumen.” Edited by Hannah Busch, Franz Fischer, and Patrick Sahle. Kodikologie Und Paläographie Im Digitalen Zeitalter / Codicology and Paleography in the Digital Age 4:281–96. \ No newline at end of file diff --git a/_publications/2017/Calvo-Zaragoza_A_Machine_Learning_Framework_for_the_Categorization_of_Elements_in_Images_of_Musical_Documents_2017.md b/_publications/2017/Calvo-Zaragoza_A_Machine_Learning_Framework_for_the_Categorization_of_Elements_in_Images_of_Musical_Documents_2017.md deleted file mode 100644 index 090500f6..00000000 --- a/_publications/2017/Calvo-Zaragoza_A_Machine_Learning_Framework_for_the_Categorization_of_Elements_in_Images_of_Musical_Documents_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017a. “A Machine Learning Framework for the Categorization of Elements in Images of Musical Documents.” In Proceedings of the Third International on Technologies for Music Notation and Representation (TENOR 2017). La Coruña, Spain. http://cloud.simssa.ca/index.php/s/NExq8IWkue2IjCH. \ No newline at end of file diff --git a/_publications/2017/Calvo-Zaragoza_Handwritten_Music_Recognition_for_Mensural_Notation:_Formulation,_Data_and_Baseline_Results_2017.md b/_publications/2017/Calvo-Zaragoza_Handwritten_Music_Recognition_for_Mensural_Notation:_Formulation,_Data_and_Baseline_Results_2017.md deleted file mode 100644 index b339eb05..00000000 --- a/_publications/2017/Calvo-Zaragoza_Handwritten_Music_Recognition_for_Mensural_Notation:_Formulation,_Data_and_Baseline_Results_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, J., A. H. Toselli, and E. Vidal. 2017. “Handwritten Music Recognition for Mensural Notation: Formulation, Data and Baseline Results.” In 2017 14th IAPR International Conference on Document Analysis and Recognition (ICDAR), 01:1081–86. https://doi.org/10.1109/ICDAR.2017.179. \ No newline at end of file diff --git a/_publications/2017/Calvo-Zaragoza_Music_Document_Layout_Analysis_through_Machine_Learning_and_Human_Feedback_2017.md b/_publications/2017/Calvo-Zaragoza_Music_Document_Layout_Analysis_through_Machine_Learning_and_Human_Feedback_2017.md deleted file mode 100644 index 429b045e..00000000 --- a/_publications/2017/Calvo-Zaragoza_Music_Document_Layout_Analysis_through_Machine_Learning_and_Human_Feedback_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, Ké Zhang, Zeyad Saleh, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017. “Music Document Layout Analysis through Machine Learning and Human Feedback.” In 2017 14th IAPR International Conference on Document Analysis and Recognition (ICDAR), 02:23–24. Tokyo, Japan. https://doi.org/10.1109/ICDAR.2017.259. \ No newline at end of file diff --git a/_publications/2017/Calvo-Zaragoza_One-Step_Detection_of_Background,_Staff_Lines,_and_Symbols_in_Medieval_Music_Manuscripts_with_Convolutional_Neural_Networks_2017.md b/_publications/2017/Calvo-Zaragoza_One-Step_Detection_of_Background,_Staff_Lines,_and_Symbols_in_Medieval_Music_Manuscripts_with_Convolutional_Neural_Networks_2017.md deleted file mode 100644 index 25ac9022..00000000 --- a/_publications/2017/Calvo-Zaragoza_One-Step_Detection_of_Background,_Staff_Lines,_and_Symbols_in_Medieval_Music_Manuscripts_with_Convolutional_Neural_Networks_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017b. “One-Step Detection of Background, Staff Lines, and Symbols in Medieval Music Manuscripts with Convolutional Neural Networks.” In Proceedings of the International Society for Music Information Retrieval, 724–30. Suzhou, China. http://cloud.simssa.ca/index.php/s/JuPGmwlvAP9ckkR. \ No newline at end of file diff --git a/_publications/2017/Calvo-Zaragoza_Pixelwise_binarization_of_musical_documents_with_convolutional_neural_networks_2017.md b/_publications/2017/Calvo-Zaragoza_Pixelwise_binarization_of_musical_documents_with_convolutional_neural_networks_2017.md deleted file mode 100644 index 8ea7e204..00000000 --- a/_publications/2017/Calvo-Zaragoza_Pixelwise_binarization_of_musical_documents_with_convolutional_neural_networks_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017d. “Pixelwise Binarization of Musical Documents with Convolutional Neural Networks.” In Proceedings of the 15th IAPR International Conference on Machine Vision Applications. Nagoya, Japan. \ No newline at end of file diff --git a/_publications/2017/Calvo-Zaragoza_Pixelwise_classification_for_music_document_analysis_2017.md b/_publications/2017/Calvo-Zaragoza_Pixelwise_classification_for_music_document_analysis_2017.md deleted file mode 100644 index f8018394..00000000 --- a/_publications/2017/Calvo-Zaragoza_Pixelwise_classification_for_music_document_analysis_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017e. “Pixelwise Classification for Music Document Analysis.” In 2017 Seventh International Conference on Image Processing Theory, Tools and Applications (IPTA), 1–6. Montreal, Canada. https://doi.org/10.1109/IPTA.2017.8310134. \ No newline at end of file diff --git a/_publications/2017/Calvo-Zaragoza_Recognition_of_Handwritten_Music_Symbols_with_Convolutional_Neural_Codes_2017.md b/_publications/2017/Calvo-Zaragoza_Recognition_of_Handwritten_Music_Symbols_with_Convolutional_Neural_Codes_2017.md deleted file mode 100644 index 07490b82..00000000 --- a/_publications/2017/Calvo-Zaragoza_Recognition_of_Handwritten_Music_Symbols_with_Convolutional_Neural_Codes_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, Antonio-Javier Gallego, and Antonio Pertusa. 2017. “Recognition of Handwritten Music Symbols with Convolutional Neural Codes.” In 2017 14th IAPR International Conference on Document Analysis and Recognition (ICDAR), 01:691–96. https://doi.org/10.1109/ICDAR.2017.118. \ No newline at end of file diff --git a/_publications/2017/Calvo-Zaragoza_Recognition_of_pen-based_music_notation_with_finite-state_machines_2017.md b/_publications/2017/Calvo-Zaragoza_Recognition_of_pen-based_music_notation_with_finite-state_machines_2017.md deleted file mode 100644 index 6dffcf64..00000000 --- a/_publications/2017/Calvo-Zaragoza_Recognition_of_pen-based_music_notation_with_finite-state_machines_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, and Jose Oncina. 2017. “Recognition of Pen-Based Music Notation with Finite-State Machines.” Expert Systems with Applications 72 (April):395–406. https://doi.org/10.1016/j.eswa.2016.10.041. \ No newline at end of file diff --git a/_publications/2017/Calvo-Zaragoza_Staff-Line_Detection_on_Grayscale_Images_with_Pixel_Classification_2017.md b/_publications/2017/Calvo-Zaragoza_Staff-Line_Detection_on_Grayscale_Images_with_Pixel_Classification_2017.md deleted file mode 100644 index 62252bd5..00000000 --- a/_publications/2017/Calvo-Zaragoza_Staff-Line_Detection_on_Grayscale_Images_with_Pixel_Classification_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017c. “Staff-Line Detection on Grayscale Images with Pixel Classification.” In Pattern Recognition and Image Analysis, edited by Luís A. Alexandre, José Salvador Sánchez, and João M. F. Rodrigues, 279–86. Lecture Notes in Computer Science. Faro, Portugalpixel: Springer International Publishing. http://cloud.simssa.ca/index.php/s/tZswNa5gjwkoatf. \ No newline at end of file diff --git a/_publications/2017/Calvo-Zaragoza_Staff-line_detection_and_removal_using_a_convolutional_neural_network_2017.md b/_publications/2017/Calvo-Zaragoza_Staff-line_detection_and_removal_using_a_convolutional_neural_network_2017.md deleted file mode 100644 index 0a4d0534..00000000 --- a/_publications/2017/Calvo-Zaragoza_Staff-line_detection_and_removal_using_a_convolutional_neural_network_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Calvo-Zaragoza, Jorge, Antonio Pertusa, and Jose Oncina. 2017. “Staff-Line Detection and Removal Using a Convolutional Neural Network.” Machine Vision and Applications 28 (5):665–74. https://doi.org/10.1007/s00138-017-0844-4. \ No newline at end of file diff --git "a/_publications/2017/Cumming_Du_Fay\342\200\231s_Use_of_Improvisatory_Techniques_in_Resvellies_vous_et_faites_chiere_lye_2017.md" "b/_publications/2017/Cumming_Du_Fay\342\200\231s_Use_of_Improvisatory_Techniques_in_Resvellies_vous_et_faites_chiere_lye_2017.md" deleted file mode 100644 index e0dbd531..00000000 --- "a/_publications/2017/Cumming_Du_Fay\342\200\231s_Use_of_Improvisatory_Techniques_in_Resvellies_vous_et_faites_chiere_lye_2017.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Cumming, Julie. 2017a. “Du Fay’s Use of Improvisatory Techniques in Resvellies Vous et Faites Chiere Lye.” Edited by Julie Cumming, Jesse Rodin, and Massimiliano Locanto. Composition and Improvisation in Fifteenth-Century Music, a Special Issue of the RATM (Rivista Di Analisi e Teoria Musicale) 17 (2):3–23. \ No newline at end of file diff --git "a/_publications/2017/Cumming_Sources_and_Identity:_Composers_and_Singers_in_Darnton\342\200\231s_Communications_Circuit_2017.md" "b/_publications/2017/Cumming_Sources_and_Identity:_Composers_and_Singers_in_Darnton\342\200\231s_Communications_Circuit_2017.md" deleted file mode 100644 index 8ab3b54f..00000000 --- "a/_publications/2017/Cumming_Sources_and_Identity:_Composers_and_Singers_in_Darnton\342\200\231s_Communications_Circuit_2017.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Cumming, Julie. 2017b. “Sources and Identity: Composers and Singers in Darnton’s Communications Circuit.” In Sources of Identity: Makers, Owners and Users of Music Sources Before 1600. Turnhout, Belgium: Brepols. \ No newline at end of file diff --git a/_publications/2017/Gallego_Staff-line_removal_with_selectional_auto-encoders_2017.md b/_publications/2017/Gallego_Staff-line_removal_with_selectional_auto-encoders_2017.md deleted file mode 100644 index 7006ced1..00000000 --- a/_publications/2017/Gallego_Staff-line_removal_with_selectional_auto-encoders_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Gallego, Antonio-Javier, and Jorge Calvo-Zaragoza. 2017. “Staff-Line Removal with Selectional Auto-Encoders.” Expert Systems with Applications 89 (December):138–48. https://doi.org/10.1016/j.eswa.2017.07.002. \ No newline at end of file diff --git a/_publications/2017/Lewis_Capturing_Context_and_Provenance_of_Musicology_Research_2017.md b/_publications/2017/Lewis_Capturing_Context_and_Provenance_of_Musicology_Research_2017.md deleted file mode 100644 index bc37c09a..00000000 --- a/_publications/2017/Lewis_Capturing_Context_and_Provenance_of_Musicology_Research_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Lewis, David, Kevin Page, and Andrew Hankinson. 2017. “Capturing Context and Provenance of Musicology Research.” In Proceedings of the Music Encoding Conference (2015-2017), 113–18. Tours, France: Music Encoding Initiative. \ No newline at end of file diff --git "a/_publications/2017/N\303\241poles L\303\263pez_Automatic_harmonic_analysis_of_classicalstring_quartets_from_symbolic_score_2017.md" "b/_publications/2017/N\303\241poles L\303\263pez_Automatic_harmonic_analysis_of_classicalstring_quartets_from_symbolic_score_2017.md" deleted file mode 100644 index 4a1f7830..00000000 --- "a/_publications/2017/N\303\241poles L\303\263pez_Automatic_harmonic_analysis_of_classicalstring_quartets_from_symbolic_score_2017.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Nápoles López, Néstor. 2017. “Automatic Harmonic Analysis of Classicalstring Quartets from Symbolic Score.” Master’s Thesis, Barcelona, Spain: Universitat Pompeu Fabra. \ No newline at end of file diff --git a/_publications/2017/Parada-Cabaleiro_The_SEILS_Dataset:_Symbolically_encoded_scores_in_modern-early_notation_for_computational_musicology_2017.md b/_publications/2017/Parada-Cabaleiro_The_SEILS_Dataset:_Symbolically_encoded_scores_in_modern-early_notation_for_computational_musicology_2017.md deleted file mode 100644 index e67b72fc..00000000 --- a/_publications/2017/Parada-Cabaleiro_The_SEILS_Dataset:_Symbolically_encoded_scores_in_modern-early_notation_for_computational_musicology_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Parada-Cabaleiro, Emilia, Anton Batliner, Alice Baird, and Björn W Schuller. 2017. “The SEILS Dataset: Symbolically Encoded Scores in Modern-Early Notation for Computational Musicology.” In Proceedings of the 18th International Society for Music Information Retrieval Conference, 575–81. Suzhou, China: ISMIR. \ No newline at end of file diff --git a/_publications/2017/Saleh_Pixel.js:_Web-based_Pixel_Classification_Correction_Platform_for_Ground_Truth_Creation_2017.md b/_publications/2017/Saleh_Pixel.js:_Web-based_Pixel_Classification_Correction_Platform_for_Ground_Truth_Creation_2017.md deleted file mode 100644 index 7cc58431..00000000 --- a/_publications/2017/Saleh_Pixel.js:_Web-based_Pixel_Classification_Correction_Platform_for_Ground_Truth_Creation_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Saleh, Zeyad, Ké Zhang, Jorge Calvo-Zaragoza, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017. “Pixel.Js: Web-Based Pixel Classification Correction Platform for Ground Truth Creation.” In Proceedings of the Twelfth IAPR International Workshop on Graphics Recognition. Kyoto, Japan: Springer LNCS. \ No newline at end of file diff --git a/_publications/2017/Vigliensoni_The_Music_Listening_Histories_Dataset_2017.md b/_publications/2017/Vigliensoni_The_Music_Listening_Histories_Dataset_2017.md deleted file mode 100644 index d5772168..00000000 --- a/_publications/2017/Vigliensoni_The_Music_Listening_Histories_Dataset_2017.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2017 -year: 2017 ---- - -Vigliensoni, Gabriel, and Ichiro Fujinaga. 2017. “The Music Listening Histories Dataset.” In Proceedings of the 18th International Society for Music Information Retrieval Conference, 96–102. Suzhou, China. https://doi.org/10.5281/zenodo.1417499. \ No newline at end of file diff --git a/_publications/2018/Arthur_Aims_and_methods_for_examining_two-voice_counterpoint_2018.md b/_publications/2018/Arthur_Aims_and_methods_for_examining_two-voice_counterpoint_2018.md deleted file mode 100644 index 0ab15306..00000000 --- a/_publications/2018/Arthur_Aims_and_methods_for_examining_two-voice_counterpoint_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Arthur, Claire, Julie Cumming, and Peter Schubert. 2018a. “Aims and Methods for Examining Two-Voice Counterpoint.” In Oxford Handbook of Music and Corpus Studies, edited by Daniel Shanahan, Ashley Burgoyne, and Ian Quinn. Oxford, UK: Oxford University Press. \ No newline at end of file diff --git a/_publications/2018/Arthur_The_Role_of_Structural_Tones_in_Establishing_Mode_in_Renaissance_Two-part_Counterpoint_2018.md b/_publications/2018/Arthur_The_Role_of_Structural_Tones_in_Establishing_Mode_in_Renaissance_Two-part_Counterpoint_2018.md deleted file mode 100644 index 0833b5f7..00000000 --- a/_publications/2018/Arthur_The_Role_of_Structural_Tones_in_Establishing_Mode_in_Renaissance_Two-part_Counterpoint_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Arthur, Claire, Julie Cumming, and Peter Schubert. 2018b. “The Role of Structural Tones in Establishing Mode in Renaissance Two-Part Counterpoint.” In Proceedings of the 15th International Conference on Music Perception and Cognition. Montreal, QC. \ No newline at end of file diff --git "a/_publications/2018/Bar\303\263_Optical_Music_Recognition_by_Long_Short-Term_Memory_Networks_2018.md" "b/_publications/2018/Bar\303\263_Optical_Music_Recognition_by_Long_Short-Term_Memory_Networks_2018.md" deleted file mode 100644 index 8b8d0636..00000000 --- "a/_publications/2018/Bar\303\263_Optical_Music_Recognition_by_Long_Short-Term_Memory_Networks_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Baró, Arnau, Pau Riba, Jorge Calvo-Zaragoza, and Alicia Fornés. 2018. “Optical Music Recognition by Long Short-Term Memory Networks.” In GREC 2017: Graphics Recognition. Current Trends and Evolutions, edited by Alicia Fornés and Bart Lamiroy, 81–95. Lecture Notes in Computer Science. Springer International Publishing. \ No newline at end of file diff --git a/_publications/2018/Calvo-Zaragoza_Camera-PrIMus:_Neural_End-to-End_Optical_Music_Recognition_on_Realistic_Monophonic_Scores_2018.md b/_publications/2018/Calvo-Zaragoza_Camera-PrIMus:_Neural_End-to-End_Optical_Music_Recognition_on_Realistic_Monophonic_Scores_2018.md deleted file mode 100644 index 124ab557..00000000 --- a/_publications/2018/Calvo-Zaragoza_Camera-PrIMus:_Neural_End-to-End_Optical_Music_Recognition_on_Realistic_Monophonic_Scores_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Calvo-Zaragoza, Jorge, and David Rizo. 2018. “Camera-PrIMus: Neural End-to-End Optical Music Recognition on Realistic Monophonic Scores.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 8. Paris, France. \ No newline at end of file diff --git a/_publications/2018/Calvo-Zaragoza_Deep_Neural_Networks_for_Document_Processing_of_Music_Score_Images_2018.md b/_publications/2018/Calvo-Zaragoza_Deep_Neural_Networks_for_Document_Processing_of_Music_Score_Images_2018.md deleted file mode 100644 index eed48e12..00000000 --- a/_publications/2018/Calvo-Zaragoza_Deep_Neural_Networks_for_Document_Processing_of_Music_Score_Images_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Calvo-Zaragoza, Jorge, Francisco J. Castellanos, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Deep Neural Networks for Document Processing of Music Score Images.” Applied Sciences 8 (5):654. https://doi.org/10.3390/app8050654. \ No newline at end of file diff --git a/_publications/2018/Calvo-Zaragoza_Discussion_Group_Summary:_Optical_Music_Recognition_2018.md b/_publications/2018/Calvo-Zaragoza_Discussion_Group_Summary:_Optical_Music_Recognition_2018.md deleted file mode 100644 index 9e4a1a6d..00000000 --- a/_publications/2018/Calvo-Zaragoza_Discussion_Group_Summary:_Optical_Music_Recognition_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Calvo-Zaragoza, Jorge, Jan Hajič, and Alexander Pacha. 2018. “Discussion Group Summary: Optical Music Recognition.” In GREC 2017: Graphics Recognition. Current Trends and Evolutions, edited by Alicia Fornés and Bart Lamiroy, 152–57. Lecture Notes in Computer Science. Springer International Publishing. \ No newline at end of file diff --git a/_publications/2018/Calvo-Zaragoza_Probabilistic_Music-Symbol_Spotting_in_Handwritten_Scores_2018.md b/_publications/2018/Calvo-Zaragoza_Probabilistic_Music-Symbol_Spotting_in_Handwritten_Scores_2018.md deleted file mode 100644 index fe2d4593..00000000 --- a/_publications/2018/Calvo-Zaragoza_Probabilistic_Music-Symbol_Spotting_in_Handwritten_Scores_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Calvo-Zaragoza, J., A. H. Toselli, and E. Vidal. 2018. “Probabilistic Music-Symbol Spotting in Handwritten Scores.” In 2018 16th International Conference on Frontiers in Handwriting Recognition (ICFHR), 558–63. https://doi.org/10.1109/ICFHR-2018.2018.00103. \ No newline at end of file diff --git a/_publications/2018/Castellanos_Document_analysis_of_music_score_images_with_selectional_auto_encoders_2018.md b/_publications/2018/Castellanos_Document_analysis_of_music_score_images_with_selectional_auto_encoders_2018.md deleted file mode 100644 index 3956fc99..00000000 --- a/_publications/2018/Castellanos_Document_analysis_of_music_score_images_with_selectional_auto_encoders_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Castellanos, Francisco J., Jorge Calvo-Zaragoza, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Document Analysis of Music Score Images with Selectional Auto Encoders.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 256–63. Paris, France. http://cloud.simssa.ca/index.php/s/FjJGQ6josKEIWNn. \ No newline at end of file diff --git "a/_publications/2018/Condit-Schultz_A_Flexible_Approach_to_Automated_Harmonic_Analysis:_Multiple_Annotations_of_Chorales_by_Bach_and_Pr\303\246torius_2018.md" "b/_publications/2018/Condit-Schultz_A_Flexible_Approach_to_Automated_Harmonic_Analysis:_Multiple_Annotations_of_Chorales_by_Bach_and_Pr\303\246torius_2018.md" deleted file mode 100644 index 9e76bf7c..00000000 --- "a/_publications/2018/Condit-Schultz_A_Flexible_Approach_to_Automated_Harmonic_Analysis:_Multiple_Annotations_of_Chorales_by_Bach_and_Pr\303\246torius_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Condit-Schultz, Nat, Yaolong Ju, and Ichiro Fujinaga. 2018. “A Flexible Approach to Automated Harmonic Analysis: Multiple Annotations of Chorales by Bach and Prætorius.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 66–73. Paris, France: ISMIR. \ No newline at end of file diff --git a/_publications/2018/Cumming_Methodologies_for_creating_symbolic_corpora_of_Western_music_before_1600_2018.md b/_publications/2018/Cumming_Methodologies_for_creating_symbolic_corpora_of_Western_music_before_1600_2018.md deleted file mode 100644 index d142bce5..00000000 --- a/_publications/2018/Cumming_Methodologies_for_creating_symbolic_corpora_of_Western_music_before_1600_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Cumming, Julie E., Cory McKay, Jonathan Stuchbery, and Ichiro Fujinaga. 2018. “Methodologies for Creating Symbolic Corpora of Western Music before 1600.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 491–98. Paris, France: ISMIR. \ No newline at end of file diff --git a/_publications/2018/Cumming_Why_Should_Musicologists_do_Digital_Humanities?_2018.md b/_publications/2018/Cumming_Why_Should_Musicologists_do_Digital_Humanities?_2018.md deleted file mode 100644 index 1e31334c..00000000 --- a/_publications/2018/Cumming_Why_Should_Musicologists_do_Digital_Humanities?_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Cumming, Julie. 2018. “Why Should Musicologists Do Digital Humanities?” Troja: Jahrbuch Für Renaissancemusik, (Re)-Constructing Renaissance Music: Perspectives from the Digital Humanities and Music Theory, 35–46. \ No newline at end of file diff --git a/_publications/2018/Desmond_Music_and_the_moderni,_1300-1500:_The_ars_nova_in_theory_and_practice_2018.md b/_publications/2018/Desmond_Music_and_the_moderni,_1300-1500:_The_ars_nova_in_theory_and_practice_2018.md deleted file mode 100644 index cb6cda87..00000000 --- a/_publications/2018/Desmond_Music_and_the_moderni,_1300-1500:_The_ars_nova_in_theory_and_practice_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Desmond, Karen. 2018. Music and the Moderni, 1300-1500: The Ars Nova in Theory and Practice. Cambridge University Press. \ No newline at end of file diff --git "a/_publications/2018/Haji\304\215 Jr._How_Current_Optical_Music_Recognition_Systems_Are_Becoming_Useful_for_Digital_Libraries_2018.md" "b/_publications/2018/Haji\304\215 Jr._How_Current_Optical_Music_Recognition_Systems_Are_Becoming_Useful_for_Digital_Libraries_2018.md" deleted file mode 100644 index 40838be0..00000000 --- "a/_publications/2018/Haji\304\215 Jr._How_Current_Optical_Music_Recognition_Systems_Are_Becoming_Useful_for_Digital_Libraries_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Hajič Jr., Jan, Marta Kolárová, Alexander Pacha, and Jorge Calvo-Zaragoza. 2018. “How Current Optical Music Recognition Systems Are Becoming Useful for Digital Libraries.” In Proceedings of the 5th International Conference on Digital Libraries for Musicology, 57–61. DLfM ’18. New York, USA: ACM. https://doi.org/10.1145/3273024.3273034. \ No newline at end of file diff --git a/_publications/2018/Long_International_Image_Interoperability_Framework;_Gallica;_e-codices:_Virtual_Manuscript_Library_of_Switzerland_2018.md b/_publications/2018/Long_International_Image_Interoperability_Framework;_Gallica;_e-codices:_Virtual_Manuscript_Library_of_Switzerland_2018.md deleted file mode 100644 index d4fc099d..00000000 --- a/_publications/2018/Long_International_Image_Interoperability_Framework;_Gallica;_e-codices:_Virtual_Manuscript_Library_of_Switzerland_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Long, Sarah Ann. 2018. “International Image Interoperability Framework; Gallica; e-Codices: Virtual Manuscript Library of Switzerland.” Journal of the American Musicological Society 71 (2):561–71. \ No newline at end of file diff --git a/_publications/2018/McKay_jSymbolic_2.2:_Extracting_Features_from_Symbolic_Music_for_use_in_Musicological_and_MIR_Research_2018.md b/_publications/2018/McKay_jSymbolic_2.2:_Extracting_Features_from_Symbolic_Music_for_use_in_Musicological_and_MIR_Research_2018.md deleted file mode 100644 index 01eb4c6c..00000000 --- a/_publications/2018/McKay_jSymbolic_2.2:_Extracting_Features_from_Symbolic_Music_for_use_in_Musicological_and_MIR_Research_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -McKay, Cory, Julie Cumming, and Ichiro Fujinaga. 2018. “JSymbolic 2.2: Extracting Features from Symbolic Music for Use in Musicological and MIR Research.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 348–54. Paris, France: ISMIR. \ No newline at end of file diff --git "a/_publications/2018/N\303\241poles L\303\263pez_Encoding_Matters_2018.md" "b/_publications/2018/N\303\241poles L\303\263pez_Encoding_Matters_2018.md" deleted file mode 100644 index d1863b95..00000000 --- "a/_publications/2018/N\303\241poles L\303\263pez_Encoding_Matters_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Nápoles López, Néstor, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Encoding Matters.” In Proceedings of the 5th International Conference on Digital Libraries for Musicology, 69–73. DLfM ’18. Paris, France: Association for Computing Machinery. https://doi.org/10.1145/3273024.3273027. \ No newline at end of file diff --git a/_publications/2018/Pacha_Optical_Music_Recognition_in_Mensural_Notation_with_Region-based_Convolutional_Neural_Networks_2018.md b/_publications/2018/Pacha_Optical_Music_Recognition_in_Mensural_Notation_with_Region-based_Convolutional_Neural_Networks_2018.md deleted file mode 100644 index f885960d..00000000 --- a/_publications/2018/Pacha_Optical_Music_Recognition_in_Mensural_Notation_with_Region-based_Convolutional_Neural_Networks_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Pacha, Alexander, and Jorge Calvo-Zaragoza. 2018. “Optical Music Recognition in Mensural Notation with Region-Based Convolutional Neural Networks.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 240–47. Paris, France. \ No newline at end of file diff --git a/_publications/2018/Rizo_MuRET:_A_Music_Recognition,_Encoding,_and_Transcription_Tool_2018.md b/_publications/2018/Rizo_MuRET:_A_Music_Recognition,_Encoding,_and_Transcription_Tool_2018.md deleted file mode 100644 index bd969e45..00000000 --- a/_publications/2018/Rizo_MuRET:_A_Music_Recognition,_Encoding,_and_Transcription_Tool_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Rizo, David, Jorge Calvo-Zaragoza, and José M. Iñesta. 2018. “MuRET: A Music Recognition, Encoding, and Transcription Tool.” In Proceedings of the 5th International Conference on Digital Libraries for Musicology, 52–56. DLfM ’18. New York, NY, USA: ACM. https://doi.org/10.1145/3273024.3273029. \ No newline at end of file diff --git "a/_publications/2018/Rom\303\241n_An_End-to-end_Framework_for_Audio-to-Score_Music_Transcription_on_Monophonic_Excerpts_2018.md" "b/_publications/2018/Rom\303\241n_An_End-to-end_Framework_for_Audio-to-Score_Music_Transcription_on_Monophonic_Excerpts_2018.md" deleted file mode 100644 index 96a0b5b6..00000000 --- "a/_publications/2018/Rom\303\241n_An_End-to-end_Framework_for_Audio-to-Score_Music_Transcription_on_Monophonic_Excerpts_2018.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Román, Miguel A., Antonio Pertusa, and Jorge Calvo-Zaragoza. 2018. “An End-to-End Framework for Audio-to-Score Music Transcription on Monophonic Excerpts.” In Proceedings of the 19th International Society for Music Information Retrieval Conference. Paris, France. \ No newline at end of file diff --git a/_publications/2018/Shaw_Differentiae_in_the_Cantus_Manuscript_Database_2018.md b/_publications/2018/Shaw_Differentiae_in_the_Cantus_Manuscript_Database_2018.md deleted file mode 100644 index 1ac37e6c..00000000 --- a/_publications/2018/Shaw_Differentiae_in_the_Cantus_Manuscript_Database_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Shaw, Rebecca. 2018. “Differentiae in the Cantus Manuscript Database.” In Proceedings of the 6th International Conference on Digital Libraries for Musicology (DLfM19). \ No newline at end of file diff --git a/_publications/2018/Sober-Mira_Pen-Based_Music_Document_Transcription_with_Convolutional_Neural_Networks_2018.md b/_publications/2018/Sober-Mira_Pen-Based_Music_Document_Transcription_with_Convolutional_Neural_Networks_2018.md deleted file mode 100644 index 221b48a3..00000000 --- a/_publications/2018/Sober-Mira_Pen-Based_Music_Document_Transcription_with_Convolutional_Neural_Networks_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Sober-Mira, Javier, Jorge Calvo-Zaragoza, David Rizo, and José M. Iñesta. 2018. “Pen-Based Music Document Transcription with Convolutional Neural Networks.” In 2017 14th IAPR International Conference on Document Analysis and Recognition (ICDAR), edited by Alicia Fornés and Bart Lamiroy, 71–80. Lecture Notes in Computer Science. Springer International Publishing. \ No newline at end of file diff --git a/_publications/2018/Vigliensoni_An_Environment_for_Machine_Pedagogy:_Learning_How_to_Teach_Computers_to_Read_Music_2018.md b/_publications/2018/Vigliensoni_An_Environment_for_Machine_Pedagogy:_Learning_How_to_Teach_Computers_to_Read_Music_2018.md deleted file mode 100644 index 718da019..00000000 --- a/_publications/2018/Vigliensoni_An_Environment_for_Machine_Pedagogy:_Learning_How_to_Teach_Computers_to_Read_Music_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Vigliensoni, Gabriel, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2018a. “An Environment for Machine Pedagogy: Learning How to Teach Computers to Read Music.” In Joint Proceedings of the ACM Intelligent User Interface Workshops: Intelligent Music Interfaces for Listening and Creation (MILC). Tokyo, Japan. http://cloud.simssa.ca/index.php/s/bBK9N6gQTpPaKkl. \ No newline at end of file diff --git a/_publications/2018/Vigliensoni_Developing_an_environment_for_teaching_computers_to_read_music_2018.md b/_publications/2018/Vigliensoni_Developing_an_environment_for_teaching_computers_to_read_music_2018.md deleted file mode 100644 index ce81985e..00000000 --- a/_publications/2018/Vigliensoni_Developing_an_environment_for_teaching_computers_to_read_music_2018.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2018 -year: 2018 ---- - -Vigliensoni, Gabriel, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2018b. “Developing an Environment for Teaching Computers to Read Music.” In Proceedings of 1st International Workshop on Reading Music Systems. Paris, France. http://cloud.simssa.ca/index.php/s/ImKlwsuLoI099uI. \ No newline at end of file diff --git a/_publications/2019/Alfaro-Contreras_Approaching_End-to-End_Optical_Music_Recognition_for_Homophonic_Scores_2019.md b/_publications/2019/Alfaro-Contreras_Approaching_End-to-End_Optical_Music_Recognition_for_Homophonic_Scores_2019.md deleted file mode 100644 index 656c8d6f..00000000 --- a/_publications/2019/Alfaro-Contreras_Approaching_End-to-End_Optical_Music_Recognition_for_Homophonic_Scores_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Alfaro-Contreras, María, Jorge Calvo-Zaragoza, and José M. Iñesta. 2019. “Approaching End-to-End Optical Music Recognition for Homophonic Scores.” In Pattern Recognition and Image Analysis, edited by Aythami Morales, Julian Fierrez, José Salvador Sánchez, and Bernardete Ribeiro, 147–58. Lecture Notes in Computer Science. Springer International Publishing. \ No newline at end of file diff --git "a/_publications/2019/Bar\303\263_From_Optical_Music_Recognition_to_Handwritten_Music_Recognition:_A_baseline_2019.md" "b/_publications/2019/Bar\303\263_From_Optical_Music_Recognition_to_Handwritten_Music_Recognition:_A_baseline_2019.md" deleted file mode 100644 index 017dc1e9..00000000 --- "a/_publications/2019/Bar\303\263_From_Optical_Music_Recognition_to_Handwritten_Music_Recognition:_A_baseline_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Baró, Arnau, Pau Riba, Jorge Calvo-Zaragoza, and Alicia Fornés. 2019. “From Optical Music Recognition to Handwritten Music Recognition: A Baseline.” Pattern Recognition Letters 123 (May):1–8. https://doi.org/10.1016/j.patrec.2019.02.029. \ No newline at end of file diff --git a/_publications/2019/Calvo-Zaragoza_A_selectional_auto-encoder_approach_for_document_image_binarization_2019.md b/_publications/2019/Calvo-Zaragoza_A_selectional_auto-encoder_approach_for_document_image_binarization_2019.md deleted file mode 100644 index 2844c1ab..00000000 --- a/_publications/2019/Calvo-Zaragoza_A_selectional_auto-encoder_approach_for_document_image_binarization_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Calvo-Zaragoza, Jorge, and Antonio-Javier Gallego. 2019. “A Selectional Auto-Encoder Approach for Document Image Binarization.” Pattern Recognition 86 (February):37–47. https://doi.org/10.1016/j.patcog.2018.08.011. \ No newline at end of file diff --git a/_publications/2019/Calvo-Zaragoza_Recognition_of_Handwritten_Music_Symbols_using_Meta-features_Obtained_from_Weak_Classifiers_based_on_Nearest_Neighbor_2019.md b/_publications/2019/Calvo-Zaragoza_Recognition_of_Handwritten_Music_Symbols_using_Meta-features_Obtained_from_Weak_Classifiers_based_on_Nearest_Neighbor_2019.md deleted file mode 100644 index b9b7d339..00000000 --- a/_publications/2019/Calvo-Zaragoza_Recognition_of_Handwritten_Music_Symbols_using_Meta-features_Obtained_from_Weak_Classifiers_based_on_Nearest_Neighbor_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Calvo-Zaragoza, Jorge, Jose Javier Valero-Mas, and Juan R. Rico-Juan. 2019. “Recognition of Handwritten Music Symbols Using Meta-Features Obtained from Weak Classifiers Based on Nearest Neighbor.” In Proceedings of the 6th International Conference on Pattern Recognition Applications and Methods, 96–104. http://www.scitepress.org/DigitalLibrary/Link.aspx?doi=10.5220/0006120200960104. \ No newline at end of file diff --git a/_publications/2019/Cumming_Distributed_Cognition,_Improvisation_and_the_Performing_Arts_in_Early_Modern_Europe_2019.md b/_publications/2019/Cumming_Distributed_Cognition,_Improvisation_and_the_Performing_Arts_in_Early_Modern_Europe_2019.md deleted file mode 100644 index e3e721a8..00000000 --- a/_publications/2019/Cumming_Distributed_Cognition,_Improvisation_and_the_Performing_Arts_in_Early_Modern_Europe_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Cumming, Julie, and Evelyn Tribble. 2019. “Distributed Cognition, Improvisation and the Performing Arts in Early Modern Europe.” In History of Distributed Cognition 2: From Medieval to Renaissance Culture. Vol. 2. Edinburgh, Scotland: University of Edinburgh Press. \ No newline at end of file diff --git a/_publications/2019/Cumming_The_Questione_della_musica:_Revisiting_the_Origins_of_the_Italian_Madrigal_2019.md b/_publications/2019/Cumming_The_Questione_della_musica:_Revisiting_the_Origins_of_the_Italian_Madrigal_2019.md deleted file mode 100644 index f7b1b3e4..00000000 --- a/_publications/2019/Cumming_The_Questione_della_musica:_Revisiting_the_Origins_of_the_Italian_Madrigal_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Cumming, Julie, and Zoey Cochran. 2019. “The Questione Della Musica: Revisiting the Origins of the Italian Madrigal.” Presented at the Medieval and Renaissance Music Conference, Basel, Switzerland, July 4. \ No newline at end of file diff --git a/_publications/2019/De Luca_Capturing_Early_Notations_in_MEI:_The_Case_of_Old_Hispanic_Neumes_2019.md b/_publications/2019/De Luca_Capturing_Early_Notations_in_MEI:_The_Case_of_Old_Hispanic_Neumes_2019.md deleted file mode 100644 index 1772aa89..00000000 --- a/_publications/2019/De Luca_Capturing_Early_Notations_in_MEI:_The_Case_of_Old_Hispanic_Neumes_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -De Luca, Elsa, Inga Behrendt, Ichiro Fujinaga, Kate Helsen, Alessandra Ignesti, Debra Lacoste, and Sarah Ann Long. 2019. “Capturing Early Notations in MEI: The Case of Old Hispanic Neumes.” Musiktheorie-Zeitschrift Für Musikwissenschaft 2:229–49. \ No newline at end of file diff --git "a/_publications/2019/De Luca_review_of:_La_transici\303\263n_al_rito_romano_en_Arag\303\263n_y_Navarra:_Fuentes,_escenarios,_tradiciones_by_Juan_Pablo_Rubio_Sadia,_Napoli,_Editrice_Domenicana_Italiana,_2018_2019.md" "b/_publications/2019/De Luca_review_of:_La_transici\303\263n_al_rito_romano_en_Arag\303\263n_y_Navarra:_Fuentes,_escenarios,_tradiciones_by_Juan_Pablo_Rubio_Sadia,_Napoli,_Editrice_Domenicana_Italiana,_2018_2019.md" deleted file mode 100644 index 3d2932df..00000000 --- "a/_publications/2019/De Luca_review_of:_La_transici\303\263n_al_rito_romano_en_Arag\303\263n_y_Navarra:_Fuentes,_escenarios,_tradiciones_by_Juan_Pablo_Rubio_Sadia,_Napoli,_Editrice_Domenicana_Italiana,_2018_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -De Luca, Elsa. 2019. “Review of: La Transición al Rito Romano En Aragón y Navarra: Fuentes, Escenarios, Tradiciones by Juan Pablo Rubio Sadia, Napoli, Editrice Domenicana Italiana, 2018.” Revista Portuguesa de Musicologia | Portuguese Journal of Musicology 6 (1):237–42. \ No newline at end of file diff --git a/_publications/2019/Dixon_Dig_that_Lick:_Exploring_Patterns_in_Jazz_Solos_2019.md b/_publications/2019/Dixon_Dig_that_Lick:_Exploring_Patterns_in_Jazz_Solos_2019.md deleted file mode 100644 index e670ba86..00000000 --- a/_publications/2019/Dixon_Dig_that_Lick:_Exploring_Patterns_in_Jazz_Solos_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Dixon, Simon, Polina Proutskova, Tillman Weyde, Daniel Wolff, Martin Pfleiderer, Klaus Frieler, Frank Höger, et al. 2019. “Dig That Lick: Exploring Patterns in Jazz Solos.” In Dmrn+ 14: Digital Music Research Network 2019. \ No newline at end of file diff --git a/_publications/2019/Fujinaga_Single_Interface_for_Music_Score_Searching_and_Analysis_(SIMSSA)_Project:_Optical_Music_Recognition_Workflow_for_Neume_Notation_2019.md b/_publications/2019/Fujinaga_Single_Interface_for_Music_Score_Searching_and_Analysis_(SIMSSA)_Project:_Optical_Music_Recognition_Workflow_for_Neume_Notation_2019.md deleted file mode 100644 index 62389597..00000000 --- a/_publications/2019/Fujinaga_Single_Interface_for_Music_Score_Searching_and_Analysis_(SIMSSA)_Project:_Optical_Music_Recognition_Workflow_for_Neume_Notation_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Fujinaga, Ichiro. 2019. “Single Interface for Music Score Searching and Analysis (SIMSSA) Project: Optical Music Recognition Workflow for Neume Notation.” In Proceedings of the Computers and the Humanities Symposium (JinMonCom), Vol. 2019 (1):281–86. Osaka, Japan: Information Processing Society of Japan. \ No newline at end of file diff --git a/_publications/2019/Fujinaga_The_Art_of_Teaching_Computers:_The_SIMSSA_Optical_Music_Recognition_Workflow_System_2019.md b/_publications/2019/Fujinaga_The_Art_of_Teaching_Computers:_The_SIMSSA_Optical_Music_Recognition_Workflow_System_2019.md deleted file mode 100644 index 35f1e665..00000000 --- a/_publications/2019/Fujinaga_The_Art_of_Teaching_Computers:_The_SIMSSA_Optical_Music_Recognition_Workflow_System_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Fujinaga, Ichiro, and Gabriel Vigliensoni. 2019. “The Art of Teaching Computers: The SIMSSA Optical Music Recognition Workflow System.” In Proceedings of the 27th European Signal Processing Conference, 330–34. A Coruña, Spain. https://doi.org/10.23919/EUSIPCO.2019.8902658. \ No newline at end of file diff --git a/_publications/2019/Gover_A_Notation-Based_Query_Language_for_Searching_in_Symbolic_Music_2019.md b/_publications/2019/Gover_A_Notation-Based_Query_Language_for_Searching_in_Symbolic_Music_2019.md deleted file mode 100644 index 32a08d07..00000000 --- a/_publications/2019/Gover_A_Notation-Based_Query_Language_for_Searching_in_Symbolic_Music_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Gover, Matan, and Ichiro Fujinaga. 2019. “A Notation-Based Query Language for Searching in Symbolic Music.” In Proceedings of the 6th International Workshop on Digital Libraries for Musicology, 79–83. The Hague, Netherlands: ACM. \ No newline at end of file diff --git a/_publications/2019/Ju_An_Interactive_Workflow_for_Generating_Chord_Labels_for_Homorhythmic_Music_in_Symbolic_Formats_2019.md b/_publications/2019/Ju_An_Interactive_Workflow_for_Generating_Chord_Labels_for_Homorhythmic_Music_in_Symbolic_Formats_2019.md deleted file mode 100644 index fd14366e..00000000 --- a/_publications/2019/Ju_An_Interactive_Workflow_for_Generating_Chord_Labels_for_Homorhythmic_Music_in_Symbolic_Formats_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Ju, Yaolong, Samuel Howes, Cory McKay, Nathaniel Condit-Schultz, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2019. “An Interactive Workflow for Generating Chord Labels for Homorhythmic Music in Symbolic Formats.” In Proceedings of the 20th International Society for Music Information Retrieval Conference, 862–69. Delft, Netherlands. \ No newline at end of file diff --git a/_publications/2019/Mateiu_Domain_Adaptation_for_Handwritten_Symbol_Recognition:_A_Case_of_Study_in_Old_Music_Manuscripts_2019.md b/_publications/2019/Mateiu_Domain_Adaptation_for_Handwritten_Symbol_Recognition:_A_Case_of_Study_in_Old_Music_Manuscripts_2019.md deleted file mode 100644 index e9a27d04..00000000 --- a/_publications/2019/Mateiu_Domain_Adaptation_for_Handwritten_Symbol_Recognition:_A_Case_of_Study_in_Old_Music_Manuscripts_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Mateiu, Tudor N., Antonio-Javier Gallego, and Jorge Calvo-Zaragoza. 2019. “Domain Adaptation for Handwritten Symbol Recognition: A Case of Study in Old Music Manuscripts.” In Pattern Recognition and Image Analysis, edited by Aythami Morales, Julian Fierrez, José Salvador Sánchez, and Bernardete Ribeiro, 135–46. Lecture Notes in Computer Science. Springer International Publishing. \ No newline at end of file diff --git "a/_publications/2019/Nu\303\261ez-Alcover_Glyph_and_Position_Classification_of_Music_Symbols_in_Early_Music_Manuscripts_2019.md" "b/_publications/2019/Nu\303\261ez-Alcover_Glyph_and_Position_Classification_of_Music_Symbols_in_Early_Music_Manuscripts_2019.md" deleted file mode 100644 index ea936e49..00000000 --- "a/_publications/2019/Nu\303\261ez-Alcover_Glyph_and_Position_Classification_of_Music_Symbols_in_Early_Music_Manuscripts_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Nuñez-Alcover, Alicia, Pedro J. Ponce de León, and Jorge Calvo-Zaragoza. 2019. “Glyph and Position Classification of Music Symbols in Early Music Manuscripts.” In Pattern Recognition and Image Analysis, edited by Aythami Morales, Julian Fierrez, José Salvador Sánchez, and Bernardete Ribeiro, 159–68. Lecture Notes in Computer Science. Springer International Publishing. \ No newline at end of file diff --git "a/_publications/2019/N\303\241poles L\303\263pez_Key-Finding_Based_on_a_Hidden_Markov_Model_and_Key_Profiles_2019.md" "b/_publications/2019/N\303\241poles L\303\263pez_Key-Finding_Based_on_a_Hidden_Markov_Model_and_Key_Profiles_2019.md" deleted file mode 100644 index e779dd44..00000000 --- "a/_publications/2019/N\303\241poles L\303\263pez_Key-Finding_Based_on_a_Hidden_Markov_Model_and_Key_Profiles_2019.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Nápoles López, Néstor, Claire Arthur, and Ichiro Fujinaga. 2019. “Key-Finding Based on a Hidden Markov Model and Key Profiles.” In Proceedings of the 6th International Workshop on Digital Libraries for Musicology, 33–37. DLfM ’19. The Hague, Netherlands: ACM. https://doi.org/10.1145/3358664.3358675. \ No newline at end of file diff --git a/_publications/2019/Pacha_Learning_Notation_Graph_Construction_for_Full-Pipeline_Optical_Music_Recognition_2019.md b/_publications/2019/Pacha_Learning_Notation_Graph_Construction_for_Full-Pipeline_Optical_Music_Recognition_2019.md deleted file mode 100644 index 080cb664..00000000 --- a/_publications/2019/Pacha_Learning_Notation_Graph_Construction_for_Full-Pipeline_Optical_Music_Recognition_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Pacha, Alexander, Jorge Calvo-Zaragoza, and Jan Hajič Jr. 2019. “Learning Notation Graph Construction for Full-Pipeline Optical Music Recognition.” In Proceedings of the 20th International Society for Music Information Retrieval Conference. \ No newline at end of file diff --git a/_publications/2019/Thomae_The_Mensural_Scoring-Up_Tool_2019.md b/_publications/2019/Thomae_The_Mensural_Scoring-Up_Tool_2019.md deleted file mode 100644 index 7d40d2cc..00000000 --- a/_publications/2019/Thomae_The_Mensural_Scoring-Up_Tool_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Thomae, Martha E., Julie E. Cumming, and Ichiro Fujinaga. 2019. “The Mensural Scoring-Up Tool.” In Proceedings of the 6th International Workshop on Digital Libraries for Musicology, 9–19. The Hague, Netherlands: ACM. https://doi.org/10.1145/3358664.3358668. \ No newline at end of file diff --git a/_publications/2019/Upham_HUMAN_SUBTRACTED:_SOCIAL_DISTORTION_OF_MUSICTECHNOLOGY_2019.md b/_publications/2019/Upham_HUMAN_SUBTRACTED:_SOCIAL_DISTORTION_OF_MUSICTECHNOLOGY_2019.md deleted file mode 100644 index d605c3b4..00000000 --- a/_publications/2019/Upham_HUMAN_SUBTRACTED:_SOCIAL_DISTORTION_OF_MUSICTECHNOLOGY_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Upham, Finn. 2019. “HUMAN SUBTRACTED: SOCIAL DISTORTION OF MUSICTECHNOLOGY.” In Proceedings of the  1 St Workshop on Designing Human-Centric Music  Information Research Systems, 23–25. Delft, Netherlands. https://sites.google.com/view/designinghuman-centricmir/proceedings. \ No newline at end of file diff --git a/_publications/2019/de Reuse_A_machine_learning_approach_to_pattern_discovery_in_symbolic_music_2019.md b/_publications/2019/de Reuse_A_machine_learning_approach_to_pattern_discovery_in_symbolic_music_2019.md deleted file mode 100644 index d4d4cdf1..00000000 --- a/_publications/2019/de Reuse_A_machine_learning_approach_to_pattern_discovery_in_symbolic_music_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Reuse, Timothy de. 2019. “A Machine Learning Approach to Pattern Discovery in Symbolic Music.” Master’s Thesis, Montreal, Canada: McGill University. \ No newline at end of file diff --git a/_publications/2019/de Reuse_Pattern_Clustering_in_Monophonic_Music_by_Learning_a_Non-Linear_Embedding_from_Human_Annotations_2019.md b/_publications/2019/de Reuse_Pattern_Clustering_in_Monophonic_Music_by_Learning_a_Non-Linear_Embedding_from_Human_Annotations_2019.md deleted file mode 100644 index c0a377a1..00000000 --- a/_publications/2019/de Reuse_Pattern_Clustering_in_Monophonic_Music_by_Learning_a_Non-Linear_Embedding_from_Human_Annotations_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Reuse, Timothy de, and Ichiro Fujinaga. 2019a. “Pattern Clustering in Monophonic Music by Learning a Non-Linear Embedding from Human Annotations.” In Proceedings of the 20th International Society for Music Information Retrieval Conference, 761–68. Delft, Netherlands. \ No newline at end of file diff --git a/_publications/2019/de Reuse_Robust_transcript_alignment_on_medieval_chant_manuscripts_2019.md b/_publications/2019/de Reuse_Robust_transcript_alignment_on_medieval_chant_manuscripts_2019.md deleted file mode 100644 index 9faeef14..00000000 --- a/_publications/2019/de Reuse_Robust_transcript_alignment_on_medieval_chant_manuscripts_2019.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2019 -year: 2019 ---- - -Reuse, Timothy de, and Ichiro Fujinaga. 2019b. “Robust Transcript Alignment on Medieval Chant Manuscripts.” In Proceedings of the 2nd International Workshop on Reading Music Systems. Delft, Netherlands. \ No newline at end of file diff --git a/_publications/2020/Daigle_Evaluation_of_Optical_Music_Recognition_Software_2020.md b/_publications/2020/Daigle_Evaluation_of_Optical_Music_Recognition_Software_2020.md deleted file mode 100644 index 068b5ff4..00000000 --- a/_publications/2020/Daigle_Evaluation_of_Optical_Music_Recognition_Software_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Daigle, Alexandre. 2020. “Evaluation of Optical Music Recognition Software.” Master’s Thesis, Montreal, QC: McGill University. \ No newline at end of file diff --git a/_publications/2020/Desmond_Computer-aided_Analysis_of_Sonority_in_the_French_Motet_Repertory,_c._1300-1350_2020.md b/_publications/2020/Desmond_Computer-aided_Analysis_of_Sonority_in_the_French_Motet_Repertory,_c._1300-1350_2020.md deleted file mode 100644 index feea4b63..00000000 --- a/_publications/2020/Desmond_Computer-aided_Analysis_of_Sonority_in_the_French_Motet_Repertory,_c._1300-1350_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Desmond, Karen, Emily Hopkins, Samuel Howes, and Julie E. Cumming. 2020. “Computer-Aided Analysis of Sonority in the French Motet Repertory, c. 1300-1350.” Music Theory Online 26 (4):26.4.2. \ No newline at end of file diff --git "a/_publications/2020/Desmond_Next_Steps_for_Measuring_Polyphony\342\200\223A_Prototype_Editor_for_Encoding_Mensural_Music_2020.md" "b/_publications/2020/Desmond_Next_Steps_for_Measuring_Polyphony\342\200\223A_Prototype_Editor_for_Encoding_Mensural_Music_2020.md" deleted file mode 100644 index 9acdd533..00000000 --- "a/_publications/2020/Desmond_Next_Steps_for_Measuring_Polyphony\342\200\223A_Prototype_Editor_for_Encoding_Mensural_Music_2020.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Desmond, Karen, Andrew Hankinson, Laurent Pugin, Juliette Regimbal, Craig Sapp, and Martha E. Thomae. 2020. “Next Steps for Measuring Polyphony–A Prototype Editor for Encoding Mensural Music.” In Music Encoding Conference Proceedings 26-29 May, 2020, 121–24. Tufts University, Boston. http://dx.doi.org/10.17613/5k88-9z02. \ No newline at end of file diff --git a/_publications/2020/Ju_Automatic_Chord_Labelling:_A_Figured_Bass_Approach_2020.md b/_publications/2020/Ju_Automatic_Chord_Labelling:_A_Figured_Bass_Approach_2020.md deleted file mode 100644 index 08f0835f..00000000 --- a/_publications/2020/Ju_Automatic_Chord_Labelling:_A_Figured_Bass_Approach_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Ju, Yaolong, Sylvain Margot, Cory McKay, and Ichiro Fujinaga. 2020a. “Automatic Chord Labelling: A Figured Bass Approach.” In 7th International Conference on Digital Libraries for Musicology, 27–31. DLfM 2020. New York, NY: Association for Computing Machinery. https://doi.org/10.1145/3424911.3425513. \ No newline at end of file diff --git a/_publications/2020/Ju_Automatic_Figured_Bass_Annotation_Using_the_New_Bach_Chorales_Figured_Bass_Dataset_2020.md b/_publications/2020/Ju_Automatic_Figured_Bass_Annotation_Using_the_New_Bach_Chorales_Figured_Bass_Dataset_2020.md deleted file mode 100644 index f1d5248b..00000000 --- a/_publications/2020/Ju_Automatic_Figured_Bass_Annotation_Using_the_New_Bach_Chorales_Figured_Bass_Dataset_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Ju, Yaolong, Sylvain Margot, Cory McKay, Luke Dahn, and Ichiro Fujinaga. 2020. “Automatic Figured Bass Annotation Using the New Bach Chorales Figured Bass Dataset.” In Proceedings of the International Society for Music Information Retrieval Conference, 640–46. \ No newline at end of file diff --git a/_publications/2020/Ju_Figured_Bass_Encodings_for_Bach_Chorales_in_Various_Symbolic_Formats:_A_Case_Study_2020.md b/_publications/2020/Ju_Figured_Bass_Encodings_for_Bach_Chorales_in_Various_Symbolic_Formats:_A_Case_Study_2020.md deleted file mode 100644 index d1895a05..00000000 --- a/_publications/2020/Ju_Figured_Bass_Encodings_for_Bach_Chorales_in_Various_Symbolic_Formats:_A_Case_Study_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Ju, Yaolong, Sylvain Margot, Cory McKay, and Ichiro Fujinaga. 2020b. “Figured Bass Encodings for Bach Chorales in Various Symbolic Formats: A Case Study.” In Music Encoding Conference Proceedings 26-29 May, 2020, 71–73. Tufts University, Boston. https://hcommons.org/deposits/item/hc:31943. \ No newline at end of file diff --git "a/_publications/2020/N\303\241poles L\303\263pez_Harmalysis:_A_language_for_the_annotation_of_roman_numerals_in_symbolic_music_representations_2020.md" "b/_publications/2020/N\303\241poles L\303\263pez_Harmalysis:_A_language_for_the_annotation_of_roman_numerals_in_symbolic_music_representations_2020.md" deleted file mode 100644 index 88d85424..00000000 --- "a/_publications/2020/N\303\241poles L\303\263pez_Harmalysis:_A_language_for_the_annotation_of_roman_numerals_in_symbolic_music_representations_2020.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Nápoles López, Néstor, and Ichiro Fujinaga. 2020. “Harmalysis: A Language for the Annotation of Roman Numerals in Symbolic Music Representations.” In Music Encoding Conference Proceedings 26-29 May, 2020, 83–85. Tufts University, Boston. https://hcommons.org/deposits/item/hc:31951. \ No newline at end of file diff --git "a/_publications/2020/N\303\241poles L\303\263pez_On_Local_Keys,_Modulations,_and_Tonicizations:_A_Dataset_and_Methodology_for_Evaluating_Changes_of_Key_2020.md" "b/_publications/2020/N\303\241poles L\303\263pez_On_Local_Keys,_Modulations,_and_Tonicizations:_A_Dataset_and_Methodology_for_Evaluating_Changes_of_Key_2020.md" deleted file mode 100644 index c051af40..00000000 --- "a/_publications/2020/N\303\241poles L\303\263pez_On_Local_Keys,_Modulations,_and_Tonicizations:_A_Dataset_and_Methodology_for_Evaluating_Changes_of_Key_2020.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Nápoles López, Néstor, Laurent Feisthauer, Florence Levé, and Ichiro Fujinaga. 2020. “On Local Keys, Modulations, and Tonicizations: A Dataset and Methodology for Evaluating Changes of Key.” In International Conference on Digital Libraries for Musicology, 18–26. Montréal, QC: Association for Computing Machinery. https://doi.org/10.1145/3424911.3425515. \ No newline at end of file diff --git a/_publications/2020/Regimbal_IIIF-based_lyric_and_neume_editor_for_square-notation_manuscripts_2020.md b/_publications/2020/Regimbal_IIIF-based_lyric_and_neume_editor_for_square-notation_manuscripts_2020.md deleted file mode 100644 index e60c9bde..00000000 --- a/_publications/2020/Regimbal_IIIF-based_lyric_and_neume_editor_for_square-notation_manuscripts_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Regimbal, Juliette, Gabriel Vigliensoni, Caitlin Hutnyk, and Ichiro Fujinaga. 2020. “IIIF-Based Lyric and Neume Editor for Square-Notation Manuscripts.” In Music Encoding Conference Proceedings 26-29 May, 2020, 15–18. Tufts University, Boston. http://dx.doi.org/10.17613/d41w-n008. \ No newline at end of file diff --git "a/_publications/2020/Tard\303\263n_Automatic_Staff_Reconstruction_within_SIMSSA_Project_2020.md" "b/_publications/2020/Tard\303\263n_Automatic_Staff_Reconstruction_within_SIMSSA_Project_2020.md" deleted file mode 100644 index 706b33ae..00000000 --- "a/_publications/2020/Tard\303\263n_Automatic_Staff_Reconstruction_within_SIMSSA_Project_2020.md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Tardón, Lorenzo J., Isabel Barbancho, Ana M. Barbancho, and Ichiro Fujinaga. 2020. “Automatic Staff Reconstruction within SIMSSA Project.” Applied Sciences 10:2468. \ No newline at end of file diff --git a/_publications/2020/Thomae_Retrieving_Music_Semantics_from_Optical_Music_Recognition_by_Machine_Translation_2020.md b/_publications/2020/Thomae_Retrieving_Music_Semantics_from_Optical_Music_Recognition_by_Machine_Translation_2020.md deleted file mode 100644 index 7bb0f0ce..00000000 --- a/_publications/2020/Thomae_Retrieving_Music_Semantics_from_Optical_Music_Recognition_by_Machine_Translation_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Thomae, Martha E., Antonio Ríos-Vila, Jorge Calvo-Zaragoza, David Rizo, and Jose M. Iñesta. 2020. “Retrieving Music Semantics from Optical Music Recognition by Machine Translation.” In Music Encoding Conference Proceedings 26-29 May, 2020, 19–24. Tufts University, Boston. http://dx.doi.org/10.17613/605z-nt78. \ No newline at end of file diff --git a/_publications/2020/Upham_Auditory_Streaming_Complexity_and_Renaissance_Mass_Ordinary_Cycles_2020.md b/_publications/2020/Upham_Auditory_Streaming_Complexity_and_Renaissance_Mass_Ordinary_Cycles_2020.md deleted file mode 100644 index d95cce55..00000000 --- a/_publications/2020/Upham_Auditory_Streaming_Complexity_and_Renaissance_Mass_Ordinary_Cycles_2020.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2020 -year: 2020 ---- - -Upham, Finn, and Julie Cumming. 2020. “Auditory Streaming Complexity and Renaissance Mass Ordinary Cycles.” Empirical Musicology Review 15 (3–4):202–22. \ No newline at end of file diff --git a/_publications/2021/Cumming_Contrapuntal_Style:_Pierre_de_la_Rue_vs._Josquin_des_Prez_2021.md b/_publications/2021/Cumming_Contrapuntal_Style:_Pierre_de_la_Rue_vs._Josquin_des_Prez_2021.md deleted file mode 100644 index 0f889adb..00000000 --- a/_publications/2021/Cumming_Contrapuntal_Style:_Pierre_de_la_Rue_vs._Josquin_des_Prez_2021.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2021 -year: 2021 ---- - -Cumming, Julie, Cory McKay, Peter Schubert, Néstor Nápoles López, and Sylvain Margot. 2021. “Contrapuntal Style: Pierre de La Rue vs. Josquin Des Prez.” In Pierre de La Rue Studies, edited by David Burn and Honey Meconi. \ No newline at end of file diff --git a/_publications/2021/Cumming_Using_Corpus_Studies_to_Find_the_Origins_of_the_Madrigal_2021.md b/_publications/2021/Cumming_Using_Corpus_Studies_to_Find_the_Origins_of_the_Madrigal_2021.md deleted file mode 100644 index c2614301..00000000 --- a/_publications/2021/Cumming_Using_Corpus_Studies_to_Find_the_Origins_of_the_Madrigal_2021.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2021 -year: 2021 ---- - -Cumming, Julie, and Cory McKay. 2021. “Using Corpus Studies to Find the Origins of the Madrigal.” In Proceedings of the Conference Future Directions of Music Cognition. The Ohio State University, Columbus, US (virtual). \ No newline at end of file diff --git a/_publications/2021/Hanssian_Music_demixing_with_the_sliCQ_transform_2021.md b/_publications/2021/Hanssian_Music_demixing_with_the_sliCQ_transform_2021.md deleted file mode 100644 index 688738bf..00000000 --- a/_publications/2021/Hanssian_Music_demixing_with_the_sliCQ_transform_2021.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2021 -year: 2021 ---- - -Hanssian, Sevag. 2021. “Music Demixing with the SliCQ Transform.” In Proceedings of the MDX Workshop. https://arxiv.org/abs/2112.05509v1. \ No newline at end of file diff --git a/_publications/2021/Thomae_The_Guatemalan_Choirbooks:_Facilitating_Preservation,_Performance,_and_Study_of_the_Colonial_Repertoire_2021.md b/_publications/2021/Thomae_The_Guatemalan_Choirbooks:_Facilitating_Preservation,_Performance,_and_Study_of_the_Colonial_Repertoire_2021.md deleted file mode 100644 index 99403c43..00000000 --- a/_publications/2021/Thomae_The_Guatemalan_Choirbooks:_Facilitating_Preservation,_Performance,_and_Study_of_the_Colonial_Repertoire_2021.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -presentation_year: 2021 -year: 2021 ---- - -Thomae, Martha E. 2021. “The Guatemalan Choirbooks: Facilitating Preservation, Performance, and Study of the Colonial Repertoire.” In Christian Music Traditions in the Americas, edited by Andrew Shenton and Joanna Smolko. New York: Rowman & Littlefield. \ No newline at end of file diff --git a/_publications_deprecated/Articles_and_Conference_Proceedings.md b/_publications_deprecated/Articles_and_Conference_Proceedings.md deleted file mode 100644 index e458ff0d..00000000 --- a/_publications_deprecated/Articles_and_Conference_Proceedings.md +++ /dev/null @@ -1,136 +0,0 @@ ---- -layout: page -title: Articles and Conference Proceedings - ---- -Devaney, J., J. Wild, P. Schubert, I. Fujinaga. 2010. Exploring the relationship between voice leading, harmony, and intonation in a cappella SATB vocal ensembles. _Proceedings of the International Conference on Music Perception and Cognition._ Seattle. - -Angeles, B., C. McKay, and I. Fujinaga. 2010. Discovering Metadata Inconsistencies. _Proceedings of the Conference of the International Society for Music Information Retrieval._ Utrecht, Netherlands. - -Conklin, D. and M. Bergeron. 2010. Discovery of contrapuntal patterns. _Proceedings of the Conference of the International Society for Music Information Retrieval._ Utrecht, Netherlands. - -Hankinson, A., L. Pugin, and I. Fujinaga. 2010. An interchange format for optical music recognition applications. _Proceedings of the Conference of the International Society for Music Information Retrieval._ Utrecht, Netherlands. - -Hockman, J., and I. Fujinaga. Fast vs Slow: Learning Tempo Octaves from User Data. _Proceedings of the Conference of the International Society for Music Information Retrieval._ Utrecht, Netherlands. - -McKay, C., J. A. Burgoyne, J. Hockman, J. B. L. Smith, G. Vigliensoni, and I. Fujinaga. 2010. Evaluating the Genre Classification Performance of Lyrical Features Relative to Audio, Symbolic and Cultural Features. _Proceedings of the Conference of the International Society for Music Information Retrieval._ Utrecht, Netherlands. - -Vigliensoni, G., C. McKay, and I. Fujinaga. 2010. Using jWebMiner 2.0 to Improve Music Classification Performance by Combining Different Types of Features Mined from the Web. _Proceedings of the Conference of the International Society for Music Information Retrieval._ Utrecht, Netherlands. - -Canazza, S., A. Camurri, and I. Fujinaga. 2010. Ethnic music audio documents: From preservation to fruition. _Signal Processing_ 90 (4): 977–80. - -McKay, C., J. A. Burgoyne, J. Thompson, and I. Fujinaga. 2009. Using ACE XML 2.0 to store and share feature, instance and class data for musical classification. _Proceedings of the International Society for Music Information Retrieval Conference._ Kobe, Japan. - -Thompson, J., C. McKay, J. A. Burgoyne, and I. Fujinaga. 2009. Additions and improvements to the ACE 2.0 music classifier. _Proceedings of the International Society for Music Information Retrieval Conference._ Kobe, Japan. - -Hankinson, A., L. Pugin, I. Fujinaga. 2009. Interfaces for document representation in digital music libraries. _Proceedings of the International Society for Music Information Retrieval Conference._ Kobe, Japan. - -Ouyang, Y., J. A. Burgoyne, L. Pugin, and I. Fujinaga. 2009. Complex layout analysis of Medieval music manuscripts for information extraction and optical recognition. _Proceedings of the International Computer Music Conference._ Montreal. - -McKay, C., and I. Fujinaga. 2009. jMIR: Tools for automatic music classification. _Proceedings of the International Computer Music Conference._ Montreal. - -Hockman, J., M. Wanderley, and I. Fujinaga. 2009. Real-time phase vocoder manipulation by runner's pace. _Proceedings of the New Interface for Musical Expression Conference._ Pittsburgh. - -Pugin, L., A. Hankinson, and I. Fujinaga. 2009. Building a comprehensive digital library for nineteenth-century Swiss composers. _International Association of Music Libraries Conference._ Amsterdam. - -Dalitz, C., M. Droettboom, B. Czerwinski, and I. Fujinaga. 2008. A comparative study of staff removal algorithms. _IEEE Transactions on Pattern Analysis and Machine Intelligence_ 30 (5): 753–66. - -Burgoyne, J. A., J. Devaney, L. Pugin, and I. Fujinaga. 2008. Enhanced bleedthrough correction for early music documents with recto-verso registration. _Proceedings of the International Conference on Music Information Retrieval._ Philadelphia. - -Pugin, L., J. Hockman, J. A. Burgoyne, and I. Fujinaga. 2008. Gamera versus Aruspix: Two optical music recognition approaches. _Proceedings of the International Conference on Music Information Retrieval._ Philadelphia. - -McKay, C., and I. Fujinaga. 2008. Combining features extracted from audio, symbolic and cultural sources. _Proceedings of the International Conference on Music Information Retrieval._ Philadelphia. 597–602. - -Devaney, J., and I. Fujinaga. 2008. Assessing the role of sensory consonance in trained musicians' tuning preferences. _Proceedings of the International Conference on Music Perception and Cognition._ Sapporo. - -Goebl, W., and I. Fujinaga. 2008. Do key-bottom sounds distinguish piano tones? _Proceedings of the International Conference on Music Perception and Cognition._ Sapporo. - -Fujinaga, I., and C. McKay. 2008. ACE: Autonomous Classification Engine. _Proceedings of the International Conference on Music Perception and Cognition._ Sapporo. - -Burgoyne, J. A., L. Pugin, G. Eustace, and I. Fujinaga. 2007. A comparative survey of image binarisation algorithms for optical recognition on degraded musical sources. _Proceedings of International Conference on Music Information Retrieval._ Vienna. 509–12. - -Burgoyne, J. A., L. Pugin, C. Kereliuk, and I. Fujinaga. 2007. A cross-validated study of modelling strategies for automatic chord recognition in audio. _Proceedings of International Conference on Music Information Retrieval._ Vienna. 251–4. - -Lai, C., I. Fujinaga, D. Descheneau, M. Frishkopf, J. Riley, J. Hafner, and B. McMillan. 2007. Metadata infrastructure of sound recordings. _Proceedings of International Conference on Music Information Retrieval._ Vienna. 157–8. - -Li, B., S. de Leon, and I. Fujinaga. 2007. Alternative digitization approach for stereo phonograph records using optical audio reconstruction. _Proceedings of International Conference on Music Information Retrieval._ Vienna. 165–6. - -McKay, C., J. Frank, and J. Turel. 2007. Audiofile: No box, no limit. Presented at _Pop & Policy 2007: Music Fast Forward._ - -McKay, C., and I. Fujinaga. 2007. jWebMiner: A web-based feature extractor. _Proceedings of the International Conference on Music Information Retrieval._ 113–4. - -Pugin, L., J. A. Burgoyne, and I. Fujinaga. 2007. MAP adaptation to improve optical music recognition of early music documents using hidden Markov models. _Proceedings of International Conference on Music Information Retrieval._ Vienna. 513–6. - -Pugin, L., J. A. Burgoyne, and I. Fujinaga. 2007. Reducing costs for digitising early music with dynamic adaptation. _Proceedings of the European Conference on Digital Libraries._ Budapest, Hungary. 471–4. - -Pugin, L., J. A. Burgoyne, and I. Fujinaga. 2007. Goal-directed evaluation for the improvement of optical music recognition of early music prints. _Proceedings of the Joint Conference on Digital Libraries._ Vancouver, BC. 303–4. - -McKay, C., and I. Fujinaga. 2006. jSymbolic: A feature extractor for MIDI files. _Proceedings of the International Computer Music Conference._ New Orleans, LA. 302–5. - -Li, B., J. A. Burgoyne, and I. Fujinaga. 2006. Extending Audacity as a grouth-truth annotation tool. _Proceedings of the International Conference on Music Information Retrieval._ Victoria, BC. 379–80. - -Fiebrink, R., and I. Fujinaga. 2006. Feature selection pitfalls and music classification. _Proceedings of the International Conference on Music Information Retrieval._ Victoria, BC. 340–1. - -McEnnis, D., C. McKay, and I. Fujinaga. 2006. jAudio: Additions and improvements. _Proceedings of the International Conference on Music Information Retrieval._ Victoria, BC. 385–6. - -McEnnis, D., C. McKay, and I. Fujinaga. 2006. Overview of OMEN. _Proceedings of the International Conference on Music Information Retrieval._ Victoria, BC. 7–12. - -McKay, C., and I. Fujinaga. 2006. Musical genre classification: Is it worth pursuing and how can it be improved? _Proceedings of the International Conference on Music Information Retrieval._ Victoria, BC. 101–6. - -McKay, C., and I. Fujinaga. 2006. Style-independent computer-assisted exploratory analysis of large music collections. Presented at the _Joint Meeting of the American Musicological Society and the Society for Music Theory._ - -McKay, C., D. McEnnis, and I. Fujinaga. 2006. A large publicly accessible prototype audio database for music research. _Proceedings of the International Conference on Music Information Retrieval._ Victoria, BC. 160–3. - -Lai, C., and I. Fujinaga. 2006. Data dictionary: Metadata for phonograph records. _Proceedings of the International Conference on Music Information Retrieval._ Victoria, BC. 1–6. - -Sinclair, S., M. Droettboom, and I. Fujinaga. 2006. Lilypond for pyScore: Approaching a universal translator for music notation. _Proceedings of the International Conference on Music Information Retrieval._ Victoria, BC. 387–8. - -Lai, C., and I. Fujinaga. 2006. Metadata data dictionary for analog sound recordings. _Proceedings of the Joint Conference on Digital Libraries._ Chapel Hill, NC. 344. - -Fujinaga, I. and D. McEnnis. 2006. On-demand metadata extraction network (OMEN). 2006. _Proceedings of the Joint Conference on Digital Libraries._ Chapel Hill, NC. 346. - -Lai, C., and I. Fujinaga. 2006. Archiving David Edelberg's Handel LP Collection: Production workflow and issues in data acquisition. _Proceedings of the Archiving Conference._ Ottawa, Canada. 40–4. - -Li, B., C. Lai, and I. Fujinaga. 2006. Technical issues in digitization of large online collections of phonograph records. _Proceedings of the Archiving Conference._ Ottawa, Canada. 151–5. - -Choudhury, G. S., T. DiLauro, R. Ferguson, M. Droettboom, and I. Fujinaga. 2006. Document recognition for a million books. _D-Lib Magazine_ 12 (3). - -McKay, C., R. Fiebrink, D. McEnnis, B. Li, and I. Fujinaga. 2005. ACE: A framework for optimizing music classification. _Proceedings of the International Conference on Music Information Retrieval._ 42–9. - -Lai, C., B. Li, and I. Fujinaga. 2005. Preservation digitization of David Edelberg's Handel LP collection: A pilot project. _Proceedings of the International Conference on Music Information Retrieval._ 570–5. - -McEnnis, D. C. McKay, I. Fujinaga, and P. Depalle. 2005. jAudio: A feature extraction library. _Proceedings of the International Conference on Music Information Retrieval._ 600–3. - -Fiebrink, R., C. McKay, and I. Fujinaga. 2005. Combining D2K and JGAP for efficient feature weighting for classification tasks in music information retrieval. _Proceedings of the International Conference on Music Information Retrieval._ 510–3. - -Sinyor, E., C. McKay, R. Fiebrink, D. McEnnis, and I. Fujinaga. 2005. Beatbox classification using ACE. _Proceedings of the International Conference on Music Information Retrieval._ 672–5. - -McKay, C., and I. Fujinaga. 2005. The Bodhidharma system and the results of the MIREX 2005 symbolic genre classification contest. Presented at the _International Conference on Music Information Retrieval._ - -McKay, C., D. McEnnis, R. Fiebrink, and I. Fujinaga. 2005. ACE: A general-purpose classification ensemble optimization framework. _Proceedings of the International Computer Music Conference._ 161–4. - -Lai, C., I. Fujinaga, and C. Leive. 2005. The challenges in developing digital collections of phonograph records. _Proceedings of the Joint Conference on Digital Libraries._ 332–3. - -Lai, C., I. Fujinaga, and C. Leive. 2005. Metadata for phonograph records: Facilitating new forms of use and access to analog sound recordings. _Proceedings of the Joint Conference on Digital Libraries._ 385. - -McKay, C., and I. Fujinaga. 2005. Automatic music classification and the importance of instrument identification. _Proceedings of the Conference on Interdisciplinary Musicology._ 87–9. - -McKay, C. 2005. Approaches to overcoming problems in interactive musical performance systems. Presented at the _McGill Graduate Students Society Symposium._ - -Fujinaga, I., and S. Weiss. 2004. Music. In _Blackwell Companion to Digital Humanities_, eds. S. Schreibman, R. Siemens, and J. Unsworth, 97–107. Oxford: Blackwell Publishing. - -Fujinaga, I. 2004. Staff detection and removal. In _Visual Perception of Music Notation_, ed. S. George, 1–39. Hershey, PA: Idea Group Inc. - -Droettboom, M., and I. Fujinaga. 2004. Symbol-level groundtruthing environment for OMR. _Proceedings of the International Conference on Music Information Retrieval._ 497–500. - -McKay, C. 2004. Automatic genre classification as a study of the viability of high-level features for music classification. _Proceedings of the International Computer Music Conference._ 367–70. - -McKay, C., and I. Fujinaga. 2004. Automatic genre classification using large high-level musical feature sets. _Proceedings of the International Conference on Music Information Retrieval._ 525–530. - -McKay, C. 2004. Issues in automatic musical genre classification. Presented at the _McGill Graduate Students Society Symposium._ - -Tindale, A., A. Kapur, G. Tzanetakis, and I. Fujinaga. 2004. Retrieval of percussion gestures using timbre classification techniques. _Proceedings of the International Conference on Music Information Retrieval._ 541–5. - -Zadel, M., and I. Fujinaga. 2004. Web Services for music information retrieval. _Proceedings of the International Conference on Music Information Retrieval._ 478–83. - -Tindale, A., A. Kapur, G. Tzanetakis, and I. Fujinaga. 2004. Towards timbre recognition of percussive sounds. _Proceedings of the International Computer Music Conference._ 592–5. diff --git a/_publications_deprecated/publications_deprecated.md b/_publications_deprecated/publications_deprecated.md deleted file mode 100644 index 21c53f00..00000000 --- a/_publications_deprecated/publications_deprecated.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -layout: page -title: Publications -permalink: /publications/ ---- - -[Articles and Conference Proceedings]({{ site.url }}/publications/Articles_and_Conference_Proceedings) - -[Posters]({{ site.url }}/publications/Posters) diff --git a/_research/Audio_Quality.md b/_research/Audio_Quality.md deleted file mode 100644 index e19c8ea8..00000000 --- a/_research/Audio_Quality.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -layout: page -title: Audio Quality -tab: Research -type: project ---- - -The envisioned scientific research focusing on the perceptual evaluation of audio quality promises to address questions for which experts in the audio engineering industry are demanding answers. The need to know how to determine audio quality of past and current systems, and to predict the quality of reproduction based upon archival technologies, is called for by many international organizations. Though standards exist, there are still unanswered questions regarding best practice, especially when reference recordings are not available. The psychological measurement techniques that will be employed are well established in their application to other fields, such as in the science of food quality evaluation; however, these methods have yet to be systematically applied to problems in audio recording, archives, and reproduction. diff --git a/_research/Automatic_Metadata_Extraction.md b/_research/Automatic_Metadata_Extraction.md deleted file mode 100644 index 7aa90d00..00000000 --- a/_research/Automatic_Metadata_Extraction.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: page -title: Workflow Management with Automatic Metadata Extraction -tab: Research -type: project ---- - -As libraries convert materials into digital formats, the need for efficient workflow management tools will increase. The significant human labor required for editing, inspecting, correcting, and "tagging" (with appropriate metadata) digital objects might inhibit libraries and other organizations from initiating large-scale digitization efforts. By developing the framework of workflow management tools, semi-automated tools will reduce the resource requirements for implementing large-scale digitization projects and provide enhanced search functionality. - -This research project will investigate developing an efficient and economical framework of tools to manage the workflow of large-scale digitization of musical materials. It aims to support the path from physical object and digitized material into a digital library repository by providing effective tools for perusing multimedia elements. The result of the process will include the audio files; both the images and the text of album covers, record labels, and liner notes; metadata about the recordings; images of scores and files in machine-readable format; and a database enabling the information to be searched and accessed via the web. - -An important component of the research is to minimize human intervention by automatically generating text and metadata from the captured images using document analysis and recognition techniques. Metadata extraction constitutes a major source of cost in most digitization projects. In the case of vinyl records, the possible sources for the metadata are the record label, album cover, or liner notes. For printed music, the sources for the metadata may be the cover page and the title page. For music manuscripts, external sources may need to be consulted. The challenge lies in locating the appropriate information and extracting it from these different sources. Since the required data may appear anywhere, automatic extraction of the data necessitates the deployment of intelligent document analysis. - -To implement the specialized document analysis required for this project, open-source software called [Gamera](http://gamera.informatik.hsnr.de/addons/ocr4gamera/index.html) (Droettboom et al. 2002) will be used. Gamera, developed by the applicant and others at the Johns Hopkins University over the last several years, is a toolkit for the creation of domain-specific structured document recognition applications by domain experts with limited programming experience. It allows a knowledgeable user to combine image processing and recognition tools in an easy-to-use, interactive, graphical scripting environment. The goal of the Gamera system is to leverage the user's knowledge of the target documents to create custom applications rather than attempting to meet the needs of diverse users through a monolithic application. The applications created by the user are suitable for use in a large-scale digitization project; they can be run in a batch-processing mode and easily integrated into a digitization framework. In order to create consistent names in the metadata, automated name authority control methodology developed at the Johns Hopkins University (DiLauro et al. 2001) will be added to Gamera. It is anticipated that this will also aid in the optical character recognition step, by providing a dictionary of names and their variants. The infrastructure will provide the sustained support needed for the continual development and the enhancement of Gamera software. -
    - -## References - -DiLauro, T., G. S. Choudhury, M. Patton, J. W. Warner, and E. W. Brown. 2001. Automated name authority control and enhanced searching in the Levy Collection. _D-Lib Magazine_ 7 (4). - -Droettboom, M., K. MacMillan, I. Fujinaga, G. S. Choudhury, T. DiLauro, M. Patton, and T. Anderson. 2002. Using Gamera for the recognition of cultural heritage materials. _Proceedings of the Joint Conference on Digital Libraries_. 11–7. diff --git a/_research/Automatic_Music_Classification.md b/_research/Automatic_Music_Classification.md deleted file mode 100644 index 603232ed..00000000 --- a/_research/Automatic_Music_Classification.md +++ /dev/null @@ -1,94 +0,0 @@ ---- -layout: page -title: Automatic Music Classification -tab: Research -type: project ---- - -## jMIR - -[jMIR](http://jmir.sourceforge.net/) is an open-source software suite implemented in Java for use in music information retrieval (MIR) research. It can be used to study music in both audio and symbolic formats as well as mine cultural information from the web and manage music collections. jMIR includes software for extracting features, applying machine learning algorithms and analyzing metadata. - -The primary emphasis of jMIR is on providing software for general research in automatic music classification and similarity analysis. The main goals of the project are as follows: - - -* Make sophisticated pattern recognition technologies accessible to music researchers with both technical and non-technical backgrounds. -* Eliminate redundant duplication of effort. -* Increase cooperation and communication between research groups. -* Facilitate iterative development and sharing of new MIR technologies. -* Facilitate objective comparisons of algorithms. -* Facilitate research combining high-level, low-level and cultural musical features (i.e. symbolic, audio and web-mined features). - -In order to meet these goals, all aspects of jMIR are open source and distributed free undr a GNU General Public License. The software is well-documented and include GUIs in order to increase general usability. A special emphasis has been placed on software architectures that facilitate extensibility for those technically inclined users who wish to modify or add to the software. - -jMIR was funded by a grant from the [Social Sciences and Humanities Research Council of Canada](http://www.sshrc-crsh.gc.ca/home-accueil-eng.aspx). - -Each of the components comprising the jMIR software suite may be used entirely separately or as an integrated whole. The components communicate with each other using files in either ACE XML or Weka ARFF formats. The components are as follows: -
    - -### Standardized File Format - -* [ACE XML](http://jmir.sourceforge.net/index_ACE_XML.html): A standardized set of file formats for representing feature values, feature metadata, instance labels and class ontologies. Work on new and significantly extended ACE XML 2.0 versions of these file formats is also ongoing. More details are available on the [ACE XML Development Page](http://www.music.mcgill.ca/~cmckay/NEMA/ACE_XML_Dev_Page.html). -
    - -### Data Mining and Machine Learning - -* [ACE](http://jmir.sourceforge.net/index_ACE.html): Pattern recognition software that utilizes meta-learning. Evaluates, trains and uses a variety of classifiers, classifier ensembles and dimensionality reduction algorithms based on the needs of each particular research problem. -
    - -### Feature Extraction - -* [jAudio](http://jmir.sourceforge.net/index_jAudio.html): Software for extracting low and high-level features from audio recordings. -* [jSymbolic](http://jmir.sourceforge.net/index_jSymbolic.html): Software for extracting high-level features from MIDI recordings. -* [jWebMiner](http://jmir.sourceforge.net/index_jWebMiner.html): Software for extracting cultural features from web text. -
    - -### Data and Metadata - -* [jMusicMetaManager](http://jmir.sourceforge.net/index_jMusicMetaManager.html): Software for profiling music collections and detecting metadata errors and redundancies. -* [Codaich](http://jmir.sourceforge.net/index_Codaich.html): A labeled database of MP3s for training, testing and evaluating MIR systems. -
    - -### Legacy - -* [Bodhidharma](http://jmir.sourceforge.net/index_Bodhidharma.html): MIREX 2005-winning software for classifying MIDI recordings by genre. The ancestor of ACE and jSymbolic. -
    - -## NEMA - -The [Networked Environment for Music Analysis (NEMA)](http://www.music-ir.org/?q=nema%2Foverview) project is a multinational and multidisciplinary cyber-infrastructure project for music information processing that builds upon and extends the music information retrieval research being conducted by the International Music Information Retrieval Systems Evaluation Laboratory (IMIRSEL) at the University of Illinois at Urbana-Champaign (UIUC). NEMA brings together the collective projects and the associated tools of six world leaders in the domains of music information retrieval (MIR), computational musicology (CM) and e-humanities research. The NEMA team aims to create an open and extensible web services-based resource framework that facilitates the integration of music data and analytic/evaluative tools that can be used by the global MIR and CM research and education communities on a basis independent of time or location. To help achieve this goal, the NEMA team will be working co-operatively with the UIUC-based and Mellon-funded [Software Environment for the Advancement of Scholarly Research (SEASR)](http://seasr.org/) project to exploit SEASR's expertise and technologies in the domains of data mining and web services-based resource framework development. - -The NEMA work at McGill is currently focused on expanding the [ACE XML file formats](http://www.music.mcgill.ca/~cmckay/NEMA/ACE_XML_Dev_Page.html) and developing software tools for parsing, writing and processing them, but [jMIR](http://jmir.sourceforge.net/) tools in general are being adapted for the project as well. - -NEMA is being funded through a generous grant from the [Scholarly Communications program](https://mellon.org/programs/scholarly-communications/) of the [Andrew W. Mellon Foundation](http://www.mellon.org/). -
    - -### Related Publications - -Available at [Cory McKay's publication page](http://www.music.mcgill.ca/~cmckay/projects.html). -
    - -### Advisor - -[Ichiro Fujinaga](http://www.music.mcgill.ca/~ich/) -
    - -### Graduate Students - -* [Cory McKay](http://www.music.mcgill.ca/~cmckay/) -* John Ashley Burgoyne -
    - -### Undergraduate Students - -* Jessica Thompson -
    - -### Links - -* [jMIR](http://jmir.sourceforge.net/) -* [NEMA](http://www.music-ir.org/?q=nema%2Foverview) -* [NEMA Wiki](http://nema.lis.uiuc.edu/wiki/index.php/Main_Page) -* [NEMA@McGill](http://www.music.mcgill.ca/~cmckay/NEMA/NEMA.html) -* [ACE XML Development Page](http://www.music.mcgill.ca/~cmckay/NEMA/ACE_XML_Dev_Page.html) -* [ACE XML Discussion Page](http://nema.lis.uiuc.edu/wiki/index.php/AXv2RDF) diff --git "a/_research/Centre_de_Recherche_sur_l'Interpr\303\251tation_au_Clavecin_(CRIC).md" "b/_research/Centre_de_Recherche_sur_l'Interpr\303\251tation_au_Clavecin_(CRIC).md" deleted file mode 100644 index 01a2f8b5..00000000 --- "a/_research/Centre_de_Recherche_sur_l'Interpr\303\251tation_au_Clavecin_(CRIC).md" +++ /dev/null @@ -1,6 +0,0 @@ ---- -layout: page -title: Centre de Recherche sur l'Interprétation au Clavecin (CRIC) -tab: Research -type: project ---- diff --git a/_research/Interlibrary_Communication.md b/_research/Interlibrary_Communication.md deleted file mode 100644 index 2b7f7616..00000000 --- a/_research/Interlibrary_Communication.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: page -title: Interlibrary Communication -tab: Research -type: project ---- - -This research project examines how to access the music data once they are stored. This problem arises even for new digitally-born materials. - -Since we cannot expect thousands of libraries worldwide to agree on the same database system or query system, the potential for applying the emerging technology called Web Services, which is designed to exchange information between different systems, will be investigated. The technology includes: Simple Object Access Protocol (SOAP), Web Services Description Language (WSDL), and Universal Description, Discovery, and Integration (UDDI). Based on the XML format, UDDI is used to register each institution's services; WSDL is used to describe the type of service, access protocol, and its location; and SOAP is used as the protocol to exchange information. - -The attractiveness of this technology for application in distributed digital libraries is that it assumes that each system (library) will be different. Web Services provide users with the "what, where, and how" to access information from disparate systems. This will be one of the key principal components in creating distributed digital libraries. This technology allows libraries to interconnect, rather than relying on one institution to collect everything (Lagoze and Fielding 1998). - -The final result will be easy access for library patrons through a library portal that is connected to other libraries via the Internet. Patrons will be able to access content such as score images, searchable score content, sound and video recordings without being concerned about the physical location of the digital object (Cruz and James 1999). - -Incorporation of Web Services for interlibrary communication has started with the development of protocols such as [Metadata Encoding & Transmission (METS), Metadata Object Description Schema (MODS)](http://www.loc.gov/standards/mods/) (Guenther and McCallum 2002), and [Search / Retrieve Web Service (SRW)](http://www.loc.gov/standards/sru/). With the computer resources of the infrastructure, further research and software development can be supported to integrate libraries and especially music libraries seamlessly. -
    - -## Metadata Infrastructure for Sound Recordings project - -This project is funded by the Social Sciences and Humanities Research Council of Canada [(SSHRC)](http://www.sshrc-crsh.gc.ca/) Image, Text, Sound and Technology [(ITST)](http://www.sshrc-crsh.gc.ca/funding-financement/programs-programmes/itst/research_grants-subventions_recherche-eng.aspx) program. The project aims to facilitate the formation of national and international networks of librarians, archivists, researchers, educators, and technologists to design and implement new models of digital multimedia archives and libraries. This prototype deals specifically with metadata of sound recordings. Although the project is limited to the domain of sound recordings and their accompanying material (album covers and liner notes), the solutions found in working with these complex materials will be applicable to other domains such as music scores, movies, and popular magazines. -
    - -## References - -Cruz, I. and K. James. 1999. A user interface for distributed multimedia database querying with mediator supported refinement. _Proceedings of the International Database Engineering and Applications Symposium_. 433–41. - -Guenther, R., and S. McCallum. 2002. New metadata standards for digital resources: MODS and METS. _Bulletin of the American Society for Information Science and Technology_ 29 (2): 12–5. - -Lagoze, C., and D. Fielding. 1998. Defining collections in distributed digital libraries. _D-Lib Magazine_ 5 (11). diff --git a/_research/LinkedMusic b/_research/LinkedMusic deleted file mode 100644 index 7cf9bc13..00000000 --- a/_research/LinkedMusic +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: page -title: LinkedMusic -tab: Research -type: project -link: https://linkedmusic.ca/ ---- diff --git a/_research/MltAC/Previous_Work_in_Optical_Audio_Reconstruction.md b/_research/MltAC/Previous_Work_in_Optical_Audio_Reconstruction.md deleted file mode 100644 index 8b37b13e..00000000 --- a/_research/MltAC/Previous_Work_in_Optical_Audio_Reconstruction.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -layout: page -title: Previous Work in Optical Audio Reconstruction -permalink: /research/The_McGill_Image-to-Audio_Conversion_Project_(MltAC)/:title/ ---- - -* [Lawrence Berkeley National Laboratories](http://irene.lbl.gov/) -* [University of Fribourg](http://visualaudio.project.eia-fr.ch/) diff --git a/_research/MltAC/The_McGill_Image-to-Audio_Conversion_Project_(MltAC).md b/_research/MltAC/The_McGill_Image-to-Audio_Conversion_Project_(MltAC).md deleted file mode 100644 index 136bebdb..00000000 --- a/_research/MltAC/The_McGill_Image-to-Audio_Conversion_Project_(MltAC).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: page -title: The McGill Image-to-Audio Conversion Project (MltAC) -tab: Research -type: project -permalink: /research/:title/ ---- - -The McGill Image to Audio Conversion (MItAC) research project focuses on the access to and the long-term preservation of the phonograph sound recordings. There are a large number of damaged phonograph records that are unable to be played or digitized by using the traditional turntable systems. An alternative approach is to optically scan the phonograph disc to create the 2D or 3D digital image of a damaged record and subsequently convert the scanned image to audio for access. Because the standard digitization and preservation workflow for phonograph records are still under exploration, this approach, which is often called optical audio reconstruction (OAR), has the advantage of minimal physical contact with the records during the experiments with various digitization and sound restoration techniques. - -There have been other relevant research efforts in OAR conducted by Lawrence Berkeley National Laboratory in California and University of Fribourg in Switzerland. These efforts are only towards the mono phonograph records, namely the 78rpm or the wax cylinder records. See [Previous Work in Optical Audio Reconstruction]({{ site.url }}/research/The_McGill_Image-to-Audio_Conversion_Project_(MltAC)/Previous_Work_in_Optical_Audio_Reconstruction/). - -Our research, in contrast, aims mainly at the restoration of the 33rpm stereo recods. The measurement equipment that we use is a microscope that adopts white-light interferometry, the Wyko NT8000 Series Profiler, which is controlled by the Wyko Vision Software, both purchased from [the Veeco Instruments](http://www.veeco.com/). See System Hardware and Software. - -The Documentation consists of the analyses of specific issues and the descriptions of algorithms developed with the links to the source codes (Algorithms and Analyses), the geometric information, metadata, and other information of the phonograph records that are relevant to our experiments (Disc Information), the data format specifications used in all our experiments and analyses and the utilities developed by us to facilitate the measurements and analyses (Data Formats and Utilities), the documentation of the optical profiler and its software usage (System Hardware and Software), along with the screenshots, audio, and video resources of our experimental results and demos (Multimedia). Various specialized terms, mainly from the profiler specifications and our inventions, are used in all the documentations. They are clarified in Glossary. - -The Experiments keep the records and the data of the important experiments that we made, including the measurements that lead to major results (Measurements), the exploratory tests regarding the functionality and mechanics of the hardware and software of our profiler (System Functionality and Performance), and all the temporary data obtained from experiments (Temporary Data). - -The Annotated Bibliography lists all relevant literature on Optical Audio Restoration, Phonograph, and Interferometry with our brief highlights. - -The Links point to the resources outside this Wiki, including the work blogs of our Team, which serve as daily notifications of the progresses and updates on the Wiki, and the bug reports of the Wyko Vision software. - -Mainly supported by Daniel Langlois Foundation Grant, this project proceeds in parallel with the digitization of McGill music library's 78rpm Jazz recording collection (funded by a three-year FQRSC research grant) and digitization of a unique collection of Handel LP recordings, the David Edelberg Handel LP Collection (funded by McGill's Richard M. Tomlinson Digital Library Innovation Awards). - -For more information of us, see Team. diff --git a/_research/OMR/OMR_for_Plainchant.md b/_research/OMR/OMR_for_Plainchant.md deleted file mode 100644 index 52e13dd8..00000000 --- a/_research/OMR/OMR_for_Plainchant.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -layout: page -title: OMR for Plainchant -tab: Research -permalink: /research/omr/OMR_for_Plainchant/ -redirect_from: - - /research/omr/OMR_for_Plainchant - - /research/omr/OMR_for_Plainchant/ ---- -
    - -## Project Overview - -Plainchant is a large collection of monophonic songs, which exist as one of the oldest notated music in the world. The music has been part of Christian liturgy since the Middle Ages and has formed the basis for much Western music that followed. Canada is positioned to become a world leader for studying plainchant. Combining information from the University of Western Ontario's CANTUS database, one of the world's foremost databases of metadata about plainchant, with our expertise as two of Canada's leading scholars in optical music recognition and early music, we are developing a network and database infrastructure and software tools that will be able to automatically extract the musical and textual content from digitised plainchant manuscripts and to index that content in an internationally-accessible distributed database. This recognition system will free libraries from the prohibitive cost of expert human labour needed to transcribe these specialised manuscripts manually and will allow performers and coaches, such as those at the Gregorian Institute of Canada, to expand the repertoire and improve the historical fidelity of their recordings and performances. - -Plainchant manuscripts, copied by hand from the ninth through the sixteenth centuries, constitute some of the richest source material available for musicological scholarship and historically informed music performance. Unfortunately, because these sources are spread throughout libraries and religious institutions worldwide, it is almost impossible for scholars to form a complete picture of the development of plainchant regionally and chronologically. Facsimiles are sometimes available for local libraries to purchase, but they tend to be exceedingly expensive and, like other paper documents, cannot be searched or indexed against other sources; microfilms are more affordable and more often available but suffer the same difficulty of searching and indexing. Many chants appear in multiple variations across numerous manuscripts, and thus searchable, cross-referenced digital libraries of musical content will be especially valuable for these documents. The main goal of our project is to facilitate the creation of such a digital library by introducing optical music recognition (OMR) tools to reduce the need for human transcription, much as optical character recognition (OCR) has done for text documents. - -As part of our most recent SSHRC Standard grant, we have developed an OMR system that attains a 97 percent recognition rate for printed symbols from later Western music notation, and with our current SSHRC Image, Text, Sound, and Technology grant, we are developing a system capable of recognising printed lyrics. Our new project will begin by extending this system to recognise printed square-note neumes, which became the most common system of hand-written notation for plainchant around 1200. Although this notational system is centuries old, it continues to be used today when publishing compilations of liturgical plainchant, e.g., the Liber Usualis, a common reference book for practising church musicians and plainchant scholars. After determining the best strategy for recognising printed neumes, we will extend the work to hand-written sources, focusing on three distinct notational styles: hand-written square-note neumes, analogous to printed chant notation; Aquitanian neumes, an older, staffless notational style in which individual neumes are composed of separated strokes and points; and Gothic neumes, variations on the square-note neume shapes that we expect to be more difficult to recognise. - -Interdisciplinary in its very nature, this project will bring together researchers at all states of their careers, from both musicology and computer engineering. In order to provide the best possible training environment for students and in order to strengthen the connection between these two disciplines, the project will include regular presentations of intermediate results to all communities involved. When complete, it will have produced infrastructure and tools ready for musicians and others to generate and share digital libraries comprising centuries of plainchant and will open a wide range of new avenues for musicological research. -
    - -## Researchers - -* [Ichiro Fujinaga](http://music.mcgill.ca/~ich) -* [Julie Cumming](http://www.mcgill.ca/music/about-us/bio/julie-e-cumming) -
    - -## Doctoral Students - -* Ashley Burgoyne -* Remi Chiu -* [Andrew Hankinson](https://andrewhankinson.info/) -
    - -## Masters & Undergraduate Students - -* [Gabriel Vigliensoni](http://vigliensoni.com/blog/) -* Jamie Klassen -* Wendy Liu -* Saining Li -* Jessica Thompson -* Laura Osterlund -* Caylin Smith diff --git a/_research/OMR/Optical_Music_Recognition_(OMR).md b/_research/OMR/Optical_Music_Recognition_(OMR).md deleted file mode 100644 index a4fcd8f6..00000000 --- a/_research/OMR/Optical_Music_Recognition_(OMR).md +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: page -title: Optical Music Recognition (OMR) -tab: Research -type: project -permalink: /research/OMR/ ---- - -Optical Music Recognition (OMR) is the process of converting scanned images of pages of music into computer readable and manipulable symbols. We focus on creating music recognition tools for libraries, archives and musicologists, and specialize in working with early music notation. -
    - -## Projects - -* [Optical Neume Recognition Project](https://www.cs.bham.ac.uk/~aps/research/projects/neumes/) (2012 - 2014) -* [Search the Liber Usualis]({{ site.url }}/research/omr/Search_the_Liber_Usualis/) -* [Single Interface for Music Score Search and Analysis (SIMSSA)](https://simssa.ca/) (2011 - 2021) -* [Optical Music Recognition for Plainchant]({{ site.url }}/research/omr/OMR_for_Plainchant/) (2010 - 2013) -* [Gamut for Early Music on Microfilms (GEMM)]({{ site.url }}/research/omr/gemm/) (2005 - 2008) -
    - -## Software - -* [Gamera](http://gamera.informatik.hsnr.de/) -* [Aruspix](http://www.aruspix.net/) -* [Neon.js]({{ site.url }}/software/neon/) -
    - -## Resources - -* [OMR Bibliography]({{ site.url }}/research/OMR/resources/OMRBibliography/) -* [OMR and OCR Software]({{ site.url }}/research/OMR/resources/OMR_OCR_Software/) diff --git a/_research/OMR/Search_the_Liber_Usualis.md b/_research/OMR/Search_the_Liber_Usualis.md deleted file mode 100644 index 02e70862..00000000 --- a/_research/OMR/Search_the_Liber_Usualis.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: page -title: Search the Liber Usualis -tab: Research -permalink: /research/omr/Search_the_Liber_Usualis/ -redirect_from: - - /research/omr/search_the_liber_usualis - - /research/omr/search_the_liber_usualis/ ---- - -The Liber Usualis is a valuable resource for musical scholars. As a compendium of the most common chants used by the Catholic Church, it is useful for identifying the origins of chants used in polyphonic compositions. - -Using Optical Music Recognition and Optical Text Recognition, we have processed a scanned version of the Liber and made its contents searchable. This is a proof-of-concept demonstration for the larger task of providing search capabilities for all digitized musical works. - -[The search interface is available online](http://liber.simssa.ca/). - -This work was done as part of the [SIMSSA](https://simssa.ca/) project. -
    - -## Searching Help - -We think that this demonstration will be useful for chant and musical scholars, so we have made it available online. Our current interface provides the following methods of content search: - -* Neume names: Search by sequences of neume names, e.g., "torculus torculus punctum scandicus" -* Strict pitch sequence: Untransposed pitch sequences, e.g., "edcdeee", "fgagfde", "cbcbcbc". -* Transposed pitch sequence: Same as strict, but will match pitch sequences diatonically. -* Contour: The "Parsons code": u(p), d(own), and r(epeat), e.g., "uuddrrd". -* Intervals: Number of semitones +/-, e.g., "+2 +2 +3 -1 -1 +2". -* Text: OCR'ed text results, e.g., "alleluia", "pastor". Note: The OCR results are very poor. - -Search results will be highlighted on the original page images below the search box. You can use the "next" and "previous" buttons to step through the results. - -The current search supports sequences up to a length of 10 for all musical queries. Note that this means that for the pitch sequences this is a length of 10, but for the contour and intervals it is a maximum length of 9. diff --git a/_research/OMR/gemm/gemm.md b/_research/OMR/gemm/gemm.md deleted file mode 100644 index df307250..00000000 --- a/_research/OMR/gemm/gemm.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -layout: page -title: Gamut for Early Music on Microfilms (GEMM) -tab: Research -permalink: /research/omr/gemm/ ---- -
    - -## Introduction - -Unlike text databases, online content-searchable databases of music scores are extremely rare. The main reasons are the cost of digitisation, the inaccessibility of original music scores and manuscripts, and the lack of sophisticated music recognition software. The proposed research will attempt to circumvent these problems by investigating the feasibility of using existing microfilms for digitisation. - -Compared to original scores, microfilms constitute more accessible and economical sources for digitisation (there are over 7000 music scores in microfilm format in North America). Scanned images of music scores can be made content searchable through the use of optical music recognition (OMR) softwares. The OMR system to be used and developed here will be based on two of the most advanced existing OMR technologies, namely, Gamut (Fujinaga 1997) and Aruspix (Pugin 2006), both developed by researchers involved in this project. - -The objective of this study is to determine whether the quality of images scanned from microfilm, rather than from the original score, is sufficient for the subsequent OMR process. If the digital image derived from microfilm is found to be acceptable for OMR, there will be tremendous economic benefits. The cost of building digital libraries is incurred mainly in the digitisation process. The cost of digitisation from microfilm is far lower than that from paper. Using microfilms may also prove highly advantageous in data collection. Original music manuscripts are scattered throughout the world in various libraries, museums, and archives. The exorbitant cost of travelling to these locations can be avoided through the use of microfilm collections that already exist in many music libraries. Finally, when a local archive decides to digitise its own collection, using available microfilms will obviate the necessity of handling and thereby potentially damaging precious manuscripts. - -The project will concentrate on music from Medieval and Renaissance periods, because access to original sources from these periods is particularly difficult and the softwares must be trained to recognise notation systems that differ from the common music notation system in current use. If the quality of images scanned from microfilm is sufficient to obtain reasonable results using the OMR process, a large amount of music can be made searchable, creating an incredible resource for music scholars throughout the world. -
    - -## Microfilms and Scanning - -The microfilms of Early Music are the raw material for this research. The starting point was to select samples of sources and digitize them using a microfilm scanner (Minolta MS6000) with grayscale option. Different notation styles with varying degrees of print quality have been considered. As a general policy, a 'backwards' procedure was adopted, starting with sources printed around 1600 and then moving by steps to earlier and earlier documents, including manuscripts. During this project, we will study the feasibility of using microfilm by comparing the image quality of direct scans and microfilm scans of the same music scores where they are available in both formats. A high-quality flatbed scanner (Epson 1640XL) will be used for the experiment. The principal metric is the recognition rate of the OMR process, although visual inspection of the image may be sufficient in some cases. - -[[more]({{ site.url }}/research/omr/gemm/Microfilms_and_Scanning/)] -
    - -## Preprocessing - -One part of the current research is devoted to development and evaluation of pre-processing solutions. Standard approaches to pre-processing of degraded documents are considered, as well as approaches more specific to music such as staff detection (Fujinaga 2005). A particular attention is given to binarisation because it appears to be a critical step in OMR of early documents. For our preprocessing experiments, we use a framework for the creation of structured document analysis applications by domain experts called [Gamera](http://ldp.library.jhu.edu/projects/gamera/) (MacMillan, Droettboom, and Fujinaga. 2002). Gamera has been used in another OMR research project, the [Levy Sheet Music Project](http://levysheetmusic.mse.jhu.edu/) at the [Johns Hopkins University](http://jhu.edu/) -(Choudhury et al. 2001). The framework is also being further developed within the current research project, as the new techniques that have been developed (such as binarization algorithms) are being integrated into it. - -[[more]({{ site.url }}/research/omr/gemm/Preprocessing/)] -
    - -## OMR Experiments - -For our OMR experiments, we use mainly [Aruspix](http://www.aruspix.net/), a software application designed to perform optical recognition of early typographic music prints. It uses an innovative technique in OMR based on Hidden Markov Models and was developed initially as part of a PhD thesis in Musicology presented by Laurent Pugin at [Geneva University](http://www.unige.ch/) (Pugin 2006). Within the current project, Aruspix is used as a research tool. It it used to perform evaluations (such as pre-processing evaluations), but it is also being developed further. The new scores considered in the present research and the data generated (mainly the ground-truth) enable a better evaluation of Aruspix itself and, hopefully, future improvments. -
    - -## Academic Advisory Board - -* [Julie Cumming](http://www.mcgill.ca/music/about-us/bio/julie-e-cumming) • McGill University -* [Emma Dillon](http://www.kcl.ac.uk/artshums/depts/music/people/acad/dillon/index.aspx) • King's College London -* [Thomas Forrest Kelly](http://medieval.fas.harvard.edu/people/thomas-forrest-kelly) • Harvard University -* [Dolores Pesce](http://music.wustl.edu/people/pesce) • Washington University in St. Louis -* [Susan Forscher Weiss](http://www.peabody.jhu.edu/conservatory/faculty/Musicology/weiss/) • Johns Hopkins University -
    - -## Researchers - -* John Ashley Burgoyne • McGill University -* Remi Chiu • McGill University -* [Ichiro Fujinaga](http://www.music.mcgill.ca/~ich/) • McGill University -* [Cory McKay](http://www.music.mcgill.ca/~cmckay/) • McGill University -* Laurent Pugin • McGill University -
    - -## Grants - -The project is funded by SSHRC Research Grants: - -* 'Feasibility of Digitizing Early Music on Microfilms for the Creation of Large-scale Content-Searchable Databases' (Standard Research Grant; August 2005; $145,838). -* 'Enhancing optical music recognition technology of Early Music prints and manuscripts for musicological applications' (Image, Text, Sound and Technology Grant; December 2006; $49,943). diff --git a/_research/OMR/gemm/microfilms_and_scanning/Digitization_of_16th_century_music_prints.md b/_research/OMR/gemm/microfilms_and_scanning/Digitization_of_16th_century_music_prints.md deleted file mode 100644 index 8d209866..00000000 --- a/_research/OMR/gemm/microfilms_and_scanning/Digitization_of_16th_century_music_prints.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: page -title: Digitization of 16th Century Music Prints -tab: Research -permalink: /research/omr/gemm/microfilms_and_scanning/Digitization_of_16th_century_music_prints/ ---- - -For our experiments, we selected a first set of microfilms of 18 music prints of the 16th century held at the [Marvin Duchow Music Library at McGill](https://www.mcgill.ca/library/branches/music/about). They were scanned in grayscale at a resolution of 400 dpi and following the guidelines set-up for the [Marenzio project at Harvard](http://www.marenzio.org/). The microfilms scanned correspond to a total of about 1800 images. In some cases, the images contain more than one page (two or four more to be precise). In these cases, the resolution was increased to 600 dpi. - -To be processed, the images with more than one page per image have to be split. We may legitimately think that, with an automatic solution to split the images, we may save time since digitization time is reduced by 2 or 4 if we ignore the time needed to manipulate the microfilms and the image files. A python script was implemented to do this task. In practice, we noticed that it may become quite complicated regarding the page ordering and the repartition of the pages in the partbooks if the print is in partbooks. The main reasons are : - -* The position of the pages in the microfilm is not systematic (sometimes, the first pages are at the bottom, sometimes at the top). -* Some pages may be duplicated in the microfilm, most often because one part ends on the image and another starts on the same image. But this is not systematic either. -* Very often, several prints or several parts of the same print were bound together. In these cases, it is even more difficult to find where one print (or one part) ends and the other starts. - -The qualifications needed to do the digitization should not be underestimated. In particular we noticed that, in several cases, a good knowledge of the printing techniques of the time is necessary to figure out how the books or partbooks are organized. In the most enigmatic situations, to figure out the page order and repartition, it may be necessary to look at the collation letters, at the gatherings, or even at the bleed-through. Furthermore, wrong decisions taken during digitization and badly organized image files may make it necessary to consult the microfilm in order to reorganize the files correctly. diff --git a/_research/OMR/gemm/microfilms_and_scanning/Microfilms_and_Scanning.md b/_research/OMR/gemm/microfilms_and_scanning/Microfilms_and_Scanning.md deleted file mode 100644 index 764771c9..00000000 --- a/_research/OMR/gemm/microfilms_and_scanning/Microfilms_and_Scanning.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: page -title: Microfilms and Scanning -tab: Research -permalink: /research/omr/gemm/:title/ ---- - -## Progress Reports - -* [Scanning and ground-truth annotation for early music microfilms]({{ site.url }}/research/omr/gemm/microfilms_and_scanning/Scanning_and_Ground-truth_Annotation_for_early_Music_Microfilms/) (Started May 2006) -* [Digitization of 16th century music prints]({{ site.url }}/research/omr/gemm/microfilms_and_scanning/Digitization_of_16th_century_music_prints/) (May 2006) -* Digitisation guideline (PDF) ([Marenzio project at Harvard](http://www.marenzio.org/), May 2006) -* Holdings of microflims and corresponding facsimiles or modern editions at McGill (Remi Chiu, started May 2005) diff --git a/_research/OMR/gemm/microfilms_and_scanning/Scanning_and_Ground-truth_Annotation_for_early_Music_Microfilms.md b/_research/OMR/gemm/microfilms_and_scanning/Scanning_and_Ground-truth_Annotation_for_early_Music_Microfilms.md deleted file mode 100644 index 1f5ec4a1..00000000 --- a/_research/OMR/gemm/microfilms_and_scanning/Scanning_and_Ground-truth_Annotation_for_early_Music_Microfilms.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: page -title: Scanning and Ground-truth Annotation for early Music Microfilms -tab: Research -permalink: /research/omr/gemm/microfilms_and_scanning/Scanning_and_Ground-truth_Annotation_for_early_Music_Microfilms/ ---- - -Throughout the summer of 2006, we attempted to scan prints from a variety of printers from microfilms held at the Marvin Duchow Music Library at McGill University. Two master's students were trained to use the microfilm scanner and to correct the output of the optical music recognition process with Aruspix. As a gauge for future researchers who might undertake such a project, we present here some statistics on the time it took to build this set of ground truth. - -The figure to the left plots the scanning times for 33 prints against the number of scans taken for each print. Some microfilms allow 2-up or 4-up scanning, thereby doubling or quadrupling the number of pages obtained per scan. Our data show no significant learning curve for this task, simply an overhead time for each film (e.g, obtaining and loading the film or transferring files to the server) of about 9 minutes and a scanning time of about 26 seconds per scan: - -``` -centerscanning time = 8.823 + 0.4341 times; number of scans/center -``` - -The next figure illustrates the average time per page our annotator needed to correct the output of the recognition process, plotted against the total time she had spent at the annotation task. Under all of a variety of models, the Box-Cox procedure suggested that her annotation time per page was inversely proportional to her cumulative annotation time. Although the effect of different prints on scanning time was highly significant, it is a difficult variable to use for predicting future performance on unknown prints; we present a simple average trend line above, fitted over all prints: - -``` -centerannotation time per page = 1 / (0.06567 + 0.00003731 times; cumulative annotation time)/center -``` - -Although it is dangerous to extrapolate too far beyond the range of the data (e.g., the model would predict only 13 seconds of annotation time per page after 2000 hours, or a year of full-time work), within the range, we see a believeable learning curve beginning at 15 minutes per page, dropping to 9.1 minutes per page after 20 hours of work, and ending at 5.0 minutes per page after 60 hours of work. diff --git a/_research/OMR/gemm/preprocesing/Preprocessing.md b/_research/OMR/gemm/preprocesing/Preprocessing.md deleted file mode 100644 index 7de34ee9..00000000 --- a/_research/OMR/gemm/preprocesing/Preprocessing.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -layout: page -title: Preprocessing -tab: Research -permalink: /research/omr/gemm/:title/ ---- - -With early documents, pre-processing is a crucial phase since they are in most cases highly degraded. Further more, music manuscripts are by definition unique, so it is impossible to choose the best copy for our task. It is very often the same with early prints because few complete copies survive. - -One major difficulty in developing a pre-processing solution to enable optical recognition of early documents is related to the fact that the types of degradation are numerous and may vary from one source to another. For example, we may have to deal with: - - -* printing or writing imperfections -* bad or patchy absorption of ink -* bleed-through (elements of the verso appearing on the page) -* paper degradations (yellowing) -* stains (very often moisture) -* tears or even holes - -As optical recognition is based on digital images, the distortions that may appear during the digitization phase must also be taken into account. Furthermore, working with microfilms introduces more steps into the acquisition phase which is strictly speaking not limited to the digitization. The document has to be photographed, page by page, and then a microfilm is built from the photographs. Only then can it be scanned using the microfilm scanner. Each step is liable to add new distortions and more degradation. In our research, we have the additional problem that the steps before digitization are out of our control and we cannot optimize the acquisition phase for our task. Very often, the images obtained by scanning microfilms are not optimized at all, because digitization and optical recognition were not the purpose for which the microfilms were produced. A large number of the microfilms kept in libraries were made years ago, in the Sixties for some of them. The consequence for our research is that we have to deal with distortions such as: - - -* skewness of the document on the image -* curvature of the document on the image (because the page was not flat) -* non-uniform illumination (during photo capture) -* heterogeneous borders around the page - -Consequently, the pre-processing approach must be effective because it is a sine qua non condition to building a real-world application. The diversity of the problem also implies that the approach must be highly adaptive. - -## Progress reports - - -* Adaptive binarisation. (Started August 2005) -* Preliminary experiments (Cory McKay) - * [Bleed-through removal](http://www.music.mcgill.ca/~cmckay/software/musictech/ScoreReader/BleedThroughRemoval.html) (September 2004) - * [Red staffline detection](http://www.music.mcgill.ca/~cmckay/software/musictech/ScoreReader/HorizontalLineDetection.html) (August 2004) diff --git a/_research/OMR/resources/OMRBibliography.md b/_research/OMR/resources/OMRBibliography.md deleted file mode 100644 index ecc79f87..00000000 --- a/_research/OMR/resources/OMRBibliography.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: page -title: OMR Bibliography -tab: Research ---- - -{% assign OMRbibliography_years = site.OMRbibliography | map: 'year' | uniq | sort | reverse %} - -{% for year in OMRbibliography_years %} -## {{ year }} -
    -{% assign OMRbibliography_list = site.OMRbibliography | sort: 'content' %} -{% for item in OMRbibliography_list %} - {% if item.year == year %} - * {{ item.content }} - {% endif %} -{% endfor %} -
    -{% endfor %} diff --git a/_research/OMR/resources/OMR_OCR_Software.md b/_research/OMR/resources/OMR_OCR_Software.md deleted file mode 100644 index a8ab4011..00000000 --- a/_research/OMR/resources/OMR_OCR_Software.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -layout: page -title: OMR and OCR Software -tab: Research ---- - -## OMR - -#### Open Source - -* [Audiveris](https://audiveris.kenai.com/) -* [OpenOMR](https://sourceforge.net/projects/openomr/) - -#### Proprietary - -* [Musitek Smartscore](https://www.musitek.com/smartscore-player.html) -* [Sharpeye](https://www.visiv.co.uk/) -* [VivaldiScan](https://download.cnet.com/Vivaldi-Scan/3000-2170_4-10187821.html) -* [Capella-Scan](https://www.whc.de/capella-scan.cfm) -* [Photoscore](https://www.neuratron.com/photoscore.htm) -* [Scoremaker](https://www.kawai.co.jp/cmusic/products/sm/index.htm) -
    - -
    - -## OCR - -#### Open Source - -* [Ocropus](https://code.google.com/p/ocropus/) -* [GOCR](https://jocr.sourceforge.net/) -* [Cuneiform](https://launchpad.net/cuneiform-linux) - -#### Proprietary - -* [ABBYY](https://www.abbyy.com/) -* [Readiris](https://www.irislink.com/EN-US/c1810/IRIS---The-World-leader-in-OCR--PDF-and-Portable-scanner.aspx?) -* [SimpleOCR](https://www.simpleocr.com/) -
    diff --git a/_research/OMR/resources/deprecated_OMR_Bibliography.md b/_research/OMR/resources/deprecated_OMR_Bibliography.md deleted file mode 100644 index 98688b0f..00000000 --- a/_research/OMR/resources/deprecated_OMR_Bibliography.md +++ /dev/null @@ -1,2105 +0,0 @@ ---- -layout: page -title: Optical Music Recognition Bibliography -tab: Research ---- - -While some effort was made to link to free versions of these papers, many are behind pay walls and require an individual or institutional subscription to access them. This page was largely constructed from earlier bibliographies by Ichiro Fujinaga and Kia Ng, but expanded to cover sources since 2004. - -Updates and omissions may be forwarded to [Andrew Hankinson](mailto:andrew.hankinson@mail.mcgill.ca). -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    AuthorDateTitlePublication Info
    Akiyama, T., and N. Hagita1990Automated entry system for printed documentsPattern Recognition 23 (11): 1141-54.
    Alphonce, B., B. Pennycook, I. Fujinaga, and N. Boisvert1988Optical music recognition: A progress reportProceedings of the Small Computers in the Arts 8-12.
    Andronico, A., and A. Ciampa1982On automatic pattern recognition and acquisition of printed musicProceedings of the International Computer Music Conference 245-78.
    Anquetil, E., B. Coüasnon, and F. Dambreville2000A symbol classifier able to reject wrong shapes for document recognition systemsGraphics recognition recent advances, edited by Atul K. Chhabra, and D. Dori. Berlin: Springer.
    Anstice, J., T. Bell, A. Cockburn, and M. Setchell1996The design of a pen-based musical input systemProceedings Sixth Australian Conference on Computer-Human Interaction 260-67.
    Aoyama, H., and A. Tojo1982Automatic recognition of music score (in japanese)Electronic Image Conference Journal 11 (5): 427-35.
    Aoyama, H., and A. Tojo1982Automatic recognition of printed music (in japanese)Institute of Electronics and Communications Engineers of Japan (IECE) TG PREL82-5 33-40.
    Armand, J. P.1993Musical score recognition: A hierarchical and recursive approachProceedings of the Second International Conference on Document Analysis and Recognition (Cat. No.93TH0578-5) 906-09.
    Bacon, R. A., and N. P. Carter1988Recognising music automaticallyPhysics Bulletin 39 265.
    Bainbridge, D.1991Preliminary experiments in musical score recognitionB.Eng diss., University of Edinburgh.
    Bainbridge, D.1994A complete optical music recognition system: Looking to the future
    Bainbridge, D.1994Optical music recognition: Progress report 1Department of Computer Science, University of Canterbury, NZ.
    Bainbridge, D.1995Optical music recognition: Progress report 2Department of Computer Science, University of Canterbury, NZ.
    Bainbridge, D.1996Optical music recognition: A generalised approachProceedings of the Second New Zealand Computer Science Graduate Conference.
    Bainbridge, D.1997Extensible optical music recognitionPh.D diss., University of Canterbury.
    Bainbridge, D., and T. Bell1996An extensible optical music recognition systemAustralian Computer Science Communications 18 (1): 308-17.
    Bainbridge, D., and T. Bell2001The challenge of optical music recognitionComputers and the Humanities 35 (2): 95-121.
    Bainbridge, D., and T. Bell2003A music notation construction engine for optical music recognitionSoftware: Practice and Experience 33 (2): 173-200.
    Bainbridge, D., and T. Bell2006Identifying music documents in a collection of imagesProceedings of the Seventh International Conference on Music Information Retrieval (ISMIR), at Victoria, BC.
    Bainbridge, D., and T. C. Bell1997Dealing with superimposed objects in optical music recognitionProceedings of the Sixth International Conference on Image Processing and its Applications, 756-60.
    Bainbridge, D., and N. Carter1997Automatic reading of music notationHandbook of character recognition and document image analysis, edited by H. Bunke, and P. Wang. Singapore: World Scientific.
    Bainbridge, D., and S. Inglis1998Musical image compressionProceedings of the Data Compression Conference, at Snowbird, UT. 209–18.
    Bainbridge, D., C. Nevill-Manning, I. Witten, L. Smith, and R. McNab1999Towards a digital library of popular musicProceedings of the ACM Conference on Digital Libraries, at Berkeley, CA. 161-69.
    Bainbridge, D., and K. Wijaya1999Bulk processing of optically scanned musicProceedings of the Seventh International Conference on Image Processing and Its Applications, at Manchester, UK. 474-78.
    Barton, L.2002The neumes project: Digital transcription of medieval chant manuscriptsProceedings of the Web Delivering of Music (WEDELMUSIC), at Darmstadt, Germany. 211–18.
    Barton, L., J. Caldwell, and P. Jeavons2005E-library of medieval chant manuscript transcriptionsProceedings of the 5th ACM/IEEE-CS joint conference on Digital libraries (JCDL), at Denver, CO. 320–29.
    Baumann, S.1993Document recognition of printed scores and transformation into midiProceedings of the Deutsches Forschungszentrum fuer Kuenstliche Intelligenz GmbH (DFKI), at Kaiserslautern.
    Baumann, S.1995A simplified attributed graph grammar for high-level music recognitionProceedings of the Third International Conference on Document Analysis and Recognition 2 1080-83.
    Baumann, S., and A. Dengel1992Transforming printed piano music into midiProceedings of International Workshop on Structural and Syntactic Pattern Recognition 363-72.
    Baumann, S., and K. Tombre1995Report of the line drawing and music recognition working groupWorld Scientific,
    Bellini, P., I. Bruno, and P. Nesi2001Optical music sheet segmentationProceedings of the First International Conference on Web Delivering of Music (WEDELMUSIC), at Florence, Italy. 183–90.
    Bellini, P., I. Bruno, and P. Nesi2004An off-line optical music sheet recognitionVisual perception of music notation: Online and offline recognition, edited by S George. Hershey, PA: IRM Press.
    Bellini, P., I. Bruno, and P. Nesi2007Assessing optical music recognition toolsComputer Music Journal 31 (1): 68-93.
    Bellini, P., I. Bruno, and P. Nesi2008Optical music recognition: Architecture and algorithmsInteractive multimedia music technologies, edited by K. Ng, and P Nesi. Hershey, PA: Information Science Reference.
    Beran, T.1997Rozpoznavani notoveho zapisu (in czech)BSc Report diss., Czech Technical University.
    Beran, T.1999Rozpoznavani notoveho zapisu (in czech)MSc Report diss., Czech Technical University.
    Beran, T., and T. Macek1999Recognition of printed music scoreMachine learning and data mining in pattern recognition, Berlin: Springer.
    Blostein, D., and L. Haken1991Justification of printed musicCommunications of the ACM 34 (3): 88–99.
    Blostein, D., and H. S. Baird1992A critical survey of music image analysisStructured document image analysis, edited by H. S. Baird, H. Bunke, and K. Yamamoto. Berlin: Springer.
    Blostein, D., and N. Carter1992Recognition of music notation: Sspr '90 working group reportStructured document image analysis, edited by H. Baird, H. Bunke, and K. Yamamoto. Berlin: Springer Verlag.
    Blostein, D., and L. Haken1990Template matching for rhythmic analysis of music keyboard inputProceedings of 10th International Conference on Pattern Recognition 767-70.
    Blostein, D., and L. Haken1999Using diagram generation software to improve diagram recognition: A case study of music notationIEEE Transactions on Pattern Analysis and Machine Intelligence 21 (11): 1121-36.
    Bruder, I., A. Finger, A. Heuer, and T. Ignatova2003Towards a digital document archive for historical handwritten music scoresDigital Libraries: Technology and Management of Indigenous Knowledge for Global Access. Berlin: Springer. 411–4.
    Bulis, A., R. Almog, M. Gerner, and U. Shimony1992Computerized recognition of hand-written musical notesProceedings of the International Computer Music Conference 110-12.
    Bullen, A.2008Bringing sheet music to life: My experiences with OMRcode4lib Journal 3
    Burgoyne, J., J. Devaney, L. Pugin, and I. Fujinaga2008Enhanced bleedthrough correction for early music documents with recto-verso registrationProceedings of the Conference of the International Society for Music Information Retrieval (ISMIR), at Philadelphia, PA. 407–12.
    Burgoyne, J., Y. Ouyang, T. Himmelman, J. Devaney, L. Pugin, and I. Fujinaga2009Lyric extraction and recognition on digital images of early music sourcesProceedings of the 10th International Society for Music Information Retrieval (ISMIR), at Kobe, Japan. 723–27.
    Burgoyne, J., L. Pugin, G. Eustace, and I. Fujinaga2007A comparative survey of image binarisation algorithms for optical recognition on degraded musical sourcesProceedings of the Eighth International Conference on Music Information Retrieval (ISMIR), at Vienna, Austria. 509–12.
    Byrd, D., W. Guerin, M. Schindele, and I. KnopkeForthcoming.OMR evaluation and prospects for improved OMR via multiple recognizers
    Byrd, D., and M. Schindele2006Prospects for improving OMR with multiple recognizersSeventh International Conference on Music Information Retrieval (ISMIR) 41–46.
    Caldas Pinto, J., P. Vieira, M. Ramalho, M. Mengucci, P. Pina, and F. Muge2000Ancient music recovery for digital librariesResearch and advanced technology for digital libraries, Berlin: Springer.
    Caldas Pinto, J., P. Vieira, and J. Sousa2003A new graph-like classification method applied to ancient handwritten musical symbolsInternational Journal on Document Analysis and Recognition 6 (1): 10-22.
    Capitaine, T., E. Mouaddib, H. Trannois, and A. Lebrun1995Automatic recognition of musical scoresSecond Asian Conference on Computer Vision 1 422-24.
    Cardoso, J., A. Capela, A. Rebelo, C. Guedes, and I. Porto2008A connected path approach for staff detection on a music scoreProceedings of the 15th IEEE International Conference on Image Processing, 1005-08.
    Cardoso, J., A. Rebelo2010Robust Staffline Thickness and Distance Estimation in Binary and Gray-Level Music ScoresProceedings of the 20th International Conference on Pattern Recognition, 1856-9.
    Carter, N.1991Automatic recognition and related topics: Guildford, University of SurreyComputing in Musicology 7 109–11.
    Carter, N., R. Bacon, and T. Messenger1988The acquisition, representation and reconstruction of printed music by computer: A reviewComputers and the Humanities 22 (2): 117-36.
    Carter, N., and R. Bacon1992Automatic recognition of printed musicStructured document image analysis, edited by H. Baird, H. Bunke, and K. Yamamoto. Berlin: Springer.
    Carter, N. P.1989Automatic recognition of printed music in the context of electronic publishingPh.D diss., University of Surrey.
    Carter, N. P.1992A new edition of walton's faade using automatic score recognitionProceedings of International Workshop on Structural and Syntactic Pattern Recognition 352-62.
    Carter, N. P.1992Segmentation and preliminary recognition of madrigals notated in white mensural notationMachine Vision and Applications 5 (3): 223-30.
    Carter, N. P.1994Conversion of the haydn symphonies into electronic form using automatic score recognition: A pilot studyProceedings of SPIE 2181 279-90.
    Carter, N. P.1994Music score recognition: Problems and prospectsComputing in Musicology 9 152-58.
    Carter, N. P.1993A generalized approach to automatic recognition of music scoresDepartment of Music, Stanford University,
    Carter, N. P., and R. A. Bacon1990Automatic recognition of music notationProceedings of the International Association for Pattern Recognition Workshop on Syntactic and Structural Pattern Recognition 482.
    Castro, P., R. Almeida, and J. Caldas Pinto2008Restoration of double-sided ancient music documents with bleed-throughProgress in pattern recognition, image analysis and applications, Berlin: Springer.
    Castro, P., and J. Caldas Pinto2007Methods for written ancient music restorationImage analysis and recognition, Berlin: Springer.
    Chhabra, A.1998Graphic symbol recognition: An overviewGraphics recognition algorithms and systems, Berlin: Springer.
    Cho, K. J., and K. E. Cho1996Recognition of piano score using skeletal lines and run-length informationJournal of KISS(C) (Computing Practices) 2 (4): 461-73.
    Choi, J.1991Optical recognition of the printed musical scoreMS diss., University of Illinois at Chicago.
    Choudhury, G., T. Dilauro, M. Droettboom, I. Fujinaga, and K. Macmillan2001Strike up the scoreD-Lib Magazine 7
    Choudhury, G., T. DiLauro, R. Ferguson, M. Droettboom, and I. Fujinaga2006Document recognition for a million booksD-Lib Magazine 12 (3):
    Choudhury, G., C. Requardt, I. Fujinaga, T. DiLauro, E. W. Brown, J. W. Warner, and B. Harrington2000Digital workflow management: The lester s. Levy digitized collection of sheet musicFirst Monday 5 (6):
    Choudhury, G. S., T. DiLauro, M. Droettboom, I. Fujinaga, B. Harrington, and K. MacMillan2000Optical music recognition system within a large-scale digitization projectProceedings of the Proceedings ISMIR 00,
    Clarke, A., B. Brown, and M. Thorne1989Coping with some really rotten problems in automatic music recognitionMicroprocessing & Microprogramming 27 (1-5): 547-50.
    Clarke, A., M. Brown, and M. Thorne1990Problems to be faced by developers of computer based automatic music recognisersProceedings of the International Computer Music Conference 345-47.
    Clarke, A. T., B. M. Brown, and M. P. Thorne1988Inexpensive optical character recognition of music notation: A new alternative for publishersProceedings of the Computers in Music Research Conference 84-87.
    Clarke, A. T., B. M. Brown, and M. P. Thorne1988Using a micro to automate data acquisition in music publishingMicroprocessing and Microprogramming 24 549-54.
    Clarke, A. T., B. M. Brown, and M. P. Thorne1993Recognising musical textProceedings of the SPIE 2064 222-33.
    Clausen, M., and F. Kurth2004A unified approach to content-based and fault-tolerant music recognitionIEEE Transactions on Multimedia 6 (5): 717–31.
    Cordella, L., and M. Vento2000Symbol and shape recognitionGraphics recognition recent advances, Berlin: Springer.
    Coüasnon, B.1991Réseaux de neurones appliqués à la reconnaissance de partitions musicalesIrisa, Université de Rennes,
    Coüasnon, B.1996Formalisation grammaticale de la connaissance a priori pour l'analyse de documents : Application aux partitions d'orchestreReconnaissance des formes et intelligence artificielle 465-74.
    Coüasnon, B.1996Segmentation et reconnaissance de documents guides par la connaissance a priori : Application aux partitions musicalesPhD diss., Universit de Rennes.
    Coüasnon, B., and J. Camillerapp1995A way to separate knowledge from program in structured document analysis: Application to optical music recognition.International Conference on Document Analysis and Recognition 1092-97.
    Coüasnon, B., and J. Camillerapp1994Using grammars to segment and recognize music scoresInternational Association for Pattern Recognition Workshop on Document Analysis Systems 15-27.
    Coüasnon, B., B. P., and I. Stephan1995Using logic programming languages for optical music recognitionInternational Conference on the Practical Application of Prolog 115-34.
    Coüasnon, B., and B. Rétif1995Using a grammar for a reliable full score recognition systemInternational Computer Music Conference 187-94.
    Coüasnon, B., and B. Rétif1995Utilisation d'une grammaire dans la reconnaissance de partitions d'orchestreDeuxiémes Journées d'Informatique Musicale 143–52.
    Cui, J., H. Huan, and Y. Wang2010An adaptive staff line removal in music score images10th Annual Conference on Signal Processing (ICSP) 964–7.
    d'Andecy, V. P.1993Segmentation et reconnaissance optique de partitions musicalesIRISA/INSA, Rennes, France.
    d'Andecy, V. P., J. Camillerapp, and I. Leplumey1994Détecteur robuste de segments-application l'analyse de partitions musicalesActes 9 me Congrs AFCET Reconnaissance des Formes et Intelligence Artificielle
    d'Andecy, V. P., J. Camillerapp, and I. Leplumey1994Kalman filtering for segment detection: Application to music scores analysisProceedings of the 12th IAPR International Conference on Pattern Recognition (Cat. No.94CH3440-5) 1 301-05.
    Dalitz, C., M. Droettboom, B. Pranzas, and I. Fujinaga2008A comparative study of staff removal algorithmsIEEE transactions on pattern analysis and machine intelligence 30 (5): 753–66.
    Dalitz, C., and T. Karsten2005Using the gamera framework for building a lute tablature recognition systemProceedings of the Sixth International Conference on Music Information Retrieval (ISMIR), at London, UK. 478-81.
    Dalitz, C., G. Michalakis, and C. Pranzas2008Optical recognition of psaltic Byzantine chant notationInternational Journal on Document Analysis and Recognition 11 (3): 143-58.
    Dalitz, C., and B. Pranzas2009German lute tablature recognitionProceedings of the 10th International Conference on Document Analysis and Recognition, at Barcelona, Spain. 371–75.
    Di Riso, D.1992Lettura automatica di partiture musicaliMasters diss., Universit di Salerno.
    Diener, G. R.1990Modeling music notation: A three-dimensional approachPhD diss., Stanford University.
    Distasi, R., and e. al.1993Automatic system for reading scoresEighth Scandinavian Conference on Image Analysis 1307-10.
    Distasi, R., M. Nappi, and S. Vitulano1993An automatic system for reading musical scoresProceedings of the Eighth Scandinavian Conference on Image Analysis, 1307-10.
    dos Santos Cardoso, J., A. Capela, A. Rebelo, C. Guedes, and J. da Costa2009Staff detection with stable pathsIEEE Transactions on Pattern Analysis and Machine Intelligence 31 (6): 1134-39.
    Droettboom, M.2003Correcting broken characters in the recognition of historical printed documentsProceedings of the Joint Conference on Digital Libraries, at Houston, TX. 364-66.
    Droettboom, M., I. Fujinaga, K. MacMillan, G. S. Chouhury, T. DiLauro, M. Patton, and T. Anderson2002Using the gamera framework for the recognition of cultural heritage materialsProceedings of the Proceedings of the 2nd ACM/IEEE-CS joint conference on Digital libraries, 17.
    Droettboom, M., and I. Fujinaga2001Interpreting the semantics of music notation using an extensible and object-oriented systemProceedings of the Ninth Python Conference, at Long Beach, CA.
    Droettboom, M., and I. Fujinaga2004Symbol-level groundtruthing environment for OMRProceedings of the Fifth International Conference on Music Information Retrieval (ISMIR), at London, UK. 497–500.
    Droettboom, M., I. Fujinaga, and K. MacMillan2002Optical music interpretationStructural, syntactic and statistical pattern recognition, edited by T. Caelli, A. Amin, R. Duin, M. Kamel, and D. de Ridder. Berlin: Springer.
    Fahmy, H.1991A graph-grammar approach to high-level music recognitionMSc diss., Queen's University.
    Fahmy, H., and D. Blostein1991A graph grammar for high-level recognition of music notationFirst International Conference on Document Analysis 1 70-78.
    Fahmy, H., and D. Blostein1992Graph grammar processing of uncertain dataProceedings of International Workshop on Structural and Syntactic Pattern Recognition 373-82.
    Fahmy, H., and D. Blostein1993A graph grammar programming style for recognition of music notationMachine Vision and Applications 6 83-99.
    Fahmy, H., and D. Blostein1994A graph-rewriting approach to discrete relaxation: Application to music recognitionProceedings of the SPIE 2181 291-302.
    Fahmy, H., and D. Blostein1998A graph-rewriting paradigm for discrete relaxation: Application to sheet-music recognitionInternational Journal of Pattern Recognition and Artificial Intelligence 12 (6): 763-99.
    Ferrand, M., and A. Cardoso1998Scheduling to reduce uncertainty in syntactical music structures14th Brazilian Symposium on Artificial Intelligence 249-58.
    Ferrand, M., J. A. Leite, and A. Cardoso1999Hypothetical reasoning: An application to optical music recognitionProceedings of the Joint Conference on Declarative Programming, at Aquila, Italy. 367-81.
    Ferrand, M., J. A. Leite, and A. Cardoso1999Improving optical music recognition by means of abductive constraint logic programmingProgress in artificial intelligence, Berlin: Springer.
    Fischer, K. N.1978Computer recognition of engraved musicM.S. diss., University of Tennessee.
    Fletcher, L. A., and R. Kasturi1988A robust algorithm for text string separation from mixed text/graphics imagesIEEE Transactions on Pattern Analysis and Machine Intelligence 10 (6): 910-18.
    Fluhr, C., and J. Abouassly1988Music pattern recognitionProceedings of the EEC Concerted Action on "Technology and Blindness", at Toulouse, France.
    Fornés, A., J. Lladós, and G. Sánchez2006Primitive segmentation in old handwritten music scoresGraphics recognition. Ten years review and future perspectives, edited by W. Liu, and J. Lladós. Berlin: Springer.
    Fornés, A., J. Lladós, and G. Sánchez2008Old handwritten musical symbol classification by a dynamic time warping based methodGraphics Recognition. Recent Advances and New Opportunities 51-60.
    Fornés, A., J. Lladós, G. Sánchez, and H. Bunke2009On the use of textural features for writer identification in old handwritten music scoresProceedings of the 10th International Conference on Document Analysis and Recognition, at Barcelona, Spain. 996-1000.
    Fotinea, S., G. Giakoupis, A. Liveris, S. Bakamidis, and G. Carayannis2000An optical notation recognition system for printed music based on template matching and high level reasoningProceedings of the Sixth Recherche d'Informations Assiste par Ordinateur, at Paris, France.
    Fremerey, C., M. Meinard, F. Kurth, and M. Clausen2008Automatic mapping of scanned sheet music to audio recordingsProceedings of the Ninth Conference of the International Society for Music Information Retrieval (ISMIR), at Philadelphia, PA. 413–18.
    Fujimoto, Y.1985The keyboard playing robot wabot-2Bulletin of Science and Engineering Research Laboratory 112
    Fujinaga, I.1992An optical music recognition system that learnsEnabling Technologies for High-Bandwidth Applications SPIE 1785 210-17.
    Fujinaga, I.1988Optical music recognition using projectionsM.A diss., McGill University.
    Fujinaga, I.1993Optical music recognition system which learnsProceedings of the SPIE 1785 210-17.
    Fujinaga, I.1996Adaptive optical music recognitionIEEE Transactions on Systems, Man, and Cybernetics
    Fujinaga, I.1996Adaptive optical music recognitionPhD diss., McGill University.
    Fujinaga, I.1996Exemplar-based learning in adaptive optical music recognition systemInternational Computer Music Conference 55-56.
    Fujinaga, I.2004Staff detection and removalVisual perception of music notation: On-line and off-line recognition, edited by S. George. Hershey, PA: IRM Press.
    Fujinaga, I., B. Alphonce, G. Diener, and B. Pennycook1992Optical music recognition on next workstationProceedings of the Second International Conference on Music Perception and Cognition, at Los Angeles, CA.
    Fujinaga, I., B. Alphonce, and B. Pennycook1989Issues in the design of an optical music recognition systemProceedings of the International Computer Music Conference 113-16.
    Fujinaga, I., B. Alphonce, and B. Pennycook1992Interactive optical music recognitionProceedings of the International Computer Music Conference 117-20.
    Fujinaga, I., B. Alphonce, B. Pennycook, and N. Boisvert1989Optical recognition of music notation by computerComputers in Music Research 1 161-64.
    Fujinaga, I., B. Alphonce, B. Pennycook, and K. Hogan1991Optical music recognition: Progress reportProceedings of the International Computer Music Conference, at Montreal, QC. 66-73.
    Fujinaga, I., S. Moore, and D. Sullivan1998Implementation of exemplar-based learning model for music cognitionProceedings of the International Conference on Music Perception and Cognition, at Seoul, South Korea. 171-79.
    Fujinaga, I., B. Pennycook, and B. Alphonce1989Computer recognition of musical notationProceedings of the First International Conference on Music Perception and Cognition, at Kyoto, Japan. 87-90.
    Fujinaga, I., B. Pennycook, and B. Alphonce1991The optical music recognition projectComputers in Music Research 3 139–42.
    Gao, S., N. Maddage, and L. Chin-Hui2003A hidden Markov model based approach to music segmentation and identificationProceedings of the Joint Conference of the Fourth International Conference on Information, Communications and Signal Processing, and the Fourth Pacific Rim Conference on Multimedia, at Singapore. 1576–80.
    Geggus, K. M., and E. C. Botha1993A model-based approach to sheet music recognitionElektron 10 (1): 25-29.
    Genfang, C., Z. Wenjun, and W. Qiuqiu2009Pick-up the musical information from digital musical score based on mathematical morphology and music notationProceedings of the First International Workshop on Education Technology and Computer Science, at Wuhan, Hubei. 1141–44.
    George, S.2003Online pen-based recognition of music notation with artificial neural networksComputer Music Journal 27 (2): 70–79.
    George, S.2004Evaluation in the visual perception of music notationVisual perception of music notation: On-line and off-line recognition, edited by S. George. Hershey, PA: IRM Press.
    George, S.2004Lyric recognition and christian musicVisual perception of music notation: On-line and off-line recogition, edited by S. George. Hershey, PA: IRM Press.
    George, S.2004Wavelets for dealing with super-imposed objects in recognition of music notationVisual perception of music notation: On-line and off-line recogition, edited by S. George. Hershey, PA: IRM Press.
    Gezerlis, V. G., and S. Theodoridis2002Optical character recognition of the orthodox hellenic byzantine music notationPattern Recognition 35 (4): 895-914.
    Glass, S.1989Optical music recognitionUndergraduate Report diss., University of Canterbury.
    Göcke, R.2003Proceedings of the International Conference on Signal Processing, Pattern Recognition and Applications, at Rhodes, Greece. 250–55.
    Goolsby, T. W.1994Eye movement in music reading: Effects of reading ability, notational complexity, and encountersMusic Perception 12 (1): 77-96.
    Goolsby, T. W.1994Profiles of processing: Eye movements during sightreadingMusic Perception 12 (1): 97-123.
    Gordo, A., A. Fornés, E. Valveny, J. Lladós.2010A bag of notes approach to writer identification in old handwritten musical scoresProceedings of the 9th IAPR International Workshop on Document Analysis Systems, 247–54
    Gozzi, G.2010OMRJX: A framework for piano scores optical music recognitionMSc diss., Politecnico di Milano.
    Hachimura, K., and Y. Ohno1987A system for the representation of human body movements from dance scoresPattern Recognition Letters 5 1-9.
    Hankinson, A., L. Pugin, and I. Fujinaga2010An interchange format for optical music recognition applicationsProceedings of the 11th Annual Conference of the International Society for Music Information Retrieval (ISMIR), at Utrecht, Netherlands. 51–6.
    Helsen, K.2011'Venite et videte': First Results in the Optical Neume Recognition ProjectCantus Planus Conference, Vienna
    Hewlett, W. B., and E. Selfridge-Field1990Optical recognition of musical dataComputing in Musicology: A Directory of Research 36-45.
    Homenda, W.1995Optical pattern recognition for printed music notationProceedings of the SPIE 2490 230-39.
    Homenda, W.1996Automatic recognition of printed music and its conversion into playable music dataControl and Cybernetics 25 (2): 353-67.
    Homenda, W.2001Optical music recognition: The case of granular computingGranular computing: An emerging paradigm, edited by W Pedrycz. Heidelberg: Physica-Verlag.
    Homenda, W.2005Optical music recognition: The case study of pattern recognitionComputer recognition systems, Berlin: Springer.
    Homenda, W.2006Automatic understanding of images: Integrated syntactic and semantic analysis of music notationProceedings of the International Conference on Neural Networks, at Vancouver, BC. 3026–33.
    Homenda, W., and M. Luckner2004Automatic recognition of music notation using methods of centroids and classification treesProceedings of the International Symposium on Computational Intelligence and Industrial Applications, at Haikou, China.
    Homenda, W., and M. Luckner2004Automatic recognition of music notation using neural networksProceedings of the International Conference on AI and Systems, at Divnormorkoye, Russia. 74–80.
    Homenda, W., and M. Luckner2006Automatic knowledge acquisition: Recognizing music notation with methods of centroids and classifications treesProceedings of the International Conference on Neural Networks, at Vancouver, BC. 3382–88.
    Homenda, W., and K. Mossakowski2004Music symbol recognition: Neural networks vs. Statistical methodsProceedings of the EUROFUSE, at Warszawa, Poland.
    Hori, T., S. Wada, T. Howzan, S. Y. D. E. Kung, and K. Bastiaan, W.1999Automatic music score recognition/play system based on decision based neural networkProceedings of the Third Workshop on Multimedia Signal Processing, 183-84.
    Inokuchi, S.1981Musical databaseJournal of the Institute of Electronics and Communication Engineers of Japan 64 (5): 466-68.
    Inokuchi, S., and H. Katayose1990Computer and musicJournal of the Institute of Electronics, Information and Communication Engineers 73 (9): 965-67.
    Itagaki, T., S. Hashimoto, M. Isogai, and S. Ohteru1992Automatic recognition of several types of musical notationStructured document image analysis, edited by H. Baird, H. Bunke, and K. Yamamoto. Berlin: Springer-Verlag.
    Itagaki, T. S., S. Hashimoto, M. Isogai, and S. Ohteru1990Automatic recognition on some different types of musical notation.Proceedings of the International Association for Pattern Recognition Workshop on Syntactic and Structural Pattern Recognition 488 ff.
    Johansen, L.2009Optical music recognitionMSc diss., University of Oslo.
    Jones, G., B. Ong, I. Bruno, and K. Ng2008Optical music imaging: Music document digitisation, recognition, evaluation and restorationInteractive multimedia music technologies, edited by K. Ng, and P Nesi. Hershey, PA: Information Science Reference.
    Kassler, M.1970An essay toward specification of a music-reading machineMusicology and the computer, edited by B. Brook. New York: City University of New York Press.
    Kassler, M.1972Optical character recognition of printed music: A review of two dissertationsPerspectives of New Music 11 250-54.
    Kasturi, R., and L. O'Gorman1992Document image analysis techniquesMachine Vision and Applications 5 (3): 141–142.
    Katayose, H., T. Fukuoka, K. Takami, and S. Inokuchi1990Expression extraction in virtuoso music performancesProceedings of the Tenth International Conference on Pattern Recognition 780-84.
    Katayose, H., and S. Inokuchi1989The kansei music systemComputer Music Journal 13 (4): 72-77.
    Katayose, H., H. Kato, M. Imai, and I. S.1989An approach to an artificial music expertProceedings of the International Computer Music Conference 139-46.
    Kato, H., and S. Inokuchi1988Automatic recognition of printed piano music based on bar unit processing (in japanese)Transactions of I. E. C. E. J71-D (5): 894-901.
    Kato, H., and S. Inokuchi1990The recognition system for printed piano music using musical knowledge and constraintsProceedings of the International Association for Pattern Recognition Workshop on Syntactic and Structural Pattern Recognition 231-48.
    Kato, H., and S. Inokuchi1992A recognition system for printed piano music using musical knowledge and constraintsStructured document image analysis, edited by H. S. Baird, H. Bunke, and K. Yamamoto. Berlin: Springer-Verlag.
    Kim, W. J., M. J. Chung, and Z. Bien1987Recognition system for a printed music scoreProceedings of TENCON 87: 1987 IEEE Region 10 Conference 'Computers and Communications Technology Toward 2000 2 573-77.
    Kinoshita, T., H. Muraoka, and H. Tanaka1998Note recognition using statistical information of musical note transitionsJournal of the Acoustical Society of Japan 54 (3): 190-98.
    Knopke, I., and D. Byrd2007Towards MusicDiff: A foundation for improved optical music recognition using multiple recognizersProceedings of the Eighth Annual Conference of the International Society for Music Information Retrieval (ISMIR), at Vienna, Austria. 121-24.
    Kobayakawa, T.1993Auto music score recognition systemProceedings SPIE: Character Recognition Technologies 1906 112-23.
    Kolakowska, A.2008Applying decision trees to the recognition of musical symbolsProceedings of the First International Conference on Information Technology, at Gdansk, Poland.
    Kopec, G., P. Chou, and D. Maltz1995Markov source model for printed music decodingProceedings of the SPIE 2422 115-25.
    Kurth, F., M. Müller, C. Fremerey, Y. Chang, and M. Clausen2007Automated synchronization of scanned sheet music with audio recordingsProceedings of the Seventh International Conference on Music Information Retrieval (ISMIR), at Vienna, Austria. 261–66.
    Laskov, L.2006Classification and Recognition of Neume Note Notation in Historical DocumentsProceedings of the International Conference on Computer Systems and Technologies, at Veliko Tarnovo, Bulgaria.
    Laskov, L., and D. Dimov.2007Color image segmentation for neume note recognitionProceedings of the International Conference on Automatics and Informatics, at Sofia, Bulgaria. III.37-41.
    Laskov, L., and D. Dimov.2008Segmentation of Ancient Neumatic Musical NotationProceedings of the International Conference on Automatics and Informatics, at Sofia, Bulgaria. II.21–4.
    Lee, M. W., and J. S. Choi1985The recognition of printed music score and performance using computer vision system (in korean and english translation)Journal of the Korean Institute of Electronic Engineers 22 (5): 429-35.
    Lee, S., and J. Shin1994Recognition of music scores using neural networksJournal of the Korea Information Science Society 21 (7): 1358-66.
    Leite, J., M. Ferrand, and A. Cardoso1998Riem: A system for recognition and interpretation of music writing (in portuguese)Dept. Engenharia Informatica, Faculdade de Cincias e Tecnologia, Universidade de Coimbra,
    Leite, J. A., and M. Ferrand1994Riem: Reconhecimento e interpretao de escrita musical (in portuguese)B.Sc. diss., Universidade de Coimbra.
    Leplumey, I., and J. Camillerapp1991Comparison of region labelling for musical scoresFirst International Conference on Document Analysis 2 674-82.
    Leplumey, I., and J. Camillerapp1991Coopration entre la segmentation des rgions blanches et des rgions noires pour l'analyse de partitions musicales8e Congress Reconnaissance des Formes et Intelligence Artificielle 3 1045-52.
    Leplumey, I., J. Camillerapp, and G. Lorette1993A robust detector for music stavesProceedings of the International Conference on Document Analysis and Recognition, 902-05.
    Liu, X., and S. Zhang2009Structure analysis approach of music notes for optical music recognitionComputer Engineering and Design 30 (3): 709–712.
    Lobb, R., T. Bell, and D. Bainbridge2005Fast capture of sheet music for an agile digital music libraryProceedings of the Sixth International Conference on Music Information Retrieval (ISMIR), at London, UK. 145-52.
    Luckner, M.2003Automatic identification of selected symbols of music notationMSc diss., Warsaw University of Technology.
    Luckner, M.2006Recognition of noised patterns using non-disruption learning setProceedings of the Sixth International Conference on Intelligent Systems Design and Applications, at Jinan. 557–62.
    Luth, N.2002Automatic identification of music notationsProceedings of the Second International Conference on Web Delivering of Music (WEDELMUSIC), 203-10.
    MacMillan, K., M. Droettboom, and I. Fujinaga2001Gamera: A structured document recognition application development environmentProceedings of the Second Annual International Symposium on Music Information Retrieval (ISMIR), 15–16.
    MacMillan, K., M. Droettboom, and I. Fujinaga2002Gamera: Optical music recognition in a new shellProceedings of the International Computer Music Conference, 482–85.
    Maenaka, K., and Y. Tadokoro1983Recognition of music using the special image-input-device enabling to scan the staff of music as the supporting system for the blind (in japanese)Prl83-60 37-45.
    Mahoney, J. V.1982Automatic analysis of musical score imagesBS diss., Massachusetts Institute of Technology.
    Marinai, S., and P. Nesi1999Projection based segmentation of musical sheetsProceedings of the International Conference on Document Analysis and Recognition, at Bangalore, India. 515-18.
    Martin, N. G.1987Towards computer recognition of the printed musical scoreBSc diss., Thames Polytechnic.
    Martin, P.1989Reconnaissance de partitions musicales et rseaux de neurones: Une tudeActes 7 ime Congrs AFCET de Reconnaissance des Formes et Intelligence Artificielle 217-26.
    Martin, P.1992Rseaux de neurones artificiels: Application la reconnaissance optique de partitions musicalesPhD diss., IMAG.
    Martin, P., and C. Bellissant1991Low-level analysis of music drawing imagesInternational Conference on Document Analysis and Recognition 417-25.
    Martin, P., and C. Bellissant1991Neural networks at different levels of musical score image analysis systemSeventh Scandinavian Conference on Image Analysis 1102-09.
    Martin, P., and C. Bellissant1992Neural networks for the recognition of engraved musical scoresInternational Journal of Pattern Recognition and Artificial Intelligence 6 (1): 193-208.
    Matsushima, T.1988Automatic printed-music-to-braille translation systemJournal of Information Processing 11 (4): 249-57.
    Matsushima, T.1992Computerized japanese traditional music processing systemProceedings of the International Computer Music Conference, 121-24.
    Matsushima, T., T. Harada, I. Sonomoto, K. Kanamori, A. Uesugi, Y. Nimura, S. Hashimoto, and S. Ohteru1985Automated recognition system for musical score: The vision system of wabot-2(112: 25-52):
    Matsushima, T., S. Ohteru, and S. Hashimoto1989An integrated music information processing systemProceedings of the International Computer Music Conference, 191-98.
    Matsushima, T., S. Ohteru, and K. Kanamori1985Automatic recognition of printed music (in japanese)Japan Acoustics Society Journal 41 (6): 412-15.
    Matsushima, T., I. Sonomoto, T. Harada, K. Kanamori, and S. Ohteru1985Automated high speed recognition of printed music (wabot-2 vision system)Proceedings of the 1985 International Conference on Advanced Robotics 477-82.
    McGee, W., and P. Merkley1991The optical scanning of medieval musicComputers and the Humanities 25 (1): 47-53.
    McGee, W. F.1994Musicreader: An interactive optical music recognition systemComputing in Musicology 9 146-51.
    McGee, W. F., and P. Merkley1989Optical recognition of music using page straightening
    McKay, C., and I. Fujinaga2004Automatic genre classification using large high-level musical feature setsProceedings of the Fifth International Conference on Music Information Retrieval (ISMIR), at Barcelona, Spain.
    McKay, C., and I. Fujinaga2006Jsymbolic: A feature extractor for midi filesProceedings of the International Computer Music Conference, at New Orleans, LA.
    McKay, C., and I. Fujinaga2007Style-independent computer-assisted exploratory analysis of large music collectionsJournal of Interdisciplinary Music Studies 1 (1): 63-85.
    McLean, G.1991Music recognitionBSc diss., Heriot-Watt University.
    McPherson, J. R.2002Introducing feedback into an optical music recognition systemProceedings of the Third International Conference on Music Information Retrieval (ISMIR),
    McPherson, J. R., and D. Bainbridge2001Coordinating knowledge within an optical music recognition systemProceedings of the The 4th New Zealand Computer Science Research Students' Conference (NZCSRSC'01), at Christchurch, New Zealand. 50–58.
    Mitobe, Y., H. Miyao, and M. Maruyama2004A fast hmm algorithm based on stroke lengths for on-line recognition of handwritten music scoresProceedings of the Ninth International Workshop on Frontiers in Handwriting Recognition, at Tokyo, Japan. 521–26.
    Miyao, H., and R. Haralick2000Format of ground truth data used in the evaluation of the results of an optical music recognition systemProceedings of the IAPR Workshop on Document Analysis Systems, at Rio de Janeiro, Brazil. 497–506.
    Miyao, H., and Y. Nakano1995Head and stem extraction from printed music scores using a neural network approachProceedings of the Third International Conference on Document Analysis and Recognition, at Montreal, QC. 1074-79.
    Miyao, H., and Y. Nakano1996Note symbol extraction for printed piano scores using neural networksIEICE Transactions on Information and Systems E79-D (5): 548-54.
    Miyao, H., and M. Okamoto2007Stave extraction for printed music scores using dp matchingJournal of Advanced Computational Intelligence and Intelligent Informatics 8 (2): 208–15.
    Miyao, H. T., T. Ejima, M. Miyahara, and K. Kotani1990Recognition for printed piano scores (in japanese)Nlc90-34, Pru90-74 39-46.
    Miyao, H. T., T. Ejima, M. Miyahara, and K. Kotani1992Symbol recognition for printed piano scores based on the musical knowledge (in japanese)Transactions of the Institute of Electronics, Information and Communication Engineers D-II J75D-II (11): 1848-55.
    Miyao, Hidetoshi2002Stave extraction for printed music scoresIntelligent data engineering and automated learning, Berlin: Springer.
    Modayur, B. R., R. M. Haralick, and L. G. Shapiro1992On printed music score symbol recognitionProceedings of the Symposium on Document Analysis and Information Retrieval, 16-18.
    Modayur, B. R., V. Ramesh, R. M. Haralick, and L. G. Shapiro1992Muser-a prototype musical recognition system using mathematical morphologyIntelligent Systems Laboratory, EE Dept, FT-10 University of Washington.
    Modayur, B. R., V. Ramesh, R. M. Haralick, and L. G. Shapiro1993Muser: A prototype musical recognition system using mathematical morphologyMachine Vision and Applications 6 (2-3): 140-50.
    Modayur, B.1996Music score recognition: A selective attention approach using mathematical morphologyIntelligent Systems Laboratory, EE Dept, FT-10 University of Washington.
    Muge, F., I. Granado, M. Mengucci, P. Pina, V Ramos, N. Sirakov, J Caldas Pinto, A Marcolino, M Ramalho, P Vieira, and A Maia do Amaral2000Automatic feature extraction and recognition for digital access of books of the renaissanceResearch and advanced technology for digital libraries, edited by J. Borbinha, and T. Baker. Berlin: Springer.
    Musitek1994Musitek, midiscanKeyboard 20 (3): 136.
    Nagy, G.1989Document analysis and optical character recognitionFifth International Conference on Image Analysis and Processing 511-29.
    Nakamura, Y., M. Shindo, and S. Inokuchi1978Input method of [musical] note and realization of folk music data-base (in japanese)Institute of Electronics and Communications Engineers of Japan (IECE) TG PRL78-73 41-50.
    Nelson, G., and T. R. Penney1973Pattern recognition in musical score - project no. M88.Computers and the Humanities 8 50-51.
    Newell, C., and H. and, W.1993Midiscan for windows
    Ng, K.2002Document imaging for music manuscriptProceedings of the Sixth World Multiconference on Systemics, Cybernetics and Informatics, at Florida, USA.
    Ng, K.2002Music manuscript tracingGraphics Recognition Algorithms and Applications 330-42.
    Ng, K., D. Cooper, and B. Ong2001Towards an integrated handwritten music manuscript analysis and recognition systemProceedings of the Conference for Content Integrated Research in Creative User Systems (CIRCUS), at Glasgow.
    Ng, K., D. Cooper, and B. Ong2002Optical music analysis: A reverse engineering approachProceedings of the EVA, at Florence, Italy.
    Ng, K.1995Automated computer recognition of music scorePhD diss., University of Leeds.
    Ng, K.2004Optical music analysis for printed music score and handwritten music manuscriptVisual perception of music notation: On-line and off-line recognition, edited by S. George. Hershey, PA: IRM Press.
    Ng, K., R. Boyle, and D. Cooper1995Automated optical musical score recognition and its enhancement using high-level musical knowledgeProceedings of the XI Colloquium on Musical Informatics, at Bologna, Italy. 167-70.
    Ng, K., R. Boyle, and D. Cooper1995Low- and high-level approaches to optical music score recognitionIEEE Colloquium on Document Image Processing and Multimedia Environments 3 1-6.
    Ng, K., R. Boyle, and D. Cooper1996Hand written music manuscript recognitionProceedings of the International Computer Music Conference, at Hong Kong, China. 500-03.
    Ng, K., D. Cooper, E. Stefani, R. Boyle, and N. Bailey1999Embracing the composer: Optical recognition of hand-written manuscriptsProceedings of the International Computer Music Conference, at Beijing, China. 500-03.
    Ng, K. C., and R. D. Boyle1992Segmentation of music primitivesProceedings of the British Machine Vision Conference, at Leeds, UK. 472-80.
    Ng, K. C., and R. D. Boyle1994Reconstruction of music scores from primitive sub-segmentation
    Ng, K. C., and R. D. Boyle1996Recognition and reconstruction of primitives in music scoresImage and Vision Computing 14 (1): 39-46.
    Nielsen, J.2009Statistical analysis of music corporaBachelor diss., University of Copenhagen.
    Ohteru, S.1987Automatic recognition of music score (in japanese)Bit (special issue on Computer and Music) 92-100.
    Ohteru, S.1988Data entry and automatic recognition of music score (in japanese)Journal of the Information Processing Society of Japan 29 (6): 586-92.
    Ohteru, S., and a. et1984A multi processor system for high speed recognition of printed music (in japanese)National Convention Records of IECE
    Onoe, M., M. Ishizuka, and K. Tsuboi1979Experiment on automatic music reading (in japanese)Proceedings of the 20th IPSJ National Conference, 6F-65.
    Ostenstad, B.1988Oppdeling av abjektene I et digitalt notebilde I klassifiserbare enheter (in norwegian)Institute of Informatics, Oslo, Norway.
    Ouyang, Y., J. Burgoyne, L. Pugin, and I. Fujinaga2009Complex layout analysis of medieval music manuscripts for information extraction and optical reccognitionProceedings of the International Computer Music Conference, at Montreal, QC.
    Pennycook, B.1990Towards advanced optical music recognitionAdvanced Imaging 54-57.
    Perrotti, F. A., and R. A. Lotufo1993Pre-processamento, exctracao de atributos e primeiro nivel de classiccao para un sistema de reconhecimento otico de simbolos musicaisProceedings of the VI Brazilian Symposium in Computer Graphics and Image Processing (SINGRAPI),
    Phon-Amnuaisuk, S2009Estimating hmm parameters using particle swarm optimisationApplications of evolutionary computing, Berlin: Springer.
    Pinto, T., A. Rebelo, G. Giralid, J. Cardoso2011Music score binarization based on domain knowledgePattern Recognition and Image Analysis, Berlin: Springer. 700–708.
    Prerau, D.1971Computer pattern recognition of printed musicAFIP Joint Computer Conferences 39 153–62.
    Prerau, D. S.1970Computer pattern recognition of standard engraved music notationPh.D. diss., Massachusetts Institute of Technology.
    Prerau, D. S.1975Do-re-mi: A program that recognizes music notationComputer and the Humanities 9 (1): 25-29.
    Pruslin, D.1966Automatic recognition of sheet musicScD. diss., Massachusetts Institute of Technology.
    Pugin, L.2001Réalisation d'un système de superposition de partitions de musique anciennesBSc diss., Geneva University.
    Pugin, L.2006Aruspix: An automatic source-comparison systemComputing in Musicology 14 49–60.
    Pugin, L.2006Lecture et traitement informatique de typographies musicales anciennes: Un logiciel de reconnaissance de partitions par modèles de Markov cachésPhD diss., Geneva University.
    Pugin, L.2006Optical music recognition of early typographic prints using hidden Markov modelsProceedings of the Seventh International Conference for Music Information Retrieval (ISMIR), at Victoria, BC. 53-56.
    Pugin, L.Forthcoming.Representation and dissemination of music: Early typographic prints and digitalizationContemporary Classical Music: Papers of the 2006 Intercongressional Symposium of the International Musicological Society
    Pugin, L.Forthcoming.Computer tools for early music sources comparison: A practical study on marenzio editions and re-editionsLuca Marenzio and the Late Renaissance Madrigal: Music, Poetry, Patronage, and Reception
    Pugin, L.Forthcoming.Editing renaissance music: The aruspix projectBeihefte zur Editio, Internationales Jahrbuch für Editionswissenschaften 94–103.
    Pugin, L., J. Burgoyne, and I. Fujinaga2007Goal-directed evaluation for the improvement of optical music recognition on early music printsProceedings of the Seventh ACM/IEEE-CS joint conference on Digital libraries (JCDL), at Vancouver, BC. 303–04.
    Pugin, L., J. Burgoyne, and I. Fujinaga2007MAP adaptation to improve optical music recognition of early music documents using hidden Markov modelsProceedings of the Eighth International Conference on Music Information Retrieval (ISMIR), at Vienna, Austria. 513–16.
    Pugin, L., J. Burgoyne, and I. Fujinaga2007Reducing costs for digitising early music with dynamic adaptationResearch and Advanced Technology for Digital Libraries 4675 471–74.
    Pugin, L., J. Burgoyne, D. Eck, and I. Fujinaga2007Book-Adaptive and Book-Dependent Models to Accelerate Digitization of Early MusicNIPS Workshop on Music, Brain, and Cognition at Whistler, BC.
    Pugin, L., J. Hockman, J. Burgoyne, and I. Fujinaga2008Gamera versus aruspix: Two optical music recognition approachesProceedings of the Ninth Conference of the International Society for Music Information Retrieval (ISMIR), at Philadelphia, PA. 419–24.
    Rajds, Arkadiusz2011Mathematical Morphology in the Process of Musical Notation RecognitionAdvances in Intelligent and Soft Computing, Volume 84/2010, 331-5
    Ramirez, C., and J. Ohya2010Symbol classification approach for OMR of square notation manuscriptsProceedings of the 11th Annual Conference of the International Society for Music Information Retrieval (ISMIR), at Utrecht, Netherlands. 549–53.
    Randriamahefa, R., J. Cocquerez, C. Fluhr, F. Pépin, and S. Philipp1993Printed music recognitionProceedings of the International Conference on Document Analysis and Recognition, at Tsukuba, Japan. 898-901.
    Rebelo, A., A. Capela, J. da Costa, C. Guedes, E. Carrapatoso, and J. Cardoso2007A shortest path approach for staff line detectionProceedings of the Third International Conference on Automated Production of Cross Media Content for Multi-channel Distribution (AXMEDIS), 33–44.
    Rebelo, A., G. Capela, and J. Cardoso2010Optical recognition of music symbols: A comparative studyInternational Journal on Document Analysis and Recognition 13 (1): 19–31.
    Rebelo, A., I. Fujinaga, F. Paszkiewicz, C. Guedes, A. Marcal, and J. Cardoso.2012Optical music recognition: State of the art and open issues for handwritten music scoresInternational Journal of Multimedia Information Retrieval (March 2012): 1–18.
    Reed, K., and J. Parker1996Automatic computer recognition of printed music13th International Conference on Pattern Recognition 3 803-07.
    Reed, K. T.1995Optical music recognitionMSc diss., University of Calgary.
    Richard, D. M.1990Godel tune: Formal models in music recognition systemsICMC Glasgow 1990. Proceedings 338-40.
    Riley, J., and I. Fujinaga2003Recommended best practices for digital image capture of musical scoresOCLC Systems and Services 19 (2): 62-69.
    Roach, J. W., and J. E. Tatem1988Using domain knowledge in low-level visual processing to interpret handwritten music: An experimentPattern Recognition 21 (1): 33-44.
    Roads, C.1986The tsukuba musical robotComputer Music Journal 10 (2): 39-43.
    Rossant, F.2002A global method for music symbol recognition in typeset music sheetsPattern Recognition Letters 23 (10): 1129-41.
    Rossant, F., and I. Bloch2004A fuzzy model for optical recognition of musical scoresFuzzy sets and systems 141 (2): 165-201.
    Rossant, F., and I. Bloch2005Optical music recognition based on a fuzzy modeling of symbol classes and music writing rulesProceedings of the IEEE International Conference on Image Processing, at Genoa, Italy.
    Rossant, F., and I. Bloch2007Robust and adaptive OMR system including fuzzy modeling, fusion of musical rules, and possible error detectionEURASIP Journal on Advances in Signal Processing 2007 (1): 160–85.
    Roth, M.1992OMR-optical music recognitionDiploma diss., Swiss Federal Institute of Technology.
    Roth, M.1994An approach to recognition of printed musicDiploma diss., Swiss Federal Institute of Technology.
    Ruttenberg, A.1991Optical reading of typeset musicMSc diss., Massachusetts Institute of Technology.
    Sammartino, S., L. Tardón, and I. Barbancho.2010Graphical tool for the optical music recognition of scores in white mensural notation.Proceedings of the Conference on Artificial Intelligence and Applications at Innsbruck, Austria
    Sawada, H., T. Matsushima, T. Itakagi, and S. Ohteru1990A practical bilateral translation system between printed music and brailleProceedings of Sixth International Workshop on Computer Applications for the Visually Handicapped
    Sawaki, M., H. Murasei, N. Hagita, and K. Ishii1998A study on syakuhachi score recognition with embedded symbolsTransactions of the Institute of Electronics, Information and Communication Engineers D-II J81D-II (10): 2480-82.
    Seales, W., and A. Rajasekar1995Interpreting music manuscripts: A logic-based, object-oriented approachProceedings of the Third International Computer Science Conference on Image Analysis Applications and Computer Graphics, 181-88.
    Selfridge-Field, E.1994How practical is optical music recognition as an input method?Computing in Musicology 9 (1993-94): 159–66.
    Selfridge-Field, E.1994Optical recognition of musical notation: A survey of current workComputing in Musicology 9 109-45.
    Sicard, E.1992An efficient method for the recognition of printed musicProceedings of 11th International Conference on Pattern Recognition (IAPR) 573-76.
    Smiatacz, M., and W. Malina2008Matrix-based classifiers applied to recognition of musical notation symbolsProceedings of the First International Conference on Information Technology, at Gdansk, Poland. 1–4.
    Soak, S. M., S. C. Chang, T. Shin, and B. H. Ahn2002Music recognition system using art-1 and gaProceedings of SPIE 4734 171.
    Sokei, S., T. Yamashiro, Z. Iha, and M. Toguchi1997Study of recognition for okinawa syamisen score kunkunsi
    Sonomoto, I., T. Harada, T. Matsushima, K. Kanamori, M. Konuma, A. Uesugi, Y. Nimura, S. Hashimoto, and S. Ohteru1985Automated recognition system of printed music for playing keyboards (in japanese)Acoustical Society of Japan TG MA84-22 17-22.
    Stevens, C., and C. Latimer1992A comparison of connectionist models of music recognition and human performanceMinds and Machines 2 (4): 379-400.
    Stückelberg, M.1999Musical score recognition using probabilistic inference
    Stückelberg, M., and D. Doermann1999On musical score recognition using probabilistic reasoningProceedings of the Fifth International Conference on Document Analysis and Recognition, at Bangalore, India. 115-18.
    Stückelberg, M., C. Pellegrini, and M. Hilario1997An architecture for musical score recognition using high-level domain knowledgeProceedings of the Fourth International Conference on Document Analysis and Recognition (Cat. No.97TB100138) 2 813-18.
    Stückelberg, M., C. Pellegrini, and M. Hillario1997A preview of an architecture for musical score recognitionCUI, University of Geneva, Geneva, Switzerland.
    Su, M. C., C. Y. Tew, and H. H. Chen2001Musical symbol recognition using som-based fuzzy systemsProceedings of the IFSA World Congress and 20th NAFIPS International Conference,
    Szwoch, M.2005A robust detector for distorted music stavesComputer analysis of images and patterns, Berlin: Springer.
    Szwoch, M.2008Using MusicXML to evaluate accuracy of OMR systemsProceedings of the Fifth International Conference on Diagrammatic Representation and Inference, at Herrsching, Germany. 419–22.
    Tambouratzis, T.2011Identification of key music symbols for optical music recognition and on-screen presentationThe 2011 International Joint Conference on Neural Networks (IJCNN), 1935–42
    Tardón, L., S. Sammartino, I. Barbancho, V. Gómez, and A. Oliver2010Optical music recognition for scores written in white mensural notationEURASIP Journal on Image and Video Processing 2009
    Thorud, E.1988Analyse av notebilder (in norwegian)Institute of Informatics, Oslo, Norway.
    Tojo, A., and H. Aoyama1982Automatic recognition of music scoreSixth International Conference on Pattern Recognition 1223.
    Tonnesland, S.1986Symfoni: System for note coding (in norwegian)Institute of Informatics, Oslo, Norway.
    Toyama, F., K. Shoji, and J. Miyamichi2006Symbol recognition of printed piano scores with touching symbolsProceedings of the 18th International Conference on Pattern Recognition, at Hong Kong. 480–83.
    Vieira, P., and J. C. Pinto2001Recognition of musical symbols in ancient manuscriptsProceedings of the International Conference on Image Processing, at Thessaloniki, Greece. 38–41.
    Vrist, S.2009Optical music recognition for structural information from high-quality scanned musicCandidate diss., University of Copenhagen.
    Watkins, G.1994A fuzzy syntactic approach to recognising hand-written musicProceedings of the International Computer Music Conference 297-302.
    Wei, L., Q. Salih, and H. Hock2008Optical tablature recognition (OT) system: Using Fourier descriptors as a recognition toolProceedings of the International Conference on Audio, Language and Image Processing, at Shanghai, China. 1532–39.
    Wijaya, K., and D. Bainbridge1999Staff line restorationSeventh International Conference on Image Processing and Its Applications 2 760-64.
    Wilk, R.1995Converting graphic musical data to a machine playable formMSc diss., McGill University.
    Wittlich, G.1973Project scoreComputational Musicology Newsletter 1 (1): 6.
    Wittlich, G., D. Byrd, and R. Nerheim1978A system for interactive encoding of music scores under computer controlComputers and the Humanities 12 (4): 309-19.
    Wittlich, G. E.1974Non-physics measurements on the pepr system: Seismograms and music scores
    Wolman, J., J. Choi, S. Asgharzadeh, and J. Kahana1992Recognition of handwritten music notationProceedings of the International Computer Music Conference 125-27.
    Wright, D. J.1994Optical music recognition: A deterministic, object-oriented approachMSc diss., University of Victoria.
    Yadid-Pecht, O., E. Brutman, L. Dvir, M. Gerner, and U. Shimony1992Ramit: Neural network for recognition of musical notesProceedings of the International Computer Music Conference 128-31.
    Yadid-Pecht, O., M. Gerner, L. Dvir, E. Brutman, and U. Shimony1996Recognition of handwritten musical notes by a modified neocognitronMachine Vision and Applications 9 (2): 65-72.
    Yin, F., G. Qingshi, and Z. Xiang1989Principle on designing the music reading system (in chinese)Mini-Micro Systems 10 (12): 1-10.
    diff --git a/_research/Posters_deprecated.md b/_research/Posters_deprecated.md deleted file mode 100644 index a120c021..00000000 --- a/_research/Posters_deprecated.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -layout: page -title: Posters -tab: Research -type: project ---- - -Burlet, G. and I. Fujinaga. [Robotaba Guitar Tablature Transcription Framework]({{ site.url }}/posters/ISMIR2013poster.pdf). ISMIR 2013. - -Burlet, G., M. Wanderley, and I. Fujinaga. [Stompboxes: Kicking the Habit]({{ site.url }}/posters/NIME2013poster.pdf). NIME 2013. - -Groves, R., D. Precup, and I. Fujinaga. [Automatic Rock'n'Roll Accompaniment]({{ site.url }}/posters/RGroves_MCMPoster.pdf). Mathematics and Computation in Music Conference 2013. - -Vigliensoni, G., J.A. Burgoyne, and I. Fujinaga. [Musicbrainz For The World: The Chilean Experience]({{ site.url }}/posters/vigliensoni13musicbrainz_POSTER.pdf). ISMIR 2013. - -Vigliensoni, G., G. Burlet, and I. Fujinaga. [Optical Measure Recognition in Common Music Notation]({{ site.url }}/posters/vigliensoni13optical_POSTER.pdf). ISMIR 2013. - -Burlet, G., A. Porter, A. Hankinson, and I. Fujinaga. [Neon.js: Neume Editor Online]({{ site.url }}/posters/NeonPoster_portrait.pdf). ISMIR 2012. - -Hockman, J., D.M. Weigl, C. Guastavino, and I. Fujinaga. [Discrimination Between Phonograph Playback Systems]({{ site.url }}/posters/PPS_poster_v9.pdf). AES 2011. - -Knight, T., F. Upham, and I. Fujinaga. [The Potential for Automatic Assessment of Trumpet Tone Quality]({{ site.url }}/posters/Knight_ISMIR_Poster.pdf). ISMIR 2011. - -Neubarth, K., M. Bergeron, and D. Conklin. [Associations between Musicology and Music Information Retrieval]({{ site.url }}/posters/ismir_poster_bergeron.pdf). ISMIR 2011. - -Smith, J.B.L., J.A. Burgoyne, I. Fujinaga, D. De Roure, and J.S. Downie. [Design and Creation of a Large-Scale Database of Structural Annotations]({{ site.url }}/posters/smith2011_ISMIRposter_SALAMI_notypo.pdf). ISMIR 2011. - -Vigliensoni, G., J.A. Burgoyne, A. Hankinson, and I. Fujinaga. [Automatic Pitch Recognition in Printed Square-Note Notation]({{ site.url }}/posters/vigliensoni11automatic_POSTER.pdf). ISMIR 2011. - -Angeles, B., C. McKay, and I. Fujinaga. [Discovering Metadata Inconsistencies]({{ site.url }}/posters/angeles_mckay_fujinaga-Ismir2010_Poster_FINAL.pdf). ISMIR 2010. - -Burgoyne, J.A. and I. Fujinaga. [Smart Statistical Models for Musical Data]({{ site.url }}/posters/smt2010.pdf). SMT 2010. - -McKay, C., J.A. Burgoyne, J. Hockman, J.B.L. Smith, G. Vigliensoni, and I. Fujinaga. [Evaluating the Genre Classification Performance of Lyrical Features Relative to Audio, Symbolic and Cultural Features]({{ site.url }}/posters/mckay10evaluating_poster.pdf). ISMIR 2010. - -Vigliensoni, G., C. McKay, and I. Fujinaga. [Using jWebMiner 2.0 to Improve Music Classification Performance by Combining Different Types of Features Mined from the Web]({{ site.url }}/posters/vigliensoni10jwebminer_POSTER.pdf). ISMIR 2010. - -Li, B., J.B.L. Smith, and I. Fujinaga. [Optical Audio Reconstruction for Stereo Phonograph Records using White-light Interferometry]({{ site.url }}/posters/mitac_ismir_2009_v5.pdf). ISMIR 2009. - -Pugin, L., J.A. Burgoyne, and I. Fujinaga. [Optical Music Recognition to Digitise Early Music Collections on a Library Scale]({{ site.url }}/posters/pugin2007optical.pdf). IAML 2008. - -Pugin, L., J. Hockman, J.A. Burgoyne, and I. Fujinaga. [Gamera versus Aruspix: Two Optical Music Recognition Approaches]({{ site.url }}/posters/pugin2007optical.pdf). ISMIR 2008. - -Li, B., S. De Leon, and I. Fujinaga. [Alternative Digitization Approach for Stereo Phonograph Records Using Optical Audio Reconstruction]({{ site.url }}/posters/mitac_ismir_2007.pdf). ISMIR 2007. - -McKay, C. and I. Fujinaga. [jWebMiner: A Web-Based Feature Extractor]({{ site.url }}/posters/McKay2007jWebMiner_poster.pdf). ISMIR 2007. - -McKay, C. and I. Fujinaga. [Combining Features Extracted from Audio, Symbolic and Cultural Sources]({{ site.url }}/posters/mckay08combining_poster.pdf). ISMIR 2006. - -Li, B., J.A. Burgoyne, and I. Fujinaga. [Extending Audacity for Audio Annotation]({{ site.url }}/posters/ismir_2006_audacity_poster_v1d.pdf). ISMIR 2006. - -Li, B., C. Lai, and I. Fujinaga. [Technical Issues in Digitization of Large Online Collections of Phonograph Records]({{ site.url }}/posters/archiving_2006_poster_part1.pdf). Archiving Conference 2006. [Part 2]({{ site.url }}/posters/archiving_2006_poster_part2.pdf). - -Burgoyne, J.A. and L.K. Saul. [Learning Harmonic Relationships in Digital Audio with Dirichlet-Based Hidden Markov Models]({{ site.url }}/posters/burgoyne05learning-poster.pdf). ISMIR 2005. - -Sinyor, E., C. McKay, R. Fiebrink, D. McEnnis, and I. Fujianga. [Beatbox Classification Using ACE]({{ site.url }}/posters/ES_ISMIR_poster3by4v10.pdf). ISMIR 2005. diff --git a/_research/SALAMI/Structural_Analysis_of_Large_Amount_of_Music_Information_(SALAMI).md b/_research/SALAMI/Structural_Analysis_of_Large_Amount_of_Music_Information_(SALAMI).md deleted file mode 100644 index d293d6dc..00000000 --- a/_research/SALAMI/Structural_Analysis_of_Large_Amount_of_Music_Information_(SALAMI).md +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: page -title: Structural Analysis of Large Amounts of Music Information (SALAMI) -tab: Research -type: project -redirect_from: - - /research/salami/annotations - - /research/salami/annotations/ -permalink: /research/SALAMI/ ---- - -SALAMI is an innovative and ambitious computational musicology project. To date, musical analysis has been conducted by individuals and on a small scale. Our computational approach, combined with the huge volume of data now available from such source as the Internet Archive, will: a) deliver a very substantive corpus of musical analyses in a common framework for use by music scholars, students and beyond; and, b) establish a methodology and tooling which will enable others to add to this in the future and to broaden the application of the techniques we establish. A resource of SALAMI's magnitude empowers musicologists to approach their work in a new and different way, starting with the data, and to ask research questions that have not been possible before. - -There are two resources available on this site: - -* [Annotation data]({{ site.url }}/research/SALAMI/annotation): Visit this page to access the annotation data and to learn about how it was collected. -* [Blog](http://ddmal.music.mcgill.ca/blog/author:jordan): Here you'll find updates about SALAMI features and tools. The older posts recount the data collection process. -* [Background]({{ site.url }}/research/SALAMI/background): The background page gives an overview of the SALAMI project. It consists mainly of the proposal for the [Digging Into Data](http://www.diggingintodata.org/) grant that SALAMI was [awarded in 2009](http://diggingintodata.org/awards/2009/project/structural-analysis-large-amounts-music-information). - -Through a Digging Into Data grant, this research was supported by the [Social Sciences and Humanities Research Council of Canada](http://www.sshrc-crsh.gc.ca/), by the [National Science Foundation](http://www.nsf.gov/), and by [JISC](https://www.jisc.ac.uk/). diff --git a/_research/SALAMI/annotation.md b/_research/SALAMI/annotation.md deleted file mode 100644 index 3e4f1aba..00000000 --- a/_research/SALAMI/annotation.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -layout: page -title: The SALAMI Annotation Data -tab: Research ---- - -This page contains the most up-to-date information about the SALAMI Annotation Data. All of the data here are free to download and use. - -
    - -### Annotation Data - -Please visit our [Github page](https://github.com/DDMAL/salami-data-public) for the most up-to-date version of the data. The annotations used to be offered here as versioned zipfiles, but were migrated to Github in 2015. Here is a list of versions: - - -* [Latest version (Github)](https://github.com/DDMAL/salami-data-public) -* [SALAMI_data_v1.2](hold) -* [SALAMI_data_v1.1](hold) -* [SALAMI_data_v1.0](hold) - -
    - -### Feature Data - -We have compiled features published by The Echo Nest for the SALAMI data. These features are estimated by The Echo Nest, and include tatum/beat/bar/section times, global features such as time signature, tempo, key and mode, and metadata. The metadata may be especially useful to researchers hoping to purchase the music. - -* [echonest_features.zip](hold) - -If you would like to obtain other features for the music in SALAMI, just let us know and we can hopefully add it to this list. The features should be non-invertible, of course! - -
    - -### Utilities - -There is a SALAMI section at the [DDMAL GitHub page](https://github.com/DDMAL/SALAMI) that contains some useful files. Among them: - -* A [python script](https://github.com/DDMAL/SALAMI/blob/master/SALAMI_download.py), written and donated by [Oriol Nieto](http://steinhardt.nyu.edu/marl/people/nieto), to download all the SALAMI audio files that come from the Internet Archive. Provided without warranty, but works like a charm! -* A [parser](https://github.com/DDMAL/SALAMI/blob/master/get_sections_sept_2012.rb), written in Ruby, that was used to generate the parsed annotations new to version 1.2 (as well as a [shell script](https://github.com/DDMAL/SALAMI/blob/master/parse_annotations_shell.rb) to run it on all the files). -* A MATLAB function '[annotation_getfile.m](https://github.com/DDMAL/SALAMI/blob/master/annotation_getfile.m)' that reads annotation files into matrices. - -Hopefully you'll find all these resources have enough comments that you can modify and adapt the code easily. - - -_All of these files are provided as is, without guarantee. They are separate from the official SALAMI release and thus are not public domain, but you have permission to use them. If you have any handy tools you've developed to manage the SALAMI data, you're welcome to share here too! If enough resources accumulate, we'll devote a separate page to them._ - -
    - -### More information about the annotations - -This data set contains about half of the total data we collected. For the benefit of the community, the other half will remain secret for now, though it may be used as a test set for MIREX. -We are dedicating this data to the public domain through this [Creative Commons "license."](http://creativecommons.org/publicdomain/zero/1.0/) Follow the link for more information about the license, but, briefly put: this license, CC0, effectively frees users from all obligations regarding attribution, derivative works, and reuse. However, we kindly ask that when using the data you cite the [ISMIR paper describing its creation](http://music.mcgill.ca/~jordan/salami/SALAMI_ISMIR_2011.pdf). - -> Jordan B. L. Smith, J. Ashley Burgoyne, Ichiro Fujinaga, David De Roure, and J. Stephen Downie. 2011. Design and creation of a large-scale database of structural annotations. In Proceedings of the International Society for Music Information Retrieval Conference, Miami, FL, 555–60. - -Like any set of human-generated data, this data set contains some typos and other formatting errors, so please be aware. Updates to the database correcting these errors will follow; so will parsed versions of each file that separate the different layers of the annotations into different files. - -Information about the license, the data and more is contained in the ReadMe file that accompanies the data. A spreadsheet giving metadata about the annotations is also provided. You may also wish to read the [Annotator's Guide](http://music.mcgill.ca/~jordan/salami/SALAMI-Annotator-Guide.pdf) to better understand the annotation format. If you have any questions about the data, don't hesitate to write to [Jordan](mailto:jordan.smith2@mail.mcgill.ca), the contact author on the ISMIR paper. - -Last, and certainly not least, we offer our thanks to the many annotators who toiled to create this database: Christa Emerson, David Adamcyk, Elizabeth Llewellyn, Meghan Goodchild, Michel Vallières, Mikaela Miller, Parker Bert, Rona Nadler, and Rémy Bélanger de Beauport. Without their hard work and dedication, this project would have been, well, a lot smaller. We also thank Andreas Ehmann, David Bretherton, Gabriel Vigliensoni, Jessica Thompson, Mert Bay, Reiko Yamada, and William Carroll, who each played a vital role in the execution of the project. - -We also acknowledge the financial support of a Digging into Data Challenge grant, the Social Sciences and Humanities Research Council of Canada, JISC, and the National Science Foundation. - -So please, go ahead and download the data! We look forward to seeing what comes next. diff --git a/_research/SALAMI/background/background.md b/_research/SALAMI/background/background.md deleted file mode 100644 index 35e48dd2..00000000 --- a/_research/SALAMI/background/background.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -layout: page -title: About SALAMI -tab: Research -permalink: /research/SALAMI/background/ ---- - -## Table of Contents - -* [Introduction and Background](#introduction-and-background) -* [A. Compliance with Standards]({{ site.url }}/research/SALAMI/background/compliance) -* [B. Partnership]({{ site.url }}/research/SALAMi/background/partnership) -* [C. Research Products and Uses]({{ site.url }}/research/SALAMI/background/research_products) -* [D. Data Description]({{ site.url }}/research/SALAMI/background/data_description) -* [E. History and Resources]({{ site.url }}/research/SALAMI/background/history) -* [F. Technology and Work Plan]({{ site.url }}/research/SALAMI/background/technology) -* [G. Environmental Scan]({{ site.url }}/research/SALAMI/background/environmental_scan) - -
    - -### Introduction and Background - -SALAMI (Structural Analysis of Large Amounts of Music Information) is an innovative and ambitious computational musicology project. - -To date, musical analysis has been conducted by individuals and on a small scale. Our computational approach, combined with the huge volume of data now available from such source as the Internet Archive, will: a) deliver a very substantive corpus of musical analyses in a common framework for use by music scholars, students and beyond; and, b) establish a methodology and tooling which will enable others to add to this in the future and to broaden the application of the techniques we establish. A resource of SALAMI's magnitude empowers musicologists to approach their work in a new and different way, starting with the data, and to ask research questions that have not been possible before. - -Structural analysis of music (or formal analysis) is one of the most fundamental analyses performed by music scholars (music theorists, musicologists, ethnomusicologists, etc.). The formal analysis usually precedes any other types of analysis because it provides the overall view of the piece. The main goal of formal analysis is to find similar sections within a piece of music and label these sections, such as ABA and ABCB'A. With further analysis, these sections can be marked with predefined labels such as Intro, Verse, Bridge, Chorus, Verse, and Outro (popular music) or Introduction, Exposition, Development, Recapitulation, and Coda (sonata form). - -Thus, the formal analysis is potentially useful in classifying different genres of music and it can be used to compare different styles of composition within a composer's works or between composers. It can also be used to understand historical influences over time and location. By analyzing large sets of music, new discoveries can be made about these questions. Another important aspect of formal analysis is that it can be applied to almost any music, anything from Russian folk songs to Byzantine music to Miles Davis or to electronic music. Furthermore, there are many musics in the world where other types of analysis, such as harmonic, motivic, or rhythmic, have little meaning. - -Variations 2 Audio Timeliner from Indiana University is an audio annotation and analysis tool for creating and labeling bubble diagrams. These diagrams can be used to navigate music or other audio for detailed study. - -
    - -![]({{ site.url }}/assets/variations-sample-timeline.jpeg) - -
    - -Traditionally, structural analysis of music has been done manually, with very few exceptions (e.g., Huron 2001, Järvinen et al. 1999). This is a time-consuming task and only a small sample of music has been analysed. Moreover, since there are no standard formats for describing the structure (see various examples of traditional analysis in Appendix B), let alone a standard machine-readable file format, there is no simple way to compare large amount of music based upon its various internal structures. -Even within the field of Music Information Retrieval (MIR) research, with its evolving computational approach to music analysis, the majority of structural analysis work has been performed on a few hundred pieces, at best. SALAMI will be analysing ~350,000 pieces (~23,000 hours). The algorithms chosen, modified and/or developed for use by SALAMI will be trained and evaluated using a set of ground-truth data based upon several thousand exemplars created by trained musicologists. This research paradigm is thus orders of magnitude greater than any previous research. -The range of different kinds of music that will be analysed will be of far larger variety than anything previously done. Most prior analytic research work has focused primarily on Western popular and "classical" music. Our vast dataset includes a wide variety of music from all over the world, from many time periods, and includes folk music, "classical" music, contemporary music, improvised music, and live music. -The ability to analyse music directly in the audio format is another important contribution of this project. In the past, most music structural analyses have been conducted using only the musical scores that were readily available, especially with European "classical" music. The new audio-based structural information created by SALAMI should offer novel perspectives to music research especially for ethnomusicologists where no scores exist for many of the music cultures. -Although there is much information to be gained from studying audio data, the technical expertise needed to analyse music in audio format has prevented most music researchers from dealing with the actual performance of the music. With the recent revolution in MIR and CM research, many new tools and algorithms to analyse and to visualise music audio have been developed, the most promising of which will be investigated, modified and then deployed by the SALAMI team. -For music scholars, having access to a large corpus of world music that is already analysed will be of great significance, providing new perspectives and insights previously unavailable. They will be able to study the popularity or decline of various forms over time and geographical space as well as discovering evolutionary and revolutionary changes in musical forms. SALAMI will be providing actual research examples (along with web-based facilities to conduct and/or replicate the research) that demonstrate how these types of questions can be investigated based on the resultant analytical data. By using uniform methods to analyze a large quantity of music from all over the world SALAMI will empower musicologists and interested music enthusiasts to compare, contrast and explore music structures in ways only limited by their imaginations. diff --git a/_research/SALAMI/background/compliance.md b/_research/SALAMI/background/compliance.md deleted file mode 100644 index 1d3ee037..00000000 --- a/_research/SALAMI/background/compliance.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: page -title: Compliance -tab: Research ---- - - -All of our software is written in the industry standard Java programming language. The communications between different components of SALAMI and NEMA are established using Webservices (REST, SOAP, etc.). The music structure will be expressed in W3C standard RDF (Resource Description Framework) [[1]](http://www.w3.org/RDF/ "http://www.w3.org/RDF/") based on the Music Ontology (Raimond et al. 2007). [[2]](http://raimond.me.uk/pubs/Raimond-ISMIR2007-Submitted.pdf "http://raimond.me.uk/pubs/Raimond-ISMIR2007-Submitted.pdf") We will adopt linked data guidelines (linkeddata.org) to ensure that the data we publish is as reusable as possible. For provenance we will adopt the emerging Open Provenance Model. [[3]](http://openprovenance.org/ "http://openprovenance.org/") We will comply with Open Archive Initiative [[4]](http://www.openarchives.org/ "http://www.openarchives.org/") standards including the RDF-based Object Reuse and Exchange representation. The RDF data will be made available via SPARQL [[5]](http://www.w3.org/TR/rdf-sparql-query/ "http://www.w3.org/TR/rdf-sparql-query/") endpoints. All these standards are already in use in partner projects and underpin NEMA to a significant extent. - -
    - -1. See . -2. Music Ontology creator, Yves Raimond, sits on the SALAMI Advisory Board. See . -3. See . -4. See . -5. See . diff --git a/_research/SALAMI/background/data_description.md b/_research/SALAMI/background/data_description.md deleted file mode 100644 index e372f8ee..00000000 --- a/_research/SALAMI/background/data_description.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -layout: page -title: Data Description -tab: Research ---- - -The SALAMI audio data collections are both large and diverse. The range of styles, regions, and time periods included within the totality of these collections is breathtaking: _A Capella_ to Zydeco, Appalachia to Zambia, and Medieval to Post-Modern. - -As Table 1 shows, the SALAMI audio collections are drawn from a range of sources. Each source collection has its unique attributes with regard to content, access and intellectual property issues. The Internet Archive [[1]](http://www.archive.org/) (IA) collection is by far the largest with ~18,000 hours of audio. IA's substantial collection of live concert recordings (~66,000 pieces) is particularly exciting and represents a novel source for structural analysis. The DRAM [[2]](http://www.dramonline.org/) collection has a special focus on the folk, jazz, orchestral, and 20th-Century avant-garde musics of the United States. The IMIRSEL and McGill collections are those built up by Downie and Fujinaga respectively for their MIR, CM and MIREX evaluation experiments. The IMIRSEL collection has two subcollections of note. First, it has the collected works of 11 major "classical" composers: Bach, Beethoven, Brahms, Chopin, Dvorak, Handel, Hayden, Mendelssohn, Mozart, Schubert, and Vivaldi. Second, it has a subcollection of ~3,000 Latin dance pieces representing 10 different genres from Axé to Tango. The McGill collection has particular strengths in the variety of "world" musics it comprises. - -The raw audio files are encoded in a wide variety of audio formats ranging from low-quality MP3s to CD-quality 44.1 KHz, 16-bit wav files. Decoding these diverse formats is not an issue as the SALAMI team already has the necessary tools in hand. The underlying recording quality is another variable to be considered, however, as many recordings have been made outside of professional recordings studios using less-than-ideal equipment (for example, the IA live concert recordings). Thus, it will be part of the SALAMI project's research work to study the effect of recording quality on the accuracy of the structural analyses performed. - -
    - -_Table 1\. The SALAMI Audio Data Collections (Values rounded for readability)_ - -| SOURCE COLLECTION | SOURCE ACCESS TYPE | TRACKS | HOURS | SIZE (TB) UNCOMPRESSED | -|---|---|---|---|---| -| Internet Archive | Open via Internet | 276,000 [3] | 18,333 | 11.00 | -| DRAM | Subscription via Internet | 8,000 | 2,300 | 1.38 | -| IMIRSEL | Closed (Stored locally) | 34,000 | 2,267 | 1.36 | -| McGill | Closed (Stored locally) | 32,000 | 2,133 | 1.28 | -| __Totals__ | | 350,000 | 23,267 | 15.02 | - -
    - -Music data is famously problematic with regard to intellectual property issues. Because of the constant fear of litigation that could shut down any future music related research, the SALAMI team members have been, and will continue to be, absolutely scrupulous in their handling of the raw music audio data. We have obtained specific access and use permissions for analytic research from IA and DRAM (see Letters section). In fact, to better ensure communications with IA and DRAM, each have agreed to place of one of their leaders on the SALAMI Advisory Board. Because we need to be ever mindful of source bandwidth resources, we are arranging with DRAM to make a hard-drive direct copy of their data collection (funding for which is already budgeted within the NEMA grant). With regard to the IA collection, the current arrangement that we have worked out with our IA representative is an http-based "trickle" feed across their collections that will be conducted over Fall 2009\. The IMIRSEL and McGill collections are owned outright by UIUC and McGill respectively so no special permission is required. - -It is important to stress here that neither this specific SALAMI project, nor the more general NEMA project, have any desire nor intention to deliver raw source audio files to the world. The model both projects have adopted is one which exploits the power of RDF and linked data whereby original source audio files will be uniquely identified using Uniform Resource Identifiers (URI). When a scholar makes use of one of structural analysis files, the file will contain the URI that will point to the location where the scholar can legally access the related source audio file. This model is also important for "goodwill." In working with our source contributors, we want them to see some benefit from their efforts. Thus, when a scholar, student, or general user makes use of a structural file based upon an DRAM (or IA) recording, we acknowledge DRAM's (or IA's) contribution by making it clear where the source audio originated and directing them back to the contributor's home so that the scholar or general user can be made aware of other potentially useful items in the contributing collections. - -
    - -1. See . - -2. See . - -3. For feasibility reasons, the SALAMI project will be using only a subset of the enormous IA audio collection. IA informs us that the live music collection alone constitutes an astonishing 100,000 hours of music (see Letters section) which is obviously well beyond the scope of this current proposal." diff --git a/_research/SALAMI/background/environmental_scan.md b/_research/SALAMI/background/environmental_scan.md deleted file mode 100644 index 378150b2..00000000 --- a/_research/SALAMI/background/environmental_scan.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: page -title: Environmental Scan -tab: Research ---- - -Over the last decade, several approaches to automatically detect the structure of audio music data have been developed. One of the earliest papers on the subject was Foote (1999) who used mel-frequency cepstral coefficients (MFCC) as features and introduced the concept of similarity matrices. Logan and Chu (2000), who also used MFCC as features, experimented with hidden Markov models (HMM) and clustering methods to find the most repeating sections of 18 Beatles songs (see also Aucouturier and Sandler (2001) and Chai and Vercoe (2003)). Similarity matrices were also used by others such as Peeters et al. (2002). Chroma-based techniques were introduced by Bartch and Wakefield (2001) and used successfully by many others including Goto (2003) and Dannenberg and Hu (2002) who also described several general strategies for segmentation robust to small local tempo variations. Lu et al. (2004) concentrated on finding melodic similarity rather than timbre similarity thus making it robust to change in instrumentation. They also tried to find the complete overall structure of the music rather than just finding verse or chorus. A recent paper by Paulus and Klapuri (2008) improves the analysis by concentrating on extracting various audio features, such as MFCC and chroma vectors, based on the position of the beats. - -As one can see, there are many structural analysis algorithms available. Because these aforementioned algorithms were originally developed and tested primarily on Western popular music (mostly Beatles songs), e.g., Levy et al. (2006) and Maddage (2006), SALAMI will need to systematically evaluate the effectiveness these techniques to ascertain their performance characteristics on our much more diverse music collections. SALAMI's evaluation of these techniques will contribute to the MIR and CM communities' knowledge about which algorithms are best suited for which particular types of music. - -As mentioned previously, SALAMI will be using and enhancing several open-source visualization software systems, namely, Variations Timeliner, Sonic Visualiser, and Audacity. Both Sonic Visualiser and Audacity have vibrant development communities that have created some rudimentary mechanisms to overlay simple structural markers over the music audio. However, neither system currently provides the sophisticated visualisations required by SALAMI. That is, they do not have mechanisms that allow for the visualisation of structural hierarchies nor the simultaneous overlaying of multiple structural views based on different musical facets (e.g., harmony, timbre, rhythm, etc.). While the Variations Timeliner does provide hierarchical visualisations, it also currently lacks the ability to overlay multiple structural views. - -There are many suites of low-level feature extractors available, e.g., Marsyas, [[1]](http://sourceforge.net/projects/marsyas/) Sonic Visualiser VAMP plug-ins, and CLAM. [[2]](http://clam-project.org/) MIREX has shown that they all provide similar functionality. SALAMI has chosen jAudio [[3]](http://sourceforge.net/projects/jaudio/) as its feature extractor because it is one of the most comprehensive, it is extensible, and it has already been implemented as part of the NEMA architecture. - -
    - -1. See . - -2. See . - -3. See . See Appendix A: Fig. 6 for a screenshot. diff --git a/_research/SALAMI/background/history.md b/_research/SALAMI/background/history.md deleted file mode 100644 index 3843ca6e..00000000 --- a/_research/SALAMI/background/history.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: page -title: History and Resources -tab: Research ---- - -The SALAMI project will be the first large-scale analytic application based on the NEMA (Networked Environment for Music Analysis) project. NEMA received its initial Phase I funding ($1.2M) from the Andrew W. Mellon Foundation in January 2008\. Phase I is funded until 31 December 2010\. NEMA is a multinational, multidisciplinary, **_cyberinfrastructure_** project for computational music analysis. [1] NEMA is a collaboration of six top laboratories in MIR and CM research: Goldsmith, University of London (Tim Crawford), McGill University, CA (Ichiro Fujinaga), Queen Mary, University of London, UK (Mark Sandler), University of Illinois at Urbana-Champaign, US (J. Stephen Downie), University of Southampton, UK (David De Roure), and University of Waikato, NZ (David Bainbridge). - -The NEMA team is creating an open and extensible Webservice-based resource framework that facilitates the integration of music data and analytic/evaluative tools that can be used by the global MIR and CM research and education communities on a location- and time-independent basis. It is important to note here that NEMA is an **_infrastructure_** project, not an analytic project. Mellon is funding NEMA to develop and build out the underlying Webservices that will assist scholars, researchers, and students in their musicological studies. The SALAMI project proposed here is an **_analytic_** project that will, of course, build upon and exploit the NEMA infrastructure. It is as an **_analytic_** project that the SALAMI team is seeking funding from the DID Challenge. We further hope that SALAMI's success will be instrumental in the NEMA project acquiring its Phase II funding from Mellon in 2011. - -The NEMA project itself is based in part on previously developed technologies by the NEMA researchers including M2K (Music-to-Knowledge) [[2]](http://www.music-ir.org/evaluation/m2k/) (Downie et al. 2005), Maestro [[3]](http://www.iam.ecs.soton.ac.uk/projects/453.html) (De Roure et al. 2005), OMEN (On-demand Metadata Extraction Network) (McEnnis et al. 2006), and jMIR (McKay and Fujinaga 2007). These pre-existing technologies will be used as part of the SALAMI analytic work. - -The NEMA framework is built upon a data flow execution system called Meandre (see Sec. F) [[4]](http://www.seasr.org/meandre/), which is the product of another ongoing Mellon-funded project being conducted at UIUC called, SEASR (Software Environment for Advance Scholarly Research). [[5]](http://seasr.org/) Since SALAMI will be using the SEASR/Meandre framework as its computational infrastructure, we will be in constant contact with the NCSA's Automated Learning Group's SEASR/Meandre development team for software support and advice. [6] We are eager to work with them to optimize SALAMI's data management and I/O issues. We will also be working with the SEASR/Meandre team as we develop the Webservice data delivery and processing systems promised in Sections C.1, C.3 and C.5. - -Each of SALAMI's three laboratories is well equipped with multi-terabyte storage servers and several high-powered computational clusters upon which the team will develop the analytic software and run preliminary experiments (IMIRSEL: 96 cores, 30TB disk space, 376GB RAM; McGill: 36 cores, 14TB disk space, 76GB RAM; Southampton: ~1000 cores, 30TB disk space, ~900GB RAM). - -In June 2009, the SALAMI team was awarded a grant of **_250,000 normalized hours of supercomputing time_** at NCSA (National Center for Supercomputing Applications). The NCSA proposal was, in fact, based upon the SALAMI DID 15 March 2009 Letter of Intent. SALAMI's extraordinary good fortune in acquiring this supercomputing opportunity will ensure that SALAMI has enough computing resources to perform: a) the testing and fine-tuning of our candidate structural analysis algorithms; b) our finalized structural analysis data creation runs; and, c), our exemplar experiments. [7] - -
    - -1. See Appendix A: Fig. 4 for overall infrastructure of NEMA. - -2. See . - -3. See . - -4. See . See Appendix A: Fig.5 for an example of Meandre Workbench. - -5. See . - -6. Michael Welge, the NCSA Co-PI of SEASR, sits on the SALAMI Advisory Board. - -7. Dr. Alan Craig, liaison for the NCSA computation time awards, sits on the SALAMI Advisory Board. diff --git a/_research/SALAMI/background/partnership.md b/_research/SALAMI/background/partnership.md deleted file mode 100644 index 7934e023..00000000 --- a/_research/SALAMI/background/partnership.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: page -title: Partnership -tab: Research ---- - -The three partners in the SALAMI project, Fujinaga (Canada), Downie (USA) and De Roure (UK) each contribute their unique strengths to the project's design, execution, and ultimate success. In the fields of MIR and CM research, Downie and Fujinaga are both world leaders who have published close to one hundred papers in total on these subjects. They both have strong backgrounds in music theory: Downie's undergraduate major was Music Theory and Composition and Fujinaga holds a Bachelor's, a Master's and a PhD in music. De Roure is also a musician who has published music research papers and supervised CM and MIR PhDs. Downie is uniquely familiar with the wide range of state-of-the-art MIR algorithms as he is the founder and director of the annual Music Information Retrieval Evaluation eXchange (MIREX) [[1]](http://www.music-ir.org/mirexwiki/) which, since 2005, has evaluated 468 MIR algorithm runs (Downie 2008). Fujinaga was responsible for the idea of OMEN (On-demand Metadata Extraction Network), which became a basis for the NEMA [[2]](http://www.music-ir.org/?q=nema%2Foverview%2F) project. Another crucial component of NEMA is jMIR (a suite of software for MIR research) developed by Fujinaga and his students. De Roure's expertise on distributed information systems, distributed computing, standards, and software sustainability ensures a successful distributed infrastructure to deliver a project on this scale. All three are highly experienced research project leaders having managed million-dollar research grants as the PI within the last five years. All three are members of the NEMA team [3] and have every intention of sustaining their collaborative efforts for many years to come. This desire to continue our collaboration bodes well for the sustainability of SALAMI post-funding as the SALAMI team intends to make use of the SALAMI-developed data and tools to conduct further research and seek further funding. A brief biographical sketch for each SALAMI team member is provided below: - -Ichiro Fujinaga is an Associate Professor in the Music Technology Area at the Schulich School of Music at McGill University. He holds a BMus and a BSc (Mathematics) from the University of Alberta, and a MA in Music Theory, and a PhD in Music Technology from McGill University. In 2003–4, he was the Acting Director of the Centre for Interdisciplinary Research in Music Media and Technology (CIRMMT) at McGill. In 2002–3, he was the Chair of the Music Technology Area at the School of Music. He has been a long-term member of the International Society for Music Information Retrieval (ISMIR) steering committee. - -**J. Stephen Downie** is an Associate Professor at the Graduate School of Library and Information Science, University of Illinois at Urbana-Champaign. He is Director of the International Music Information Retrieval Systems Evaluation Laboratory (IMIRSEL). Downie was the PI on the Human Use of Music Information Retrieval Systems (HUMIRS) and the Music-to-Knowledge (M2K) music data-mining projects. He has been very active in the establishment of the MIR and Music Digital Library communities through his ongoing work with the ISMIR conferences as a founding member of the ISMIR steering committee. He is the founder and ongoing director of MIREX. He holds a BA (Music Theory and Composition), a MLIS, and a PhD in Library and Information Science, all earned at the University of Western Ontario. - -**David De Roure** is Professor of Computer Science in the School of Electronics and Computer Science at the University of Southampton, where he was a founding member of the Intelligence, Agents, Multimedia Group. His research interest is in the application of knowledge technologies and collaborative tools in e-Research. His leadership roles in the UK e-Science programme include the UK's Open Middleware Infrastructure Institute and the multidisciplinary e-Research South. He pioneered the Semantic Grid initiative and leads the Semantic Grid Research Group in the Open Grid Forum, where he sits on the Grid Forum Steering Group. He is regarded as a thought-leader in Web and e-Research and is responsible for Web 2.0 and open science activities including the JISC-funded myExperiment collaborative environment for researchers sharing digital content, which uses both Web 2.0 and Semantic Web techniques. He is a member of the W3C Advisory Committee, is a Scientific Council member of the Web Science Research Initiative and has served on national committees including the JISC Committee for Support of Research and the Arts and Humanities Research Council e-Science committee. His research group holds an Arts and Humanities eScience project (musicSpace: Using and Evaluating e-Science Design Methods and Technologies to Improve Access to Heterogeneous Music Resources for Musicology) and several awards in the field of open repositories. - -1. See . - -2. Networked Environment for Music Analysis. See Sections E and F for more details about NEMA and its role with this SALAMI project. See also for an introduction to the NEMA project. - -3. Downie is the PI, and Fujinaga is the Co-PI, of the NEMA project. De Roure is a key NEMA research partner. diff --git a/_research/SALAMI/background/research_products.md b/_research/SALAMI/background/research_products.md deleted file mode 100644 index c03c833f..00000000 --- a/_research/SALAMI/background/research_products.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: page -title: Research Products and Uses -tab: Research ---- - -The SALAMI project will generate five high-impact research products: - -1. __A web-accessible collection of structural analysis files for ~350,000 pieces of music audio.__ Music scholars, MIR researchers, students, and the general public alike should find the results of our structural analyses useful and inspirational for their research and personal explorations since nothing of this magnitude has ever been done before. The analytical results will be available via user-friendly facilities (and programmatically via NEMA's REST APIs, Webservices, and as 'linked data') that will allow searching and browsing by structural type, genre, period, composer, etc. The SALAMI system will also afford user-specified "subcollection" building for future, secondary analyses of the data. Because each musical piece will be analyzed using a variety of tools and algorithms, there will be multiple (many-to-one) structural "views" of the music, based upon, for example, a work's harmonic, rhythmic, timbral, and/or temporal facets. Each of the views will be accompanied by provenance information that describes how the analysis came into being so that new audio data can be analyzed in a consistent manner. Our underlying data store will be based upon the Resource Description Framework (RDF), a modularised Music Ontology, and linked data models (see Sec. G) to ensure maximum interoperability with other Webservices and resources both within and beyond NEMA. - -2. __Interoperable file formats and ontology for music structure that can be used by a wide variety of visualization software and other applications.__ SALAMI will develop a standardized ontology for music structure from which will be derived the specific data models used in a variety of available open-source music visualization software packages (e.g., Sonic Visualiser [[1]](http://www.sonicvisualiser.org/), Audacity [[2]](http://audacity.sourceforge.net/), Variations Timeliner [[3]](http://variations.sourceforge.net/vat/), etc.), building on work already underway in the community. Thus, music scholars and the general public will be able to interact with structural data along with its source audio in hitherto unrealized ways. For example, users could go directly to specific sections of the music (e.g., chorus, recapitulation, or coda) that they are interested in and listen to them. Similarly, audio engineers could quickly move around while editing recordings, without manually labelling sections or relying on timing information. Because our work will include the creation of SALAMI VAMP "plug-ins" [[4]](http://www.vamp-plugins.org/) that will allow Webservice communications between SALAMI's vast store of structural analysis files and the visualization software, scholars creating thematic indices or _incipits_ for large collections of music can use the SALAMI data and its plugins to simplify their tasks. - -3. __Open source structural analysis software/services well trained on a large ground-truth dataset.__ The SALAMI analytic algorithms will be trained and tested against the structural ground-truth dataset to be created at McGill's Schulich School of Music. This will help ensure the validity of the resulting structural analysis files. The analytic software being developed will be made available for interactive use as a part of the larger NEMA Webservice infrastructure. However, because the SALAMI software code will be released under an open-source regime and also made available via the NEMA code repository, other researchers can take the code and develop their own stand-alone applications as they see fit. The SALAMI partners have a track record in developing and sustaining community software. - -4. __An open source ground-truth structural dataset consisting of thousands of pieces, spanning a variety of musics, and verified by highly trained musicians.__ Because of the cost involved in creating high-quality ground-truth datasets, such datasets are extremely valuable to the research community for training and evaluating machine-learning algorithms. The ground-truth dataset that we will be creating at McGill to build and test our SALAMI algorithms will be made available for use by other MIR and CM researchers so they can create or improve their own structural analysis software. The CM researchers will also be able to add new ground truth using the tools and ontologies that we will develop. - -5. __Sample exemplar experiments to demonstrate the potential use of the analytic data.__ For the SALAMI project to be truly useful, it must be more than the creation and collection of a vast store of individual structural analysis files. SALAMI must demonstrate to the world some of the interesting analyses that can be performed so as to inspire others to explore this unique resource. To this end, we will conduct several exemplar experiments/explorations that ask questions about large subcollections of the SALAMI collection. We could, for example, perform some large-scale clustering analyses to explore for geographic or time period tendencies in the data. We could also undertake some supervised learning experiments to see whether structural information is useful in various classification tasks (e.g., genre, mood, composer, etc.). It is our intention to encapsulate our exemplar experiments as Meandre data flows (see Secs. E and F) and present them as NEMA Webservices so others might replicate or modify our examples. We also plan to disseminate the actual findings of our experiments in such venues as ISMIR (International Conferences on Music Information Retrieval), Digital Humanities, Computing in Musicology, etc. to build up interest in the possibilities afforded by the SALAMI data and services. - -
    - -1. See . Sonic Visualiser is being developed and supported by NEMA partner (see Sec. E), Centre for Digital Music, Queen Mary, University of London. See Appendix A: Fig. 2 for a screenshot. - -2. See . See Appendix A: Fig. 3 for a screenshot. - -3. See . Prof. Eric Isaacson, a Variations2 Project Co-PI and a developer of the Variations Timeliner, sits on the SALAMI Advisory Board. - -4. See . diff --git a/_research/SALAMI/background/technology.md b/_research/SALAMI/background/technology.md deleted file mode 100644 index 1528bd01..00000000 --- a/_research/SALAMI/background/technology.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: page -title: Technology and Work Plan -tab: Research ---- - -SALAMI's research and development will be conducted using the NEMA infrastructure. NEMA is currently being constructed and will be well tested by the end of 2009\. It will, therefore, be ready to process the large set of data for the SALAMI project. SALAMI will be built and run within the NEMA technological framework principally because we are convinced of the benefits provided by its underlying Meandre dataflow engine. These benefits include: - -1. Meandre code (along with the NEMA code) is open source allowing for unlimited community development and participation; -2. Meandre is written in Java for platform independence; -3. Meandre is designed to simplify the running of large-scale data mining/analysis applications on high-performance computing clusters; -4. Meandre itself is constructed as a Webservice framework which makes the creation of globally available Webservice resources based upon Meandre flow executions quite simple; -5. Meandre versions of NEMA's M2K and jMIR music processing and machine learning applications have already been developed and successfully tested; and, -6. Meandre itself stores the operational data of each session run as RDF information, making it easier to acquire and integrate the provenance data needed for SALAMI's data and computational Webservices. - -In order for SALAMI to properly evaluate candidate structural analysis algorithms and to train the machine-learning components of the algorithms, a large set of high-quality ground truth is required. McGill will be hiring music graduate students to create the ground truth data set using the open-source Sonic Visualiser, which allows quick labelling of audio data. We will be working with our NEMA partner, Queen Mary, who developed the software, to allow hierarchical labelling. Over the course of developing the structural analysis ontology we will also be working on translators to be used by the various visualization software packages mentioned previously. - -After selecting the set of structural analysis algorithms which will be use to create the SALAMI analytical output, we will consult with the CM community to design our set of exemplar experiments that best demonstrate the potential of the SALAMI data and services. - -To summarize, our development methodology (see Table 2 for the work plan) is based on the established practice of the partner groups and the NEMA project. We are committed to open-source community development, facilitated by adoption of open standards and publication of specifications. In addition to source code we will follow an open process to develop the modularized ontology. We will work closely with our end users and Advisory Board at all times to ensure successful codesign based on key use cases and user groups, and we will involve all stakeholders in the governance of the development process. We are uniquely positioned to build significantly on the experience of the UK's Open Middleware Infrastructure Institute and the JISC-funded ENGAGE programmme, a partnership with the UK's NGS (National Grid Service). - -Table 2\. Work Plan - -| Phases                                    | UIUC | McGill | Southampton | -|-----|---|---|---| -| I. 2010/1-3 | Complete survey of structural analysis (SA) algorithms | Refinement of the annotation software | Design ontology for music structure | -| II. 2010/4-6 | Implement various algorithms in Meandre | Selection of pieces for ground truth | Implement the ontology output interface to SA software | -| III. 2010/7-9 | Beta-testing of SA software and initial training of software | Creation of ground truth dataset | Survey of visualization software (VS) and their file formats | -| IV. 2010/10-12 | Training and main run of the SA software | Verification of the analysis by SA software | Implement translation between the ontology and the file formats | -| V. 2011/1-3 | Analysis of the SA software performance | Conduct sample experiments | Finalize the Webservice framework | diff --git a/_research/Single_Interface_for_Music_Score_Searching_and_Analysis_(SIMSSA).md b/_research/Single_Interface_for_Music_Score_Searching_and_Analysis_(SIMSSA).md deleted file mode 100644 index 18e7f71a..00000000 --- a/_research/Single_Interface_for_Music_Score_Searching_and_Analysis_(SIMSSA).md +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: page -title: Single Interface for Music Score Searching and Analysis (SIMSSA) -tab: Research -type: project -link: https://simssa.ca/ ---- diff --git a/_research/The_McGill_Billboard_Project_(Chord_Analysis_Dataset).md b/_research/The_McGill_Billboard_Project_(Chord_Analysis_Dataset).md deleted file mode 100644 index 5bb0b7bc..00000000 --- a/_research/The_McGill_Billboard_Project_(Chord_Analysis_Dataset).md +++ /dev/null @@ -1,143 +0,0 @@ ---- -layout: page -title: The McGill Billboard Project -tab: Research -type: project -redirect_from: - - /billboard - - /billboard/ - - /research/billboard - - /research/billboard/ -# permalink: /research/The_McGill_Billboard_Project_(Chord_Analysis_Dataset)/ ---- - -Thank you for your interest in the McGill *Billboard* annotations! We are proud to announce a 2.0 release, with many improvements over the original, including new annotations, a number of corrections to errors in the existing annotations, and more accurate estimates of timing. - -In order to facilitate the best possible use of these data in the future, we have made them available legally under a CC0 license, but we ask that users follow scholarly norms in any public-facing work based on upon these data by citing the following ISMIR paper: - -* John Ashley Burgoyne, Jonathan Wild, and Ichiro Fujinaga, 'An Expert Ground Truth Set for Audio Chord Recognition and Music Analysis', in *Proceedings of the 12th International Society for Music Information Retrieval Conference*, ed. Anssi Klapuri and Colby Leider (Miami, FL, 2011), pp. 633–38 [[1]](http://ismir2011.ismir.net/papers/OS8-1.pdf); - -or Ashley Burgoyne's dissertation: - -* John Ashley Burgoyne, 'Stochastic Processes and Database-Driven Musicology' (PhD diss., McGill University, Montréal, Québec, 2012) [[2]](http://digitool.library.mcgill.ca/R/-?func=dbin-jump-full&object_id=107704&silo_library=GEN01). - -Please note that although the SALAMI project [[3]](http://ismir2011.ismir.net/papers/PS4-14.pdf) contributed the structural metadata to the McGill *Billboard* annotations, we gathered (and funded) the chord annotations independently from the SALAMI project, hence the distinct citation. - -## Overview - -This release contains the annotations and audio features corresponding to the first 1000 entries from the random sample of *Billboard* chart slots as presented at ISMIR 2011, plus the additional 300 entries that were used to evaluate audio chord estimation for MIREX 2012. The set includes annotations and features for 890 slots, as we were unable to acquire audio for every entry in the sample, and comprises 740 distinct songs, as due to the nature of the sampling algorithm, some slots correspond to the same song. Training algorithms that assume independent, identically distributed data (as most do) should retain the duplicates. We will release annotations for the remaining 700 entries progressively over the next couple of years in order to ensure that there are unseen data available for evaluating algorithms at MIREX or related events. - -Since the original release, we have been able to complete a number of annotations that had originally encountered problems. Some of these new annotations are a closer match to the target sample than what was available at the time we released the original McGill *Billboard* annotations, and as such, a small number of entries refer to a different song in version 2.0 than they did in 1.x releases. We recommend that all users replace any previous editions of these annotations with version 2.0. - -This release is also split into multiple files, to reflect the needs of different users. Users may choose their preferred archive format (XZ, BZ2, or GZ) and extract all their relevant archives into a single directory. The result will be a `McGill-Billboard` directory with a subdirectory for each annotated entry in the sample, each subdirectory containing the relevant annotations and features. -
    - -## Index - -Most users will want to download the index to the dataset: - -* [billboard-2.0-index.csv](https://www.dropbox.com/s/o0olz0uwl9z9stb/billboard-2.0-index.csv?dl=1) - -The index is a CSV files with the following columns: - -* **id**, the index for the sample entry; -* **chart_date**, the date of the chart for the entry; -* **target_rank**, the desired rank on that chart; -* **actual_rank**, the rank of the song actually annotated, which may be up to 2 ranks higher or lower than the target rank [1, 2]; -* **title**, the title of the song annotated; -* **artist**, the name of the artist performing the song annotated; -* **peak_rank**, the highest rank the song annotated ever achieved on the Billboard Hot 100; and -* **weeks_on_chart**, the number of weeks the song annotated spent on the Billboard Hot 100 chart in total. - -Sample entries for which we were unable to obtain audio or an annotation also appear in the index, but with the **id**, **chart_date**, and **target_rank** columns exclusively. -
    - -## Complete Annotations - -The complete annotations – chords, structure, instrumentation, and timing – are available from these links: - -* [billboard-2.0-salami_chords.tar.xz](https://www.dropbox.com/s/p4xtixbvt4hw5c6/billboard-2.0-salami_chords.tar.xz?dl=1) -* [billboard-2.0-salami_chords.tar.bz2](https://www.dropbox.com/s/g9yq0pafbfkbgxr/billboard-2.0-salami_chords.tar.bz2?dl=1) -* [billboard-2.0-salami_chords.tar.gz](https://www.dropbox.com/s/2lvny9ves8kns4o/billboard-2.0-salami_chords.tar.gz?dl=1) - -The annotations files are named `salami_chords.txt` to reflect the fact that they contain both SALAMI-style structural annotations and the McGill Billboard chord annotations. - -Each annotation begins with a header including the title of the song (prefixed by `# title:`), the name of the artist (prefixed by `# artist:`), the metre (prefixed by `# metre:`), and the tonic pitch class of the opening key (prefixed by `# tonic:`). Similar `metre` and `tonic` comments may also appear in the main body of the annotations, corresponding to changes of key or metre. In some cases, there is no obviously prevailing key, in which case the tonic pitch class is denoted `?`. - -The main body of each annotation consists of a single line for each musical phrase or other sonic element at a comparable level of musical structure. Each line begins with a floating-point number denoting the timestamp of the beginning of the phrase (in seconds) followed by a tab character. There are special lines for `silence` at the beginning and end of the audio file and a special line for the `end` of the piece. The other lines continue with a comma-separated list of elements among the following. - -* **Capital letters**, possibly followed by an arbitrary number of primes (apostrophes), designate high-level musical structures. They appear at the beginning of each high-level musical segment and are presumed to continue until the next appearance of a capital letter. When two letters match, the two high-level segments are musically similar. Other than denoting similarity, the letters themselves have no intrinsic meaning, but for the letter Z. Z denotes non-musical passages in the audio such as noise or spoken words. -* **Plain text strings** denote more traditional names for musical structures, e.g., verse, chorus, and bridge. The vocabulary was semi-restricted, but annotators had the freedom to use whatever terms they felt were most appropriate for unusual contexts. -* **Chord annotations** appear as series of bars flanked by pipes (\|). A phrase may by followed by an x and an integer, which means that the phrase is repeated that number of times. A phrase may also be followed by an arrow (->), which is a musicological hint that the phrase is musically elided into the following phrase. -* **Leading instruments** are noted in songs where there is a notable deviation from the norm of a leading vocal throughout the entire song. They appear as text strings preceded by a left parenthesis (() in the segment where the instrument comes to prominence and as text strings succeeded by a right parenthesis ()) in the segment where that instrument fades from prominence. If an instrument is prominent for a single segment only, its name appears with both left and right parentheses. - -More detail on the structural annotations is available from Smith et al. [[3]](http://ismir2011.ismir.net/papers/PS4-14.pdf). The McGill Billboard annotations replace the lower level of structural annotations from this reference (lowercase letters) with chord annotations. - -The chord annotations are simplified to the beat level. All chord symbols follow the standard that Harte et al. presented at ISMIR 2005 and used in MIREX ever since [[4]](http://ismir2005.ismir.net/proceedings/1080.pdf), with a few additions to the shorthand to facilitate the richness of these annotations: `1` for unharmonised bass notes, `5` for power chords, and `sus2`, `maj11`, `11`, `min11`, `maj13`, `13`, and `min13` for the corresponding chords in traditional jazz notation. An additional pseudo-chord type of `1` denotes bass notes with no chord on top. To save space, repeated chords are denoted with a dot instead of the full chord name. To further save space, bars containing a single chord on all beats list the chord symbol only once; likewise, in quadruple metres (4/4 or 12/8), bars with only two chords and the change on the third beat list those two chords with no dots. For brief changes of metre, the metre may appear in parentheses at the beginning of the bar rather than as a full metre comment. - -Two non-chord symbols may appear within bars. For passages that were too musically elaborate to merit beat-level chord annotations, annotators sometimes filled the bar with an asterisk (\*). For brief pauses of arbitrary length (often a single beat), annotators added a bar with the special annotation `&pause`. - -Bas de Haas has written Haskell tools for parsing and manipulating the McGill Billboard annotations [[5]](http://www.cs.uu.nl/research/techreps/repo/CS-2012/2012-018.pdf), which are available from Hackage: - -* [http://hackage.haskell.org/package/billboard-parser/](http://hackage.haskell.org/package/billboard-parser/) -
    - -## LAB Files (MIREX Style) - -Users who are only interested in automatic chord recognition may prefer to download HTK-style LAB files for the chord annotations instead, which contain only onset times, offset times, and the chord labels, as used for the audio chord estimation task in MIREX: - -* [billboard-2.0.1-lab.tar.xz](https://www.dropbox.com/s/t390alzrkx0c9yt/billboard-2.0.1-lab.tar.xz?dl=1) -* [billboard-2.0.1-lab.tar.bz2](https://www.dropbox.com/s/jk2nvyzdai3rbmz/billboard-2.0.1-lab.tar.bz2?dl=1) -* [billboard-2.0.1-lab.tar.gz](https://www.dropbox.com/s/ep41gwy28vo3wxy/billboard-2.0.1-lab.tar.gz?dl=1) - -Note that only the first chord of each phrase was time-aligned by a human. The timings for all other chords are linearly interpolated assuming a constant tempo for each phrase. This constant-tempo assumption is remarkably robust for the McGill Billboard sample: less than one percent of all possible eighth-note positions (tatums) in the sample are more then 10 percent faster or slower than the average tempo of the songs to which they belong [[5]](http://www.cs.uu.nl/research/techreps/repo/CS-2012/2012-018.pdf). - -For convenience, we also have LAB files with chord labels simplified to the vocabularies that will be used for evaluating chord estimation in MIREX 2013: - -* [billboard-2.0.1-mirex.tar.xz](https://www.dropbox.com/s/fg8lvy79o7etiyc/billboard-2.0.1-mirex.tar.xz?dl=1) -* [billboard-2.0.1-mirex.tar.bz2](https://www.dropbox.com/s/1it49qcjx3l4dga/billboard-2.0.1-mirex.tar.bz2?dl=1) -* [billboard-2.0.1-mirex.tar.gz](https://www.dropbox.com/s/f88s73bmivlvbiy/billboard-2.0.1-mirex.tar.gz?dl=1) -
    - -## Audio features - -Although we cannot distribute the original audio due to copyright, we have two feature sets available. Users interested in chord recognition may want the non-negative-least-squares chroma vectors and tuning estimates from the [Chordino VAMP plugin](http://www.isophonics.net/nnls-chroma) [[6]](http://ismir2010.ismir.net/proceedings/ismir2010-25.pdf): - -* [billboard-2.0-chordino.tar.xz](https://www.dropbox.com/s/e9dm23vbawg9dsw/billboard-2.0-chordino.tar.xz?dl=1) -* [billboard-2.0-chordino.tar.bz2](https://www.dropbox.com/s/w22zk8tpn0vffy7/billboard-2.0-chordino.tar.bz2?dl=1) -* [billboard-2.0-chordino.tar.gz](https://www.dropbox.com/s/91ap0ho2e3507nm/billboard-2.0-chordino.tar.gz?dl=1) - -These archives contain `bothchroma.csv` and `tuning.csv` for each annotated single. We used the default settings for the plugin with the exception for a rolloff of 1 percent, the plugin authors' recommendation for pop music. - -Researchers of many kinds may find the Echo Nest features helpful. We have recomputed these with the [Echo Nest Analyzer](http://developer.echonest.com/) version 3.1.4: - -* [billboard-2.0-echonest.tar.xz](https://www.dropbox.com/s/xwoh2ihudjk99s5/billboard-2.0-echonest.tar.xz?dl=1) -* [billboard-2.0-echonest.tar.bz2](https://www.dropbox.com/s/flzygf12d1vqqpf/billboard-2.0-echonest.tar.bz2?dl=1) -* [billboard-2.0-echonest.tar.gz](https://www.dropbox.com/s/8g8z6cgt6w1yosv/billboard-2.0-echonest.tar.gz?dl=1) - -If you are interested in audio features other than these, please contact us. So long as the features are non-invertible and the computational load is sane, we are happy to provide custom features upon request. -
    - -## Contact - -Please e-mail any questions, comments, or bugs to Ashley Burgoyne at [john.ashley.burgoyne@mail.mcgill.ca](mailto:john.ashley.burgoyne@mail.mcgill.ca). - -
    - -1. John Ashley Burgoyne, Jonathan Wild, and Ichiro Fujinaga, 'An Expert Ground Truth Set for Audio Chord Recognition and Music Analysis', in *Proceedings of the 12th International Society for Music Information Retrieval Conference*, ed. Anssi Klapuri and Colby Leider (Miami, FL, 2011), pp. 633–38, . - -2. John Ashley Burgoyne, 'Stochastic Processes and Database-Driven Musicology' (PhD diss., McGill University, Montréal, Québec, 2012), . - -3. Jordan B. L. Smith, J. Ashley Burgoyne, Ichiro Fujinaga, David De Roure, and J. Stephen Downie, 'Design and Creation of a Large-Scale Database of Structural Annotations', in *Proceedings of the 12th International Society for Music Information Retrieval Conference*, ed. Anssi Klapuri and Colby Leider (Miami, FL, 2011), pp. 55–60, . - -4. Christopher A. Harte, Mark B. Sandler, Samer A. Abdallah, and Emilia Gómez, 'Symbolic Representation of Musical Chords: A Proposed Syntax for Text Annotations', in *Proceedings of the 6th International Conference on Music Information Retrieval*, ed. Joshua D. Reiss and Geraint A. Wiggins (London, England, 2005), pp. 66–71, . - -5. W. Bas de Haas and John Ashley Burgoyne, 'Parsing the Billboard chord transcriptions' (Technical report UU-CS-2012-18, Utrecht University, the Netherlands, 2012), . - -6. Matthias Mauch and Simon Dixon, 'Approximate Note Transcription for the Improved Identification of Difficult Chords', in Proceedings of the *11th International Society for Music Information Retrieval Conference*, ed. J. Stephen Downie and Remco C. Veltkamp (Utrecht, the Netherlands, 2010), pp. 135–40, . - -
    - -![Public domain]({{ site.url }}/assets/public_domain.png "Public domain") -
    -To the extent possible under law, the DDMAL has waived all copyright and related or neighbouring rights to the McGill *Billboard* annotations. This work is published from Canada. diff --git a/_research/The_Music_Listening_Histories_Dataset_(MLHD).md b/_research/The_Music_Listening_Histories_Dataset_(MLHD).md deleted file mode 100644 index 103f561a..00000000 --- a/_research/The_Music_Listening_Histories_Dataset_(MLHD).md +++ /dev/null @@ -1,124 +0,0 @@ ---- -layout: page -title: The Music Listening Histories Dataset (MLHD) -tab: Research -type: project -redirect_from: - - /research/musiclisteninghistoriesdataset ---- - -The Music Listening Histories Dataset (MLHD) is a large-scale collection of music listening events assembled from more than 27 billion time-stamped logs extracted from Last.fm. - -Attractive features of the MLHD are: - -* self-declared metadata provided by users at the moment of registration whose identities have been anonymized -* MusicBrainz identifiers (MBID) for the music entities in each of the logs that allows for an easy linkage to other existing resources -* a set of user profiling features designed to describe aspects of their music listening behavior and activity -* orders of magnitude bigger than other datasets of similar characteristics -
    - -## Dataset Structure - -The logs in the dataset are organized in the form of sanitized listening histories per user, where each user has one file, with one log per line. - -Each log is a quadruple ``. - -To allow easy computation in HPC parallel systems, the dataset is distributed as TAR files with about 1K user listening histories files each. The full dataset contains 576 files of about 1GB each. These files are subsequently bundled in sets of 32 TAR files in order to facilitate downloading. (Note: the file `MLHD_386.tar` does not have any actual listening history. It is part of the dataset just to add up to 576 files, thus facilitating the parallelization by using many combinations of factors) - -Additionally, we also provide a set of text files with demographic information, as well as listening habits and behavioural data. -
    - -## Download - -The dataset can be downloaded using the [Globus system](https://www.globus.org/data-sharing){:target="_blank"} from the following endpoint hosted in Compute Canada: - -[MLHD Dataset in Compute Canada Globus endpoint](https://app.globus.org/file-manager?origin_id=6e604070-3009-11eb-b16c-0ee0d5d9299f&origin_path=%2F){:target="_blank"} - -A file with sha256 hashes per each of the 576 TAR files is provided to verify the integrity of the files. -
    - -## Features for profiling and describing listeners in the Music Listening Histories Dataset - -Accompanying the MLHD full data, we also provide a set of text files with additional data aiming at characterizing specific aspects of the listeners. The data contains self-declared demographic information about the listeners, a set of features for describing their listening activity, and a set of features for describing their listening behaviour. - -Each text file comes with a header indicating the column names. The delimiter character is a tab. In order to protect the listeners' identities, all references to their usernames and Last.fm IDs have been anonymized with UUIDs. - -For example, the first three lines of the `MLHD_demographics.csv` file are: - -``` -uuid\t age\t country\t gender\t playcount\t age_scrobbles\t user_type\t registered\t firstscrobble\t lastscrobble - -dfb7ea9d-6e4f-48e4-96f6-59abcc207d55\t 30\t AT\t n\t 42622\t 3783\t user\t 1035849600\t 1138630578\t 1362652343 - -a89cb9c5-ba84-424e-8950-16657bb6f7af\t 35\t US\t m\t 182118\t 3862\t subscrib\t 1035849600\t 1130274207\t 1369498564 -``` -
    - -## Demographic Features - -The MLHD provides a set of features describing some of the listeners' demographic characteristics. - -At the moment of registration, Last.fm asks the listeners to declare their year of birth, gender, and country. The listeners' age are updated automatically by the service, and gender and country can be updated at any time by them. - -The `age` reported in the dataset is the age returned by the system at the moment of the data collection (i.e., circa 2013 and 2014). `gender` and `country` are the listeners' self-declared gender and country. Since they have the option to do not declare, in the dataset we assigned the value `NA` for non-declared country (and we changed the country code for Namibia to `NB`), and `n` for gender not declared. - -The `playcounts` column returns the total number of logs within each listener's music listening history. - -The `age_scrobbles` field is the number of days that passed between the first and the last logs recorded in the dataset. - -The `user type` column returns the "user type" assigned by Last.fm to each user according to their involvement with the service: "subscrib" are those that paid a monthly installment to Last.fm for getting unlimited streaming tracks and no ads, "user" are people without any special privileges in the "freemium" pricing strategy; "staff", "moderator", and "alumni" are statuses for people that are currently working for Last.fm, or that worked previously for the service. - -The `registered`, `firstscrobble`, and `lastscrobble` columns return Unix (UTC) timestamps for each listener's registration, first submitted log to Last.fm, and the last log stored in the MLHD. - -The CSV file can be downloaded from the following link: - - - -
    - -## Listening Behavioural Features - -To characterize listening behaviours, we provide in the MLHD a set of four computational features tailored to to represent some characteristics of music listening behaviours. The features are `exploratoryness`, `mainstreamness`, `genderedness`, and `fringeness`. Values for these features were computed for the three types of music items in the dataset: artists, albums, and tracks. Therefore, each listener’s listening profile is described by a vector of 12 continuous values. For details about each of these features formulations, please refer to Vigliensoni and Fujinaga (2016). - - -
    - -## User Activity Features - -We computed from the music listening histories’ UTC timestamps a series of features that aggregated the number of logs of each listening history into several time spans. These low-dimensional representations of user activity are: `hourly activity per day`, `hourly activity by week hour`, `weekly activity`, `monthly activity`, and `yearly activity`. Values in each column represent the percentage of the total of listening logs per user for each span of time. - - -
    - -## Scientific References - -For details about how the dataset was assembled and how the features were computed, do check the following scientific publications: - -* Vigliensoni, Gabriel, and Ichiro Fujinaga. "The music listening histories dataset." In Proceedings of the 18th International Society for Music Information Retrieval Conference. Suzhou, People's Republic of China, 2017. [(pdf)](https://ismir2017.smcnus.org/wp-content/uploads/2017/10/180_Paper.pdf) -* Vigliensoni, Gabriel, and Ichiro Fujinaga. "Automatic music recommendation systems: Do demographic, profiling, and contextual features improve their performance?." In Proceedings of the 17th International Society for Music Information Retrieval Conference. New York City, NY, USA. 2016. [(pdf)](https://18798-presscdn-pagely.netdna-ssl.com/ismir2016/wp-content/uploads/sites/2294/2016/07/044_Paper.pdf) -* Vigliensoni, Gabriel, and Ichiro Fujinaga. "Identifying time zones in a large dataset of music listening logs." In Proceedings of the International Workshop on Social Media Retrieval and Analysis. Gold Coast, Australia, 2014. [(pdf)](http://delivery.acm.org/10.1145/2640000/2632203/p27-vigliensoni.pdf?ip=132.206.14.126&acc=ACTIVE%20SERVICE&key=FD0067F557510FFB.03D32F869B60D852.4D4702B0C3E38B35.4D4702B0C3E38B35&CFID=996440539&CFTOKEN=83382403&__acm__=1508367252_d4fb6dcdac2d0b79b90e74e0aa94254c%3Ftarget%3D_blank) - -If you use the dataset, please do cite the following publication: - -``` -@inproceedings{vigliensoni17music, - Author = {Vigliensoni, Gabriel and Fujinaga, Ichiro}, - Title = {The music listening histories dataset}, - Booktitle = {Proceedings of the 18th International Society for Music Information Retrieval Conference}, - Address = {Suzhou, People's Republic of China}, - Pages = {96--102}, - Year = {2017}, - Keywords = {Dataset, Listening behaviour, Music Preference, Last.fm}, -} -``` -
    - -## Acknowledgments - -We are extremely grateful of all users of Last.fm that have agreed to make their data available for non-commercial use, and also to the Last.fm service, which has collected and offered this data since 2002 uninterruptedly, helping the field of music informatics research to move forward. - -This research has been supported by BecasChile Bicentenario, [Comision Nacional de Investigacion Cientifica y Tecnologica](http://www.conicyt.cl/), Gobierno de Chile, and the [Social Sciences and Humanities Research Council of Canada](http://www.sshrc-crsh.gc.ca/). Important parts of this work used [ComputeCanada’s High Performance Computing](https://www.computecanada.ca/) resources. - -For additional information, questions, problems, or feedback please contact Gabriel Vigliensoni at [gabriel.vigliensonimartin@mcgill.ca](mailto:gabriel.vigliensonimartin@mcgill.ca). In case of issues, please do include as much detail as possible. - -![last.fm]({{ site.url }}/assets/Lastfm2008.png "Last.fm") diff --git a/_research/Vocal-Intonation.md b/_research/Vocal-Intonation.md deleted file mode 100644 index b6aae480..00000000 --- a/_research/Vocal-Intonation.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -layout: page -title: Vocal Intonation -tab: Research -type: project ---- - -## Researchers - - -* Johanna Devaney, PhD Candidate, Music Technology Area, Department of Music Research, Schulich School of Music -* Prof. Ichiro Fujinaga, Music Technology Area, Department of Music Research, Schulich School of Music -* Prof. Peter Schubert, Music Theory Area, Department of Music Research, Schulich School of Music -* Prof. Jonathan Wild, Composition and Music Theory Areas, Department of Music Research, Schulich School of Music -
    - -## Publications - - -* Wild, J. 2009. Pairwise well-formed scales and a bestiary of animals on the hexagonal lattice. In Proceedings of the _Second International Conference on Mathematics and Computation in Music_, 271–85. -* Devaney, J., and D.P.W. Ellis. 2008. An empirical approach to studying intonation tendencies in polyphonic vocal performances, _Journal of Interdisciplinary Music Studies_, 141–56. -* Wild, J., and P. Schubert. 2008. Historically informed retuning of polyphonic vocal performance, _Journal of Interdisciplinary Music Studies_, 121–39. -
    - -## Paper and Poster Presentations - - -* Devaney, J., J. Wild, and I. Fujinaga 2011. Intonation in solo vocal performance: A study of semitone and whole tone tuning in undergraduate and professional sopranos. Paper presented at the _International Symposium on Performance Science_. -* Devaney, J. and I. Fujinaga. 2010. AMPACT: Automatic Music Performance Analysis Toolkit. Poster presented at the annual meeting of the _Society of Music Theory_. -* Devaney, J., J. Wild, P. Schubert, and I. Fujinaga. 2010. Exploring the relationship between voice leading, harmony, and intonation in a cappella SATB vocal ensembles. Paper presented at the _International Conference on Music Perception and Cognition_. -* Devaney, J., J. Wild, P. Schubert, and I. Fujinaga 2010. Horizontal and vertical intonation tendencies in SATB ensembles. Paper presented at the fifth conference on the _Physiology and Acoustics of Singing_. -* Devaney, J., J. Wild, P. Schubert, and I. Fujinaga. 2010. What can expressive performance studies tell us about the organization of musical materials? Poster presented at the _Indiana University Symposium of Research in Music Theory: "This is your brain on music"_. -* Devaney, J, I. Fujinaga, and J. Wild. 2009. Intonation tendencies in solo a cappella performances. Poster to be presented at the _2009 Society for Music Perception and Cognition_ conference in August. -* Devaney, J. 2009. Intonation tendencies in solo a cappella performances. Paper presented at the _Indiana University Special Symposium on Performance and Analysis_. -* Devaney, J. and J. Wild. 2009. Empirical, historical and speculative approaches to intonation. Paper presented at the fourth conference on the _Physicology and Acoustics of Singing_. -* Devaney, J., I. Fujinaga, and D.P.W. Ellis. 2008. Intonation tendencies in polyphonic vocal ensembles. Papter presented at the _Digital Music Research Network Workshop (DMRN+3)_. -* Devaney, J. 2008. "Tonality's gravitational pull": Intonation as an empirical measure of melodic attraction. Paper presented at the annual meeting of the _Society of Music Theory_. -* Wild, J. 2008. Through "unknown tracks and precipitate cliffs": Analysis and performance of an enharmonic madrigal by Nicola Vicentino. Paper presented at the annual meeting of the _Society of Music Theory_. -* Devaney, J., and I. Fujinaga. 2008. Assessing the role of sensory consonance in trained musicians' tuning preferences. Poster presented at the _International Conference on Music Perception and Cognition_. -* Wild, J. 2008. Paper presented at the annual meeting of the _Canadian University Music Society_. diff --git a/_research/research.md b/_research/research.md deleted file mode 100644 index 7cea7f76..00000000 --- a/_research/research.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: page -title: Research & Projects -tab: Research -permalink: /research/ ---- - -{% for post in site.research %} -{% if post.type == 'project' %} -{% if post.title == "Centre de Recherche sur l'Interprétation au Clavecin (CRIC)" %} - -* {{ post.title }} - {% else %} - {% if post.link %} -* [ {{ post.title }}]({{ post.link }}) - {% else %} -* [ {{ post.title }} ]({{ site.url }}{{ post.url }}) - {% endif %} - -{% endif %} -{% endif %} - -{% endfor %} diff --git a/_resources/discrete_fourier_transform.md b/_resources/discrete_fourier_transform.md deleted file mode 100644 index e51e5774..00000000 --- a/_resources/discrete_fourier_transform.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: page -title: Discrete Fourier Transform -tab: Resources ---- - -Implementation of the Discrete Fourier Transform in Python, for reference. - -``` -from numpy import * - -def dft(x): - """ - My implementation of the discrete fourier transform - """ - N = shape(x)[1] - print "x", shape(x) - k = arange(0, N) - k.shape = N, 1 - n = arange(0, N) - W = zeros((N, N), complex) - # don't forget to make it a complex number array! - for n in range(N): - for k in range(N): - W[n,k] = exp(-1j * n * k * 2.0 * pi/N) - - X = asmatrix(x) * asmatrix(W) - return X -``` diff --git a/_resources/logos.md b/_resources/logos.md deleted file mode 100644 index 3924785c..00000000 --- a/_resources/logos.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: page -title: Logos -tab: Resources ---- - -![red banner]({{ site.url }}/assets/Schulich_logo_white_on_red.png/ "Schulich logo white on red") -
    -![clear banner]({{ site.url }}/assets/Schulich_logo_transparent_background.png/ "Schulich logo transparent") -
    -![McGill logo]({{ site.url }}/assets/McGill_logoT.png/ "McGill logo") -
    -![CIRMMT]({{ site.url }}/assets/CIRMMT_Logo2005WhiteHi.png/ "CIRMMT white") -
    -![CIRMMT2]({{ site.url }}/assets/CIRMMT_Logo2005BlackHi.png/ "CIRMMT black") -
    -![DDMAL clear]({{ site.url }}/assets/800px-Ddmal_acr_transp-bg_no-border-1600w.png/ "DDMAL logo clear") -
    -![DDMAL black]({{ site.url }}/assets/800px-Ddmal_acr_transp-bg_no-border-1600w.png/ "DDMAL logo black") -
    -![DDMAL banner clear]({{ site.url }}/assets/Ddmal_logo_transp-bg_no-border_1600w.png/ "DDMAL banner clear") -
    -![DDMAL banner outline]({{ site.url }}/assets/Ddmal_logo_transp-bg_border_1600w.png/ "DDMAL banner outline") -
    -![DDMAL banner black]({{ site.url }}/assets/Ddmal_logo_dark-bg_1600w.png/ "DDMAL banner black") diff --git a/_resources/resources.md b/_resources/resources.md deleted file mode 100644 index 83482680..00000000 --- a/_resources/resources.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: page -title: Resources -tab: Resources -permalink: /resources/ ---- - -## Links - -* [DDMAL YouTube Channel](https://www.youtube.com/channel/UCUfQbhfxbech3VjQwlxAF9g) -* [MusicTech Wiki (requires VPN)](https://wiki.simssa.ca) -* [Logos (for posters, presentations, etc.)]({{ site.url }}/resources/logos/) -
    - -## Code Snippets - -Random snippets of code that you might find useful. - -* [Compress a directory of wave files to M4A]({{ site.url }}/resources/wav_to_m4a/) (Python, OS X) -* [Discrete Fourier Transform]({{ site.url }}/resources/discrete_fourier_transform/) (Python) diff --git a/_resources/wav_to_m4a.md b/_resources/wav_to_m4a.md deleted file mode 100644 index 392feeb1..00000000 --- a/_resources/wav_to_m4a.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -layout: page -title: Compress a Directory of Wave files to M4A -tab: Resources ---- - -Takes a directory of wave files and compresses them to MPEG-4 Audio files. - -Usage: - -* python compress.py -d directory_of_wave_files -o output_directory -* Requires afconvert, , a utility included with the OS X Developer Tools -* /usr/local/bin/afconvert - - -``` -from optparse import OptionParser -import os,sys,shutil -import tempfile -def main(dir, outdir): - temp_dir = tempfile.mkdtemp() - in_dir = os.walk(dir) - for d in in_dir: - # print d - out_dirname = (os.path.basename(d[0]).replace("/", '-')) - try: - mkd = os.mkdir(os.path.join(temp_dir, out_dirname)) - print "Out: ", out_dirname, " " - except OSError: - print "Directory already exists. " - # d is the directory object, files are a tuple at index 2 - wavfiles = [f for f in d[2] if os.path.splitext(f)[-1] == '.wav'] - for f in wavfiles: - outfile = "%s.m4a" % (os.path.splitext(f)[0],) - outfile = os.path.abspath(os.path.join(temp_dir, out_dirname, outfile)) - print "Outfile: ", outfile - infile = "%s" % (os.path.join(d[0], f)) - print "Infile: ", infile - cmd = '/usr/local/bin/afconvert -f m4af -d aac -b 256000 "%s" "%s"' % (infile, outfile) - print "Compressing... ", cmd - os.system(cmd) - print "Outpath: ", os.path.abspath(os.path.join(outdir, out_dirname)) - shutil.move(temp_dir, os.path.abspath(outdir)) - return True - -if __name__ == "__main__": - parser = OptionParser() - parser.add_option("-d", "--dir", help="The Directory to parse", action="store", type="string", dest="directory") - parser.add_option("-o", "--output", help="The Director to output the files", action="store", type="string", dest="output") - (options,args) = parser.parse_args() - main(os.path.abspath(options.directory), os.path.abspath(options.output)) -``` diff --git a/_sass/_bootstrap.scss b/_sass/_bootstrap.scss deleted file mode 100644 index 309ef569..00000000 --- a/_sass/_bootstrap.scss +++ /dev/null @@ -1,9896 +0,0 @@ -/*! - * Bootstrap v4.2.1 (https://getbootstrap.com/) - * Copyright 2011-2018 The Bootstrap Authors - * Copyright 2011-2018 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - /* --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */ - /* --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; */ -} - -*, -*::before, -*::after { - box-sizing: border-box; -} - -html { - /* font-family: sans-serif; */ - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; -} - -body { - margin: 0; - /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */ - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; -} - -[tabindex="-1"]:focus { - outline: 0 !important; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 0.5rem; -} - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - text-decoration-skip-ink: none; -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: .5rem; - margin-left: 0; -} - -blockquote { - margin: 0 0 1rem; -} - -/* b, -strong { - font-weight: bolder; -} */ - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -.25em; -} - -sup { - top: -.5em; -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent; -} - -a:hover { - color: #0056b3; - text-decoration: underline; -} - -a:not([href]):not([tabindex]) { - color: inherit; - text-decoration: none; -} - -a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { - color: inherit; - text-decoration: none; -} - -a:not([href]):not([tabindex]):focus { - outline: 0; -} - -pre, -code, -kbd, -samp { - /* font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; */ - font-size: 1em; -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; -} - -figure { - margin: 0 0 1rem; -} - -img { - vertical-align: middle; - border-style: none; -} - -svg { - overflow: hidden; - vertical-align: middle; -} - -table { - border-collapse: collapse; -} - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; -} - -th { - text-align: inherit; -} - -label { - display: inline-block; - margin-bottom: 0.5rem; -} - -button { - border-radius: 0; -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - /* font-family: inherit; */ - font-size: inherit; - line-height: inherit; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button, -[type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - padding: 0; - border-style: none; -} - -input[type="radio"], -input[type="checkbox"] { - box-sizing: border-box; - padding: 0; -} - -input[type="date"], -input[type="time"], -input[type="datetime-local"], -input[type="month"] { - -webkit-appearance: listbox; -} - -textarea { - overflow: auto; - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} - -progress { - vertical-align: baseline; -} - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; -} - -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -summary { - display: list-item; - cursor: pointer; -} - -template { - display: none; -} - -[hidden] { - display: none !important; -} - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - margin-bottom: 0.5rem; - /* font-family: inherit; */ - font-weight: 500; - line-height: 1.2; - color: inherit; -} - -h1, .h1 { - font-size: 2.5rem; -} - -h2, .h2 { - font-size: 2rem; -} - -h3, .h3 { - font-size: 1.75rem; -} - -h4, .h4 { - font-size: 1.5rem; -} - -h5, .h5 { - font-size: 1.25rem; -} - -h6, .h6 { - font-size: 1rem; -} - -.lead { - font-size: 1.25rem; - font-weight: 300; -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); -} - -small, -.small { - font-size: 80%; - font-weight: 400; -} - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; -} - -.list-inline-item { - display: inline-block; -} - -.list-inline-item:not(:last-child) { - margin-right: 0.5rem; -} - -.initialism { - font-size: 90%; - text-transform: uppercase; -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; -} - -.blockquote-footer::before { - content: "\2014\00A0"; -} - -.img-fluid { - max-width: 100%; - height: auto; -} - -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; -} - -.figure { - display: inline-block; -} - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; -} - -.figure-caption { - font-size: 90%; - color: #6c757d; -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-break: break-word; -} - -a > code { - color: inherit; -} - -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; -} - -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; -} - -pre { - display: block; - font-size: 87.5%; - color: #212529; -} - -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} - -@media (min-width: 576px) { - .container { - max-width: 540px; - } -} - -@media (min-width: 768px) { - .container { - max-width: 720px; - } -} - -@media (min-width: 992px) { - .container { - max-width: 960px; - } -} - -@media (min-width: 1200px) { - .container { - max-width: 1140px; - } -} - -.container-fluid { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} - -.row { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; -} - -.no-gutters { - margin-right: 0; - margin-left: 0; -} - -.no-gutters > .col, -.no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; -} - -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, -.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, -.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, -.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, -.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px; -} - -.col { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; -} - -.col-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; -} - -.col-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; -} - -.col-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; -} - -.col-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; -} - -.col-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; -} - -.col-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; -} - -.col-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; -} - -.col-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; -} - -.col-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; -} - -.col-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; -} - -.col-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; -} - -.col-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; -} - -.col-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; -} - -.order-first { - -ms-flex-order: -1; - order: -1; -} - -.order-last { - -ms-flex-order: 13; - order: 13; -} - -.order-0 { - -ms-flex-order: 0; - order: 0; -} - -.order-1 { - -ms-flex-order: 1; - order: 1; -} - -.order-2 { - -ms-flex-order: 2; - order: 2; -} - -.order-3 { - -ms-flex-order: 3; - order: 3; -} - -.order-4 { - -ms-flex-order: 4; - order: 4; -} - -.order-5 { - -ms-flex-order: 5; - order: 5; -} - -.order-6 { - -ms-flex-order: 6; - order: 6; -} - -.order-7 { - -ms-flex-order: 7; - order: 7; -} - -.order-8 { - -ms-flex-order: 8; - order: 8; -} - -.order-9 { - -ms-flex-order: 9; - order: 9; -} - -.order-10 { - -ms-flex-order: 10; - order: 10; -} - -.order-11 { - -ms-flex-order: 11; - order: 11; -} - -.order-12 { - -ms-flex-order: 12; - order: 12; -} - -.offset-1 { - margin-left: 8.333333%; -} - -.offset-2 { - margin-left: 16.666667%; -} - -.offset-3 { - margin-left: 25%; -} - -.offset-4 { - margin-left: 33.333333%; -} - -.offset-5 { - margin-left: 41.666667%; -} - -.offset-6 { - margin-left: 50%; -} - -.offset-7 { - margin-left: 58.333333%; -} - -.offset-8 { - margin-left: 66.666667%; -} - -.offset-9 { - margin-left: 75%; -} - -.offset-10 { - margin-left: 83.333333%; -} - -.offset-11 { - margin-left: 91.666667%; -} - -@media (min-width: 576px) { - .col-sm { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-sm-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-sm-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-sm-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-sm-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-sm-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-sm-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-sm-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-sm-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-sm-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-sm-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-sm-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-sm-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-sm-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-sm-first { - -ms-flex-order: -1; - order: -1; - } - .order-sm-last { - -ms-flex-order: 13; - order: 13; - } - .order-sm-0 { - -ms-flex-order: 0; - order: 0; - } - .order-sm-1 { - -ms-flex-order: 1; - order: 1; - } - .order-sm-2 { - -ms-flex-order: 2; - order: 2; - } - .order-sm-3 { - -ms-flex-order: 3; - order: 3; - } - .order-sm-4 { - -ms-flex-order: 4; - order: 4; - } - .order-sm-5 { - -ms-flex-order: 5; - order: 5; - } - .order-sm-6 { - -ms-flex-order: 6; - order: 6; - } - .order-sm-7 { - -ms-flex-order: 7; - order: 7; - } - .order-sm-8 { - -ms-flex-order: 8; - order: 8; - } - .order-sm-9 { - -ms-flex-order: 9; - order: 9; - } - .order-sm-10 { - -ms-flex-order: 10; - order: 10; - } - .order-sm-11 { - -ms-flex-order: 11; - order: 11; - } - .order-sm-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-sm-0 { - margin-left: 0; - } - .offset-sm-1 { - margin-left: 8.333333%; - } - .offset-sm-2 { - margin-left: 16.666667%; - } - .offset-sm-3 { - margin-left: 25%; - } - .offset-sm-4 { - margin-left: 33.333333%; - } - .offset-sm-5 { - margin-left: 41.666667%; - } - .offset-sm-6 { - margin-left: 50%; - } - .offset-sm-7 { - margin-left: 58.333333%; - } - .offset-sm-8 { - margin-left: 66.666667%; - } - .offset-sm-9 { - margin-left: 75%; - } - .offset-sm-10 { - margin-left: 83.333333%; - } - .offset-sm-11 { - margin-left: 91.666667%; - } -} - -@media (min-width: 768px) { - .col-md { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-md-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-md-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-md-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-md-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-md-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-md-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-md-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-md-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-md-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-md-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-md-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-md-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-md-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-md-first { - -ms-flex-order: -1; - order: -1; - } - .order-md-last { - -ms-flex-order: 13; - order: 13; - } - .order-md-0 { - -ms-flex-order: 0; - order: 0; - } - .order-md-1 { - -ms-flex-order: 1; - order: 1; - } - .order-md-2 { - -ms-flex-order: 2; - order: 2; - } - .order-md-3 { - -ms-flex-order: 3; - order: 3; - } - .order-md-4 { - -ms-flex-order: 4; - order: 4; - } - .order-md-5 { - -ms-flex-order: 5; - order: 5; - } - .order-md-6 { - -ms-flex-order: 6; - order: 6; - } - .order-md-7 { - -ms-flex-order: 7; - order: 7; - } - .order-md-8 { - -ms-flex-order: 8; - order: 8; - } - .order-md-9 { - -ms-flex-order: 9; - order: 9; - } - .order-md-10 { - -ms-flex-order: 10; - order: 10; - } - .order-md-11 { - -ms-flex-order: 11; - order: 11; - } - .order-md-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-md-0 { - margin-left: 0; - } - .offset-md-1 { - margin-left: 8.333333%; - } - .offset-md-2 { - margin-left: 16.666667%; - } - .offset-md-3 { - margin-left: 25%; - } - .offset-md-4 { - margin-left: 33.333333%; - } - .offset-md-5 { - margin-left: 41.666667%; - } - .offset-md-6 { - margin-left: 50%; - } - .offset-md-7 { - margin-left: 58.333333%; - } - .offset-md-8 { - margin-left: 66.666667%; - } - .offset-md-9 { - margin-left: 75%; - } - .offset-md-10 { - margin-left: 83.333333%; - } - .offset-md-11 { - margin-left: 91.666667%; - } -} - -@media (min-width: 992px) { - .col-lg { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-lg-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-lg-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-lg-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-lg-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-lg-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-lg-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-lg-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-lg-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-lg-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-lg-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-lg-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-lg-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-lg-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-lg-first { - -ms-flex-order: -1; - order: -1; - } - .order-lg-last { - -ms-flex-order: 13; - order: 13; - } - .order-lg-0 { - -ms-flex-order: 0; - order: 0; - } - .order-lg-1 { - -ms-flex-order: 1; - order: 1; - } - .order-lg-2 { - -ms-flex-order: 2; - order: 2; - } - .order-lg-3 { - -ms-flex-order: 3; - order: 3; - } - .order-lg-4 { - -ms-flex-order: 4; - order: 4; - } - .order-lg-5 { - -ms-flex-order: 5; - order: 5; - } - .order-lg-6 { - -ms-flex-order: 6; - order: 6; - } - .order-lg-7 { - -ms-flex-order: 7; - order: 7; - } - .order-lg-8 { - -ms-flex-order: 8; - order: 8; - } - .order-lg-9 { - -ms-flex-order: 9; - order: 9; - } - .order-lg-10 { - -ms-flex-order: 10; - order: 10; - } - .order-lg-11 { - -ms-flex-order: 11; - order: 11; - } - .order-lg-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-lg-0 { - margin-left: 0; - } - .offset-lg-1 { - margin-left: 8.333333%; - } - .offset-lg-2 { - margin-left: 16.666667%; - } - .offset-lg-3 { - margin-left: 25%; - } - .offset-lg-4 { - margin-left: 33.333333%; - } - .offset-lg-5 { - margin-left: 41.666667%; - } - .offset-lg-6 { - margin-left: 50%; - } - .offset-lg-7 { - margin-left: 58.333333%; - } - .offset-lg-8 { - margin-left: 66.666667%; - } - .offset-lg-9 { - margin-left: 75%; - } - .offset-lg-10 { - margin-left: 83.333333%; - } - .offset-lg-11 { - margin-left: 91.666667%; - } -} - -@media (min-width: 1200px) { - .col-xl { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-xl-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-xl-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-xl-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-xl-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-xl-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-xl-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-xl-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-xl-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-xl-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-xl-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-xl-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-xl-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-xl-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-xl-first { - -ms-flex-order: -1; - order: -1; - } - .order-xl-last { - -ms-flex-order: 13; - order: 13; - } - .order-xl-0 { - -ms-flex-order: 0; - order: 0; - } - .order-xl-1 { - -ms-flex-order: 1; - order: 1; - } - .order-xl-2 { - -ms-flex-order: 2; - order: 2; - } - .order-xl-3 { - -ms-flex-order: 3; - order: 3; - } - .order-xl-4 { - -ms-flex-order: 4; - order: 4; - } - .order-xl-5 { - -ms-flex-order: 5; - order: 5; - } - .order-xl-6 { - -ms-flex-order: 6; - order: 6; - } - .order-xl-7 { - -ms-flex-order: 7; - order: 7; - } - .order-xl-8 { - -ms-flex-order: 8; - order: 8; - } - .order-xl-9 { - -ms-flex-order: 9; - order: 9; - } - .order-xl-10 { - -ms-flex-order: 10; - order: 10; - } - .order-xl-11 { - -ms-flex-order: 11; - order: 11; - } - .order-xl-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-xl-0 { - margin-left: 0; - } - .offset-xl-1 { - margin-left: 8.333333%; - } - .offset-xl-2 { - margin-left: 16.666667%; - } - .offset-xl-3 { - margin-left: 25%; - } - .offset-xl-4 { - margin-left: 33.333333%; - } - .offset-xl-5 { - margin-left: 41.666667%; - } - .offset-xl-6 { - margin-left: 50%; - } - .offset-xl-7 { - margin-left: 58.333333%; - } - .offset-xl-8 { - margin-left: 66.666667%; - } - .offset-xl-9 { - margin-left: 75%; - } - .offset-xl-10 { - margin-left: 83.333333%; - } - .offset-xl-11 { - margin-left: 91.666667%; - } -} - -.table { - width: 100%; - margin-bottom: 1rem; - background-color: transparent; -} - -.table th, -.table td { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dee2e6; -} - -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6; -} - -.table tbody + tbody { - border-top: 2px solid #dee2e6; -} - -.table .table { - background-color: #fff; -} - -.table-sm th, -.table-sm td { - padding: 0.3rem; -} - -.table-bordered { - border: 1px solid #dee2e6; -} - -.table-bordered th, -.table-bordered td { - border: 1px solid #dee2e6; -} - -.table-bordered thead th, -.table-bordered thead td { - border-bottom-width: 2px; -} - -.table-borderless th, -.table-borderless td, -.table-borderless thead th, -.table-borderless tbody + tbody { - border: 0; -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); -} - -.table-hover tbody tr:hover { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-primary, -.table-primary > th, -.table-primary > td { - background-color: #b8daff; -} - -.table-primary th, -.table-primary td, -.table-primary thead th, -.table-primary tbody + tbody { - border-color: #7abaff; -} - -.table-hover .table-primary:hover { - background-color: #9fcdff; -} - -.table-hover .table-primary:hover > td, -.table-hover .table-primary:hover > th { - background-color: #9fcdff; -} - -.table-secondary, -.table-secondary > th, -.table-secondary > td { - background-color: #d6d8db; -} - -.table-secondary th, -.table-secondary td, -.table-secondary thead th, -.table-secondary tbody + tbody { - border-color: #b3b7bb; -} - -.table-hover .table-secondary:hover { - background-color: #c8cbcf; -} - -.table-hover .table-secondary:hover > td, -.table-hover .table-secondary:hover > th { - background-color: #c8cbcf; -} - -.table-success, -.table-success > th, -.table-success > td { - background-color: #c3e6cb; -} - -.table-success th, -.table-success td, -.table-success thead th, -.table-success tbody + tbody { - border-color: #8fd19e; -} - -.table-hover .table-success:hover { - background-color: #b1dfbb; -} - -.table-hover .table-success:hover > td, -.table-hover .table-success:hover > th { - background-color: #b1dfbb; -} - -.table-info, -.table-info > th, -.table-info > td { - background-color: #bee5eb; -} - -.table-info th, -.table-info td, -.table-info thead th, -.table-info tbody + tbody { - border-color: #86cfda; -} - -.table-hover .table-info:hover { - background-color: #abdde5; -} - -.table-hover .table-info:hover > td, -.table-hover .table-info:hover > th { - background-color: #abdde5; -} - -.table-warning, -.table-warning > th, -.table-warning > td { - background-color: #ffeeba; -} - -.table-warning th, -.table-warning td, -.table-warning thead th, -.table-warning tbody + tbody { - border-color: #ffdf7e; -} - -.table-hover .table-warning:hover { - background-color: #ffe8a1; -} - -.table-hover .table-warning:hover > td, -.table-hover .table-warning:hover > th { - background-color: #ffe8a1; -} - -.table-danger, -.table-danger > th, -.table-danger > td { - background-color: #f5c6cb; -} - -.table-danger th, -.table-danger td, -.table-danger thead th, -.table-danger tbody + tbody { - border-color: #ed969e; -} - -.table-hover .table-danger:hover { - background-color: #f1b0b7; -} - -.table-hover .table-danger:hover > td, -.table-hover .table-danger:hover > th { - background-color: #f1b0b7; -} - -.table-light, -.table-light > th, -.table-light > td { - background-color: #fdfdfe; -} - -.table-light th, -.table-light td, -.table-light thead th, -.table-light tbody + tbody { - border-color: #fbfcfc; -} - -.table-hover .table-light:hover { - background-color: #ececf6; -} - -.table-hover .table-light:hover > td, -.table-hover .table-light:hover > th { - background-color: #ececf6; -} - -.table-dark, -.table-dark > th, -.table-dark > td { - background-color: #c6c8ca; -} - -.table-dark th, -.table-dark td, -.table-dark thead th, -.table-dark tbody + tbody { - border-color: #95999c; -} - -.table-hover .table-dark:hover { - background-color: #b9bbbe; -} - -.table-hover .table-dark:hover > td, -.table-hover .table-dark:hover > th { - background-color: #b9bbbe; -} - -.table-active, -.table-active > th, -.table-active > td { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-hover .table-active:hover > td, -.table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); -} - -.table .thead-dark th { - color: #fff; - background-color: #212529; - border-color: #32383e; -} - -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6; -} - -.table-dark { - color: #fff; - background-color: #212529; -} - -.table-dark th, -.table-dark td, -.table-dark thead th { - border-color: #32383e; -} - -.table-dark.table-bordered { - border: 0; -} - -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, 0.05); -} - -.table-dark.table-hover tbody tr:hover { - background-color: rgba(255, 255, 255, 0.075); -} - -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-sm > .table-bordered { - border: 0; - } -} - -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-md > .table-bordered { - border: 0; - } -} - -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-lg > .table-bordered { - border: 0; - } -} - -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-xl > .table-bordered { - border: 0; - } -} - -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; -} - -.table-responsive > .table-bordered { - border: 0; -} - -.form-control { - display: block; - width: 100%; - height: calc(2.25rem + 2px); - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} - -@media screen and (prefers-reduced-motion: reduce) { - .form-control { - transition: none; - } -} - -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} - -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.form-control::-webkit-input-placeholder { - color: #6c757d; - opacity: 1; -} - -.form-control::-moz-placeholder { - color: #6c757d; - opacity: 1; -} - -.form-control:-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} - -.form-control::-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} - -.form-control::placeholder { - color: #6c757d; - opacity: 1; -} - -.form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; -} - -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; -} - -.form-control-file, -.form-control-range { - display: block; - width: 100%; -} - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5; -} - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; - line-height: 1.5; -} - -.form-control-plaintext { - display: block; - width: 100%; - padding-top: 0.375rem; - padding-bottom: 0.375rem; - margin-bottom: 0; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; -} - -.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; -} - -.form-control-sm { - height: calc(1.8125rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.form-control-lg { - height: calc(2.875rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -select.form-control[size], select.form-control[multiple] { - height: auto; -} - -textarea.form-control { - height: auto; -} - -.form-group { - margin-bottom: 1rem; -} - -.form-text { - display: block; - margin-top: 0.25rem; -} - -.form-row { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; -} - -.form-row > .col, -.form-row > [class*="col-"] { - padding-right: 5px; - padding-left: 5px; -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; -} - -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; -} - -.form-check-input:disabled ~ .form-check-label { - color: #6c757d; -} - -.form-check-label { - margin-bottom: 0; -} - -.form-check-inline { - display: -ms-inline-flexbox; - display: inline-flex; - -ms-flex-align: center; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; -} - -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #28a745; -} - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(40, 167, 69, 0.9); - border-radius: 0.25rem; -} - -.was-validated .form-control:valid, .form-control.is-valid { - border-color: #28a745; - padding-right: 2.25rem; - background-repeat: no-repeat; - background-position: center right calc(2.25rem / 4); - background-size: calc(2.25rem / 2) calc(2.25rem / 2); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); -} - -.was-validated .form-control:valid:focus, .form-control.is-valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated .form-control:valid ~ .valid-feedback, -.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, -.form-control.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: 2.25rem; - background-position: top calc(2.25rem / 4) right calc(2.25rem / 4); -} - -.was-validated .custom-select:valid, .custom-select.is-valid { - border-color: #28a745; - padding-right: 3.4375rem; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") no-repeat center right 1.75rem/1.125rem 1.125rem; -} - -.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated .custom-select:valid ~ .valid-feedback, -.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, -.custom-select.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-control-file:valid ~ .valid-feedback, -.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, -.form-control-file.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #28a745; -} - -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { - color: #28a745; -} - -.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - border-color: #28a745; -} - -.was-validated .custom-control-input:valid ~ .valid-feedback, -.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, -.custom-control-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - border-color: #34ce57; - background-color: #34ce57; -} - -.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #28a745; -} - -.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { - border-color: #28a745; -} - -.was-validated .custom-file-input:valid ~ .valid-feedback, -.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, -.custom-file-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #dc3545; -} - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; -} - -.was-validated .form-control:invalid, .form-control.is-invalid { - border-color: #dc3545; - padding-right: 2.25rem; - background-repeat: no-repeat; - background-position: center right calc(2.25rem / 4); - background-size: calc(2.25rem / 2) calc(2.25rem / 2); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"); -} - -.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated .form-control:invalid ~ .invalid-feedback, -.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, -.form-control.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: 2.25rem; - background-position: top calc(2.25rem / 4) right calc(2.25rem / 4); -} - -.was-validated .custom-select:invalid, .custom-select.is-invalid { - border-color: #dc3545; - padding-right: 3.4375rem; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") no-repeat center right 1.75rem/1.125rem 1.125rem; -} - -.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated .custom-select:invalid ~ .invalid-feedback, -.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, -.custom-select.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-control-file:invalid ~ .invalid-feedback, -.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, -.form-control-file.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; -} - -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { - color: #dc3545; -} - -.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - border-color: #dc3545; -} - -.was-validated .custom-control-input:invalid ~ .invalid-feedback, -.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, -.custom-control-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - border-color: #e4606d; - background-color: #e4606d; -} - -.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #dc3545; -} - -.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { - border-color: #dc3545; -} - -.was-validated .custom-file-input:invalid ~ .invalid-feedback, -.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, -.custom-file-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.form-inline { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -ms-flex-align: center; - align-items: center; -} - -.form-inline .form-check { - width: 100%; -} - -@media (min-width: 576px) { - .form-inline label { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - margin-bottom: 0; - } - .form-inline .form-group { - display: -ms-flexbox; - display: flex; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -ms-flex-align: center; - align-items: center; - margin-bottom: 0; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-plaintext { - display: inline-block; - } - .form-inline .input-group, - .form-inline .custom-select { - width: auto; - } - .form-inline .form-check { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - width: auto; - padding-left: 0; - } - .form-inline .form-check-input { - position: relative; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; - } - .form-inline .custom-control { - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - } - .form-inline .custom-control-label { - margin-bottom: 0; - } -} - -.btn { - display: inline-block; - font-weight: 400; - color: #212529; - text-align: center; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} - -@media screen and (prefers-reduced-motion: reduce) { - .btn { - transition: none; - } -} - -.btn:hover { - color: #212529; - text-decoration: none; -} - -.btn:focus, .btn.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.btn.disabled, .btn:disabled { - opacity: 0.65; -} - -.btn:not(:disabled):not(.disabled) { - cursor: pointer; -} - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; -} - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; -} - -.btn-primary:focus, .btn-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); -} - -.btn-primary.disabled, .btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, -.show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf; -} - -.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, -.show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); -} - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} - -.btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62; -} - -.btn-secondary:focus, .btn-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); -} - -.btn-secondary.disabled, .btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} - -.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, -.show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b; -} - -.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, -.show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); -} - -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} - -.btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34; -} - -.btn-success:focus, .btn-success.focus { - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); -} - -.btn-success.disabled, .btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} - -.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, -.show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430; -} - -.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, -.show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); -} - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} - -.btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b; -} - -.btn-info:focus, .btn-info.focus { - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); -} - -.btn-info.disabled, .btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} - -.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, -.show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f; -} - -.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, -.show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); -} - -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} - -.btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; -} - -.btn-warning:focus, .btn-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); -} - -.btn-warning.disabled, .btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} - -.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, -.show > .btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500; -} - -.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, -.show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); -} - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} - -.btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130; -} - -.btn-danger:focus, .btn-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); -} - -.btn-danger.disabled, .btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} - -.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, -.show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d; -} - -.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, -.show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); -} - -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; -} - -.btn-light:focus, .btn-light.focus { - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); -} - -.btn-light.disabled, .btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, -.show > .btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df; -} - -.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, -.show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); -} - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} - -.btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124; -} - -.btn-dark:focus, .btn-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); -} - -.btn-dark.disabled, .btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} - -.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, -.show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d; -} - -.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, -.show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); -} - -.btn-outline-primary { - color: #007bff; - border-color: #007bff; -} - -.btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.btn-outline-primary:focus, .btn-outline-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #007bff; - background-color: transparent; -} - -.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, -.show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; -} - -.btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} - -.btn-outline-secondary:focus, .btn-outline-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent; -} - -.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, -.show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} - -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-outline-success { - color: #28a745; - border-color: #28a745; -} - -.btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} - -.btn-outline-success:focus, .btn-outline-success.focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-outline-success.disabled, .btn-outline-success:disabled { - color: #28a745; - background-color: transparent; -} - -.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, -.show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} - -.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-outline-info { - color: #17a2b8; - border-color: #17a2b8; -} - -.btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} - -.btn-outline-info:focus, .btn-outline-info.focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-outline-info.disabled, .btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent; -} - -.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, -.show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} - -.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107; -} - -.btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} - -.btn-outline-warning:focus, .btn-outline-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-outline-warning.disabled, .btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent; -} - -.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, -.show > .btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} - -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545; -} - -.btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} - -.btn-outline-danger:focus, .btn-outline-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-outline-danger.disabled, .btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent; -} - -.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, -.show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} - -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-outline-light:focus, .btn-outline-light.focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-outline-light.disabled, .btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent; -} - -.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, -.show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-outline-dark { - color: #343a40; - border-color: #343a40; -} - -.btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} - -.btn-outline-dark:focus, .btn-outline-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-outline-dark.disabled, .btn-outline-dark:disabled { - color: #343a40; - background-color: transparent; -} - -.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, -.show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} - -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-link { - font-weight: 400; - color: #007bff; -} - -.btn-link:hover { - color: #0056b3; - text-decoration: underline; -} - -.btn-link:focus, .btn-link.focus { - text-decoration: underline; - box-shadow: none; -} - -.btn-link:disabled, .btn-link.disabled { - color: #6c757d; - pointer-events: none; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.btn-block { - display: block; - width: 100%; -} - -.btn-block + .btn-block { - margin-top: 0.5rem; -} - -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} - -.fade { - transition: opacity 0.15s linear; -} - -@media screen and (prefers-reduced-motion: reduce) { - .fade { - transition: none; - } -} - -.fade:not(.show) { - opacity: 0; -} - -.collapse:not(.show) { - display: none; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height 0.35s ease; -} - -@media screen and (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; - } -} - -.dropup, -.dropright, -.dropdown, -.dropleft { - position: relative; -} - -.dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; -} - -.dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} - -.dropdown-menu-right { - right: 0; - left: auto; -} - -@media (min-width: 576px) { - .dropdown-menu-sm-right { - right: 0; - left: auto; - } -} - -@media (min-width: 768px) { - .dropdown-menu-md-right { - right: 0; - left: auto; - } - .dropdown:hover .dropdown-menu { - display: block; -} -} - -@media (min-width: 992px) { - .dropdown-menu-lg-right { - right: 0; - left: auto; - } -} - -@media (min-width: 1200px) { - .dropdown-menu-xl-right { - right: 0; - left: auto; - } -} - -.dropdown-menu-left { - right: auto; - left: 0; -} - -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; - } -} - -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; - } -} - -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; - } -} - -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; - } -} - -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; -} - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; -} - -.dropup .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; -} - -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; -} - -.dropright .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-toggle::after { - vertical-align: 0; -} - -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; -} - -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; -} - -.dropleft .dropdown-toggle::after { - display: none; -} - -.dropleft .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; -} - -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropleft .dropdown-toggle::before { - vertical-align: 0; -} - -.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { - right: auto; - bottom: auto; -} - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; -} - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; -} - -.dropdown-item:first-child { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.dropdown-item:last-child { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} - -.dropdown-item:hover, .dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa; -} - -.dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff; -} - -.dropdown-item.disabled, .dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; -} - -.dropdown-menu.show { - display: block; -} - -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; -} - -.dropdown-item-text { - display: block; - padding: 0.25rem 1.5rem; - color: #212529; -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: -ms-inline-flexbox; - display: inline-flex; - vertical-align: middle; -} - -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; -} - -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover { - z-index: 1; -} - -.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 1; -} - -.btn-toolbar { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-pack: start; - justify-content: flex-start; -} - -.btn-toolbar .input-group { - width: auto; -} - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; -} - -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; -} - -.dropdown-toggle-split::after, -.dropup .dropdown-toggle-split::after, -.dropright .dropdown-toggle-split::after { - margin-left: 0; -} - -.dropleft .dropdown-toggle-split::before { - margin-right: 0; -} - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; -} - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; -} - -.btn-group-vertical { - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-pack: center; - justify-content: center; -} - -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group { - width: 100%; -} - -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; -} - -.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; -} - -.btn-group-toggle > .btn input[type="radio"], -.btn-group-toggle > .btn input[type="checkbox"], -.btn-group-toggle > .btn-group > .btn input[type="radio"], -.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.input-group { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: stretch; - align-items: stretch; - width: 100%; -} - -.input-group > .form-control, -.input-group > .form-control-plaintext, -.input-group > .custom-select, -.input-group > .custom-file { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 1%; - margin-bottom: 0; -} - -.input-group > .form-control + .form-control, -.input-group > .form-control + .custom-select, -.input-group > .form-control + .custom-file, -.input-group > .form-control-plaintext + .form-control, -.input-group > .form-control-plaintext + .custom-select, -.input-group > .form-control-plaintext + .custom-file, -.input-group > .custom-select + .form-control, -.input-group > .custom-select + .custom-select, -.input-group > .custom-select + .custom-file, -.input-group > .custom-file + .form-control, -.input-group > .custom-file + .custom-select, -.input-group > .custom-file + .custom-file { - margin-left: -1px; -} - -.input-group > .form-control:focus, -.input-group > .custom-select:focus, -.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { - z-index: 3; -} - -.input-group > .custom-file .custom-file-input:focus { - z-index: 4; -} - -.input-group > .form-control:not(:last-child), -.input-group > .custom-select:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .form-control:not(:first-child), -.input-group > .custom-select:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group > .custom-file { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; -} - -.input-group > .custom-file:not(:last-child) .custom-file-label, -.input-group > .custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group-prepend, -.input-group-append { - display: -ms-flexbox; - display: flex; -} - -.input-group-prepend .btn, -.input-group-append .btn { - position: relative; - z-index: 2; -} - -.input-group-prepend .btn:focus, -.input-group-append .btn:focus { - z-index: 3; -} - -.input-group-prepend .btn + .btn, -.input-group-prepend .btn + .input-group-text, -.input-group-prepend .input-group-text + .input-group-text, -.input-group-prepend .input-group-text + .btn, -.input-group-append .btn + .btn, -.input-group-append .btn + .input-group-text, -.input-group-append .input-group-text + .input-group-text, -.input-group-append .input-group-text + .btn { - margin-left: -1px; -} - -.input-group-prepend { - margin-right: -1px; -} - -.input-group-append { - margin-left: -1px; -} - -.input-group-text { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: 0.375rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} - -.input-group-text input[type="radio"], -.input-group-text input[type="checkbox"] { - margin-top: 0; -} - -.input-group-lg > .form-control:not(textarea), -.input-group-lg > .custom-select { - height: calc(2.875rem + 2px); -} - -.input-group-lg > .form-control, -.input-group-lg > .custom-select, -.input-group-lg > .input-group-prepend > .input-group-text, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-append > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -.input-group-sm > .form-control:not(textarea), -.input-group-sm > .custom-select { - height: calc(1.8125rem + 2px); -} - -.input-group-sm > .form-control, -.input-group-sm > .custom-select, -.input-group-sm > .input-group-prepend > .input-group-text, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-append > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.input-group-lg > .custom-select, -.input-group-sm > .custom-select { - padding-right: 1.75rem; -} - -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text, -.input-group > .input-group-append:not(:last-child) > .btn, -.input-group > .input-group-append:not(:last-child) > .input-group-text, -.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.custom-control { - position: relative; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem; -} - -.custom-control-inline { - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 1rem; -} - -.custom-control-input { - position: absolute; - z-index: -1; - opacity: 0; -} - -.custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - border-color: #007bff; - background-color: #007bff; -} - -.custom-control-input:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { - border-color: #80bdff; -} - -.custom-control-input:not(:disabled):active ~ .custom-control-label::before { - color: #fff; - background-color: #b3d7ff; - border-color: #b3d7ff; -} - -.custom-control-input:disabled ~ .custom-control-label { - color: #6c757d; -} - -.custom-control-input:disabled ~ .custom-control-label::before { - background-color: #e9ecef; -} - -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top; -} - -.custom-control-label::before { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - background-color: #fff; - border: #adb5bd solid 1px; -} - -.custom-control-label::after { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background-repeat: no-repeat; - background-position: center center; - background-size: 50% 50%; -} - -.custom-checkbox .custom-control-label::before { - border-radius: 0.25rem; -} - -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); -} - -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { - border-color: #007bff; - background-color: #007bff; -} - -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); -} - -.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-radio .custom-control-label::before { - border-radius: 50%; -} - -.custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); -} - -.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-switch { - padding-left: 2.25rem; -} - -.custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: 0.5rem; -} - -.custom-switch .custom-control-label::after { - top: calc(0.25rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: 0.5rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; -} - -@media screen and (prefers-reduced-motion: reduce) { - .custom-switch .custom-control-label::after { - transition: none; - } -} - -.custom-switch .custom-control-input:checked ~ .custom-control-label::after { - background-color: #fff; - -webkit-transform: translateX(0.75rem); - transform: translateX(0.75rem); -} - -.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-select { - display: inline-block; - width: 100%; - height: calc(2.25rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.custom-select:focus { - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5); -} - -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; -} - -.custom-select[multiple], .custom-select[size]:not([size="1"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; -} - -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; -} - -.custom-select::-ms-expand { - opacity: 0; -} - -.custom-select-sm { - height: calc(1.8125rem + 2px); - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; -} - -.custom-select-lg { - height: calc(2.875rem + 2px); - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; -} - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(2.25rem + 2px); - margin-bottom: 0; -} - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(2.25rem + 2px); - margin: 0; - opacity: 0; -} - -.custom-file-input:focus ~ .custom-file-label { - border-color: #80bdff; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-file-input:disabled ~ .custom-file-label { - background-color: #e9ecef; -} - -.custom-file-input:lang(en) ~ .custom-file-label::after { - content: "Browse"; -} - -.custom-file-input ~ .custom-file-label[data-browse]::after { - content: attr(data-browse); -} - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(2.25rem + 2px); - padding: 0.375rem 0.75rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} - -.custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: 2.25rem; - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 0.25rem 0.25rem 0; -} - -.custom-range { - width: 100%; - height: calc(1rem + 0.4rem); - padding: 0; - background-color: transparent; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.custom-range:focus { - outline: none; -} - -.custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-range::-moz-focus-outer { - border: 0; -} - -.custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - -webkit-appearance: none; - appearance: none; -} - -@media screen and (prefers-reduced-motion: reduce) { - .custom-range::-webkit-slider-thumb { - transition: none; - } -} - -.custom-range::-webkit-slider-thumb:active { - background-color: #b3d7ff; -} - -.custom-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; -} - -.custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - -moz-appearance: none; - appearance: none; -} - -@media screen and (prefers-reduced-motion: reduce) { - .custom-range::-moz-range-thumb { - transition: none; - } -} - -.custom-range::-moz-range-thumb:active { - background-color: #b3d7ff; -} - -.custom-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; -} - -.custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: 0.2rem; - margin-left: 0.2rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; -} - -@media screen and (prefers-reduced-motion: reduce) { - .custom-range::-ms-thumb { - transition: none; - } -} - -.custom-range::-ms-thumb:active { - background-color: #b3d7ff; -} - -.custom-range::-ms-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: 0.5rem; -} - -.custom-range::-ms-fill-lower { - background-color: #dee2e6; - border-radius: 1rem; -} - -.custom-range::-ms-fill-upper { - margin-right: 15px; - background-color: #dee2e6; - border-radius: 1rem; -} - -.custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; -} - -.custom-range:disabled::-webkit-slider-runnable-track { - cursor: default; -} - -.custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd; -} - -.custom-range:disabled::-moz-range-track { - cursor: default; -} - -.custom-range:disabled::-ms-thumb { - background-color: #adb5bd; -} - -.custom-control-label::before, -.custom-file-label, -.custom-select { - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} - -@media screen and (prefers-reduced-motion: reduce) { - .custom-control-label::before, - .custom-file-label, - .custom-select { - transition: none; - } -} - -.nav { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; - border-bottom: 3px solid black; - -} - -.nav-link { - display: block; - padding: 0.5rem 1rem; -} - -.nav-link:hover, .nav-link:focus { - text-decoration: none; -} - -.nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; -} - -.nav-tabs { - border-bottom: 1px solid #dee2e6; -} - -.nav-tabs .nav-item { - margin-bottom: -1px; -} - -.nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - -.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; -} - -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; -} - -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; -} - -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav-pills .nav-link { - border-radius: 0.25rem; -} - -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #007bff; -} - -.nav-fill .nav-item { - -ms-flex: 1 1 auto; - flex: 1 1 auto; - text-align: center; -} - -.nav-justified .nav-item { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - text-align: center; -} - -.tab-content > .tab-pane { - display: none; -} - -.tab-content > .active { - display: block; -} - -.navbar { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 0.5rem 6%; - box-shadow: 1px 1px 10px #a8a6a6; -} - -.navbar > .container, -.navbar > .container-fluid { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between; -} - -.navbar-brand { - display: inline-block; - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap; - color: #1bb3e9; - letter-spacing: -1.5px; -} - -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} - -.navbar-nav { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; -} - -.navbar-nav .dropdown-menu { - position: static; - float: none; -} - -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.navbar-collapse { - -ms-flex-preferred-size: 100%; - flex-basis: 100%; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-align: center; - align-items: center; -} - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid black; - border-radius: 0.25rem; -} - -.navbar-toggler:hover, .navbar-toggler:focus { - text-decoration: none; -} - -.navbar-toggler:not(:disabled):not(.disabled) { - cursor: pointer; -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat center center; - background-size: 100% 100%; -} - -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 576px) { - .navbar-expand-sm { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-nav { - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-sm .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-sm .navbar-toggler { - display: none; - } -} - -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 768px) { - .navbar-expand-md { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-md .navbar-nav { - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-md .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-md .navbar-toggler { - display: none; - } -} - -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 992px) { - .navbar-expand-lg { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-nav { - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-lg .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-lg .navbar-toggler { - display: none; - } -} - -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 1200px) { - .navbar-expand-xl { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-nav { - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-xl .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-xl .navbar-toggler { - display: none; - } -} - -.navbar-expand { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start; -} - -.navbar-expand > .container, -.navbar-expand > .container-fluid { - padding-right: 0; - padding-left: 0; -} - -.navbar-expand .navbar-nav { - -ms-flex-direction: row; - flex-direction: row; -} - -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute; -} - -.navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.navbar-expand > .container, -.navbar-expand > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; -} - -.navbar-expand .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; -} - -.navbar-expand .navbar-toggler { - display: none; -} - -/* .navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); -} */ - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); -} - -.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); -} - -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); -} - -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); -} - -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} - -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); -} - -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-dark .navbar-brand { - color: #fff; -} - -.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; -} - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); -} - -.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); -} - -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); -} - -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; -} - -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); -} - -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} - -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); -} - -.navbar-dark .navbar-text a { - color: #fff; -} - -.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { - color: #fff; -} - -.card { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; -} - -.card > hr { - margin-right: 0; - margin-left: 0; -} - -.card > .list-group:first-child .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - -.card > .list-group:last-child .list-group-item:last-child { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.card-body { - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1.25rem; -} - -.card-title { - margin-bottom: 0.75rem; -} - -.card-subtitle { - margin-top: -0.375rem; - margin-bottom: 0; -} - -.card-text:last-child { - margin-bottom: 0; -} - -.card-link:hover { - text-decoration: none; -} - -.card-link + .card-link { - margin-left: 1.25rem; -} - -.card-header { - padding: 0.75rem 1.25rem; - margin-bottom: 0; - color: inherit; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); -} - -.card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; -} - -.card-header + .list-group .list-group-item:first-child { - border-top: 0; -} - -.card-footer { - padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); -} - -.card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); -} - -.card-header-tabs { - margin-right: -0.625rem; - margin-bottom: -0.75rem; - margin-left: -0.625rem; - border-bottom: 0; -} - -.card-header-pills { - margin-right: -0.625rem; - margin-left: -0.625rem; -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; -} - -.card-img { - width: 100%; - border-radius: calc(0.25rem - 1px); -} - -.card-img-top { - width: 100%; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.card-img-bottom { - width: 100%; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} - -.card-deck { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; -} - -.card-deck .card { - margin-bottom: 15px; -} - -@media (min-width: 576px) { - .card-deck { - -ms-flex-flow: row wrap; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; - } - .card-deck .card { - display: -ms-flexbox; - display: flex; - -ms-flex: 1 0 0%; - flex: 1 0 0%; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; - } -} - -.card-group { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; -} - -.card-group > .card { - margin-bottom: 15px; -} - -@media (min-width: 576px) { - .card-group { - -ms-flex-flow: row wrap; - flex-flow: row wrap; - } - .card-group > .card { - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-bottom: 0; - } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; - } - .card-group > .card:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - .card-group > .card:first-child .card-img-top, - .card-group > .card:first-child .card-header { - border-top-right-radius: 0; - } - .card-group > .card:first-child .card-img-bottom, - .card-group > .card:first-child .card-footer { - border-bottom-right-radius: 0; - } - .card-group > .card:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .card-group > .card:last-child .card-img-top, - .card-group > .card:last-child .card-header { - border-top-left-radius: 0; - } - .card-group > .card:last-child .card-img-bottom, - .card-group > .card:last-child .card-footer { - border-bottom-left-radius: 0; - } - .card-group > .card:only-child { - border-radius: 0.25rem; - } - .card-group > .card:only-child .card-img-top, - .card-group > .card:only-child .card-header { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; - } - .card-group > .card:only-child .card-img-bottom, - .card-group > .card:only-child .card-footer { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; - } - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) { - border-radius: 0; - } - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer { - border-radius: 0; - } -} - -.card-columns .card { - margin-bottom: 0.75rem; -} - -@media (min-width: 576px) { - .card-columns { - -webkit-column-count: 3; - -moz-column-count: 3; - column-count: 3; - -webkit-column-gap: 1.25rem; - -moz-column-gap: 1.25rem; - column-gap: 1.25rem; - orphans: 1; - widows: 1; - } - .card-columns .card { - display: inline-block; - width: 100%; - } -} - -.accordion .card { - overflow: hidden; -} - -.accordion .card:not(:first-of-type) .card-header:first-child { - border-radius: 0; -} - -.accordion .card:not(:first-of-type):not(:last-of-type) { - border-bottom: 0; - border-radius: 0; -} - -.accordion .card:first-of-type { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.accordion .card:last-of-type { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.accordion .card .card-header { - margin-bottom: -1px; -} - -.breadcrumb { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; -} - -.breadcrumb-item + .breadcrumb-item::before { - display: inline-block; - padding-right: 0.5rem; - color: #6c757d; - content: "/"; -} - -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: underline; -} - -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: none; -} - -.breadcrumb-item.active { - color: #6c757d; -} - -.pagination { - display: -ms-flexbox; - display: flex; - padding-left: 0; - list-style: none; - border-radius: 0.25rem; -} - -.page-link { - position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6; -} - -.page-link:hover { - z-index: 2; - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6; -} - -.page-link:focus { - z-index: 2; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.page-link:not(:disabled):not(.disabled) { - cursor: pointer; -} - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; -} - -.page-item.active .page-link { - z-index: 1; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6; -} - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5; -} - -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; -} - -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; -} - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; -} - -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; -} - -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; -} - -.badge { - display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; -} - -a.badge:hover, a.badge:focus { - text-decoration: none; -} - -.badge:empty { - display: none; -} - -.btn .badge { - position: relative; - top: -1px; -} - -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; -} - -.badge-primary { - color: #fff; - background-color: #007bff; -} - -a.badge-primary:hover, a.badge-primary:focus { - color: #fff; - background-color: #0062cc; -} - -.badge-secondary { - color: #fff; - background-color: #6c757d; -} - -a.badge-secondary:hover, a.badge-secondary:focus { - color: #fff; - background-color: #545b62; -} - -.badge-success { - color: #fff; - background-color: #28a745; -} - -a.badge-success:hover, a.badge-success:focus { - color: #fff; - background-color: #1e7e34; -} - -.badge-info { - color: #fff; - background-color: #17a2b8; -} - -a.badge-info:hover, a.badge-info:focus { - color: #fff; - background-color: #117a8b; -} - -.badge-warning { - color: #212529; - background-color: #ffc107; -} - -a.badge-warning:hover, a.badge-warning:focus { - color: #212529; - background-color: #d39e00; -} - -.badge-danger { - color: #fff; - background-color: #dc3545; -} - -a.badge-danger:hover, a.badge-danger:focus { - color: #fff; - background-color: #bd2130; -} - -.badge-light { - color: #212529; - background-color: #f8f9fa; -} - -a.badge-light:hover, a.badge-light:focus { - color: #212529; - background-color: #dae0e5; -} - -.badge-dark { - color: #fff; - background-color: #343a40; -} - -a.badge-dark:hover, a.badge-dark:focus { - color: #fff; - background-color: #1d2124; -} - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: 0.3rem; -} - -@media (min-width: 576px) { - .jumbotron { - padding: 4rem 2rem; - } -} - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0; -} - -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; -} - -.alert-heading { - color: inherit; -} - -.alert-link { - font-weight: 700; -} - -.alert-dismissible { - padding-right: 4rem; -} - -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - padding: 0.75rem 1.25rem; - color: inherit; -} - -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff; -} - -.alert-primary hr { - border-top-color: #9fcdff; -} - -.alert-primary .alert-link { - color: #002752; -} - -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db; -} - -.alert-secondary hr { - border-top-color: #c8cbcf; -} - -.alert-secondary .alert-link { - color: #202326; -} - -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb; -} - -.alert-success hr { - border-top-color: #b1dfbb; -} - -.alert-success .alert-link { - color: #0b2e13; -} - -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb; -} - -.alert-info hr { - border-top-color: #abdde5; -} - -.alert-info .alert-link { - color: #062c33; -} - -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba; -} - -.alert-warning hr { - border-top-color: #ffe8a1; -} - -.alert-warning .alert-link { - color: #533f03; -} - -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb; -} - -.alert-danger hr { - border-top-color: #f1b0b7; -} - -.alert-danger .alert-link { - color: #491217; -} - -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe; -} - -.alert-light hr { - border-top-color: #ececf6; -} - -.alert-light .alert-link { - color: #686868; -} - -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; -} - -.alert-dark hr { - border-top-color: #b9bbbe; -} - -.alert-dark .alert-link { - color: #040505; -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} - -.progress { - display: -ms-flexbox; - display: flex; - height: 1rem; - overflow: hidden; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.progress-bar { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-pack: center; - justify-content: center; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #007bff; - transition: width 0.6s ease; -} - -@media screen and (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; - } -} - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; -} - -.progress-bar-animated { - -webkit-animation: progress-bar-stripes 1s linear infinite; - animation: progress-bar-stripes 1s linear infinite; -} - -.media { - display: -ms-flexbox; - display: flex; - -ms-flex-align: start; - align-items: flex-start; -} - -.media-body { - -ms-flex: 1; - flex: 1; -} - -.list-group { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; -} - -.list-group-item-action:hover, .list-group-item-action:focus { - color: #495057; - text-decoration: none; - background-color: #f8f9fa; -} - -.list-group-item-action:active { - color: #212529; - background-color: #e9ecef; -} - -.list-group-item { - position: relative; - display: block; - padding: 0.75rem 1.25rem; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); -} - -.list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.list-group-item:hover, .list-group-item:focus { - z-index: 1; - text-decoration: none; -} - -.list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; -} - -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.list-group-flush .list-group-item { - border-right: 0; - border-left: 0; - border-radius: 0; -} - -.list-group-flush .list-group-item:last-child { - margin-bottom: -1px; -} - -.list-group-flush:first-child .list-group-item:first-child { - border-top: 0; -} - -.list-group-flush:last-child .list-group-item:last-child { - margin-bottom: 0; - border-bottom: 0; -} - -.list-group-item-primary { - color: #004085; - background-color: #b8daff; -} - -.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #004085; - background-color: #9fcdff; -} - -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085; -} - -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db; -} - -.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #383d41; - background-color: #c8cbcf; -} - -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41; -} - -.list-group-item-success { - color: #155724; - background-color: #c3e6cb; -} - -.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #155724; - background-color: #b1dfbb; -} - -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724; -} - -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb; -} - -.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #0c5460; - background-color: #abdde5; -} - -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460; -} - -.list-group-item-warning { - color: #856404; - background-color: #ffeeba; -} - -.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #856404; - background-color: #ffe8a1; -} - -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404; -} - -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb; -} - -.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #721c24; - background-color: #f1b0b7; -} - -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24; -} - -.list-group-item-light { - color: #818182; - background-color: #fdfdfe; -} - -.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #818182; - background-color: #ececf6; -} - -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182; -} - -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca; -} - -.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #1b1e21; - background-color: #b9bbbe; -} - -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21; -} - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5; -} - -.close:hover { - color: #000; - text-decoration: none; -} - -.close:not(:disabled):not(.disabled) { - cursor: pointer; -} - -.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { - opacity: .75; -} - -button.close { - padding: 0; - background-color: transparent; - border: 0; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -a.close.disabled { - pointer-events: none; -} - -.toast { - max-width: 350px; - overflow: hidden; - font-size: 0.875rem; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 0.25rem; - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); - -webkit-backdrop-filter: blur(10px); - backdrop-filter: blur(10px); - opacity: 0; -} - -.toast:not(:last-child) { - margin-bottom: 0.75rem; -} - -.toast.showing { - opacity: 1; -} - -.toast.show { - display: block; - opacity: 1; -} - -.toast.hide { - display: none; -} - -.toast-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: 0.25rem 0.75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); -} - -.toast-body { - padding: 0.75rem; -} - -.modal-open { - overflow: hidden; -} - -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - display: none; - width: 100%; - height: 100%; - overflow: hidden; - outline: 0; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; -} - -.modal.fade .modal-dialog { - transition: -webkit-transform 0.3s ease-out; - transition: transform 0.3s ease-out; - transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; - -webkit-transform: translate(0, -50px); - transform: translate(0, -50px); -} - -@media screen and (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; - } -} - -.modal.show .modal-dialog { - -webkit-transform: none; - transform: none; -} - -.modal-dialog-centered { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - min-height: calc(100% - (0.5rem * 2)); -} - -.modal-dialog-centered::before { - display: block; - height: calc(100vh - (0.5rem * 2)); - content: ""; -} - -.modal-content { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; -} - -.modal-backdrop.fade { - opacity: 0; -} - -.modal-backdrop.show { - opacity: 0.5; -} - -.modal-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #e9ecef; - border-top-left-radius: 0.3rem; - border-top-right-radius: 0.3rem; -} - -.modal-header .close { - padding: 1rem 1rem; - margin: -1rem -1rem -1rem auto; -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5; -} - -.modal-body { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1rem; -} - -.modal-footer { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: end; - justify-content: flex-end; - padding: 1rem; - border-top: 1px solid #e9ecef; - border-bottom-right-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; -} - -.modal-footer > :not(:first-child) { - margin-left: .25rem; -} - -.modal-footer > :not(:last-child) { - margin-right: .25rem; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; - } - .modal-dialog-centered { - min-height: calc(100% - (1.75rem * 2)); - } - .modal-dialog-centered::before { - height: calc(100vh - (1.75rem * 2)); - } - .modal-sm { - max-width: 300px; - } -} - -@media (min-width: 992px) { - .modal-lg, - .modal-xl { - max-width: 800px; - } -} - -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; - } -} - -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */ - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; -} - -.tooltip.show { - opacity: 0.9; -} - -.tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; -} - -.tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { - padding: 0.4rem 0; -} - -.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { - bottom: 0; -} - -.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; -} - -.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { - padding: 0 0.4rem; -} - -.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; -} - -.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; -} - -.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { - padding: 0.4rem 0; -} - -.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { - top: 0; -} - -.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; -} - -.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { - padding: 0 0.4rem; -} - -.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; -} - -.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; -} - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */ - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; -} - -.popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; -} - -.popover .arrow::before, .popover .arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-popover-top, .bs-popover-auto[x-placement^="top"] { - margin-bottom: 0.5rem; -} - -.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { - bottom: calc((0.5rem + 1px) * -1); -} - -.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, -.bs-popover-top .arrow::after, -.bs-popover-auto[x-placement^="top"] .arrow::after { - border-width: 0.5rem 0.5rem 0; -} - -.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { - bottom: 0; - border-top-color: rgba(0, 0, 0, 0.25); -} - - -.bs-popover-top .arrow::after, -.bs-popover-auto[x-placement^="top"] .arrow::after { - bottom: 1px; - border-top-color: #fff; -} - -.bs-popover-right, .bs-popover-auto[x-placement^="right"] { - margin-left: 0.5rem; -} - -.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { - left: calc((0.5rem + 1px) * -1); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} - -.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, -.bs-popover-right .arrow::after, -.bs-popover-auto[x-placement^="right"] .arrow::after { - border-width: 0.5rem 0.5rem 0.5rem 0; -} - -.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { - left: 0; - border-right-color: rgba(0, 0, 0, 0.25); -} - - -.bs-popover-right .arrow::after, -.bs-popover-auto[x-placement^="right"] .arrow::after { - left: 1px; - border-right-color: #fff; -} - -.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { - margin-top: 0.5rem; -} - -.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { - top: calc((0.5rem + 1px) * -1); -} - -.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, -.bs-popover-bottom .arrow::after, -.bs-popover-auto[x-placement^="bottom"] .arrow::after { - border-width: 0 0.5rem 0.5rem 0.5rem; -} - -.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { - top: 0; - border-bottom-color: rgba(0, 0, 0, 0.25); -} - - -.bs-popover-bottom .arrow::after, -.bs-popover-auto[x-placement^="bottom"] .arrow::after { - top: 1px; - border-bottom-color: #fff; -} - -.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7; -} - -.bs-popover-left, .bs-popover-auto[x-placement^="left"] { - margin-right: 0.5rem; -} - -.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { - right: calc((0.5rem + 1px) * -1); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} - -.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, -.bs-popover-left .arrow::after, -.bs-popover-auto[x-placement^="left"] .arrow::after { - border-width: 0.5rem 0 0.5rem 0.5rem; -} - -.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { - right: 0; - border-left-color: rgba(0, 0, 0, 0.25); -} - - -.bs-popover-left .arrow::after, -.bs-popover-auto[x-placement^="left"] .arrow::after { - right: 1px; - border-left-color: #fff; -} - -.popover-header { - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - color: inherit; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); -} - -.popover-header:empty { - display: none; -} - -.popover-body { - padding: 0.5rem 0.75rem; - color: #212529; -} - -.carousel { - position: relative; -} - -.carousel.pointer-event { - -ms-touch-action: pan-y; - touch-action: pan-y; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} - -.carousel-inner::after { - display: block; - clear: both; - content: ""; -} - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - transition: -webkit-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; -} - -@media screen and (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; - } -} - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; -} - -.carousel-item-next:not(.carousel-item-left), -.active.carousel-item-right { - -webkit-transform: translateX(100%); - transform: translateX(100%); -} - -.carousel-item-prev:not(.carousel-item-right), -.active.carousel-item-left { - -webkit-transform: translateX(-100%); - transform: translateX(-100%); -} - -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - -webkit-transform: none; - transform: none; -} - -.carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right { - z-index: 1; - opacity: 1; -} - -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - z-index: 0; - opacity: 0; - transition: 0s 0.6s opacity; -} - -@media screen and (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none; - } -} - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - width: 15%; - color: #fff; - text-align: center; - opacity: 0.5; - transition: opacity 0.15s ease; -} - -@media screen and (prefers-reduced-motion: reduce) { - .carousel-control-prev, - .carousel-control-next { - transition: none; - } -} - -.carousel-control-prev:hover, .carousel-control-prev:focus, -.carousel-control-next:hover, -.carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; -} - -.carousel-control-prev { - left: 0; -} - -.carousel-control-next { - right: 0; -} - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 20px; - height: 20px; - background: transparent no-repeat center center; - background-size: 100% 100%; -} - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); -} - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 15; - display: -ms-flexbox; - display: flex; - -ms-flex-pack: center; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none; -} - -.carousel-indicators li { - box-sizing: content-box; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: .5; - transition: opacity 0.6s ease; -} - -@media screen and (prefers-reduced-motion: reduce) { - .carousel-indicators li { - transition: none; - } -} - -.carousel-indicators .active { - opacity: 1; -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; -} - -@-webkit-keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - -webkit-animation: spinner-border .75s linear infinite; - animation: spinner-border .75s linear infinite; -} - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; -} - -@-webkit-keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 50% { - opacity: 1; - } -} - -@keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 50% { - opacity: 1; - } -} - -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - -webkit-animation: spinner-grow .75s linear infinite; - animation: spinner-grow .75s linear infinite; -} - -.spinner-grow-sm { - width: 1rem; - height: 1rem; -} - -.align-baseline { - vertical-align: baseline !important; -} - -.align-top { - vertical-align: top !important; -} - -.align-middle { - vertical-align: middle !important; -} - -.align-bottom { - vertical-align: bottom !important; -} - -.align-text-bottom { - vertical-align: text-bottom !important; -} - -.align-text-top { - vertical-align: text-top !important; -} - -.bg-primary { - background-color: #007bff !important; -} - -a.bg-primary:hover, a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - background-color: #0062cc !important; -} - -.bg-secondary { - background-color: #6c757d !important; -} - -a.bg-secondary:hover, a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - background-color: #545b62 !important; -} - -.bg-success { - background-color: #28a745 !important; -} - -a.bg-success:hover, a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - background-color: #1e7e34 !important; -} - -.bg-info { - background-color: #17a2b8 !important; -} - -a.bg-info:hover, a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - background-color: #117a8b !important; -} - -.bg-warning { - background-color: #ffc107 !important; -} - -a.bg-warning:hover, a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - background-color: #d39e00 !important; -} - -.bg-danger { - background-color: #dc3545 !important; -} - -a.bg-danger:hover, a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - background-color: #bd2130 !important; -} - -.bg-light { - background-color: #f8f9fa !important; -} - -a.bg-light:hover, a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - background-color: #dae0e5 !important; -} - -.bg-dark { - background-color: #343a40 !important; -} - -a.bg-dark:hover, a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - background-color: #1d2124 !important; -} - -.bg-white { - background-color: #fff !important; -} - -.bg-transparent { - background-color: transparent !important; -} - -.border { - border: 1px solid #dee2e6 !important; -} - -.border-top { - border-top: 1px solid #dee2e6 !important; -} - -.border-right { - border-right: 1px solid #dee2e6 !important; -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; -} - -.border-left { - border-left: 1px solid #dee2e6 !important; -} - -.border-0 { - border: 0 !important; -} - -.border-top-0 { - border-top: 0 !important; -} - -.border-right-0 { - border-right: 0 !important; -} - -.border-bottom-0 { - border-bottom: 0 !important; -} - -.border-left-0 { - border-left: 0 !important; -} - -.border-primary { - border-color: #007bff !important; -} - -.border-secondary { - border-color: #6c757d !important; -} - -.border-success { - border-color: #28a745 !important; -} - -.border-info { - border-color: #17a2b8 !important; -} - -.border-warning { - border-color: #ffc107 !important; -} - -.border-danger { - border-color: #dc3545 !important; -} - -.border-light { - border-color: #f8f9fa !important; -} - -.border-dark { - border-color: #343a40 !important; -} - -.border-white { - border-color: #fff !important; -} - -.rounded { - border-radius: 0.25rem !important; -} - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; -} - -.rounded-right { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; -} - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-left { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-circle { - border-radius: 50% !important; -} - -.rounded-pill { - border-radius: 50rem !important; -} - -.rounded-0 { - border-radius: 0 !important; -} - -.clearfix::after { - display: block; - clear: both; - content: ""; -} - -.d-none { - display: none !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: -ms-flexbox !important; - display: flex !important; -} - -.d-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; -} - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; - } - .d-sm-inline { - display: inline !important; - } - .d-sm-inline-block { - display: inline-block !important; - } - .d-sm-block { - display: block !important; - } - .d-sm-table { - display: table !important; - } - .d-sm-table-row { - display: table-row !important; - } - .d-sm-table-cell { - display: table-cell !important; - } - .d-sm-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-sm-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media (min-width: 768px) { - .d-md-none { - display: none !important; - } - .d-md-inline { - display: inline !important; - } - .d-md-inline-block { - display: inline-block !important; - } - .d-md-block { - display: block !important; - } - .d-md-table { - display: table !important; - } - .d-md-table-row { - display: table-row !important; - } - .d-md-table-cell { - display: table-cell !important; - } - .d-md-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-md-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media (min-width: 992px) { - .d-lg-none { - display: none !important; - } - .d-lg-inline { - display: inline !important; - } - .d-lg-inline-block { - display: inline-block !important; - } - .d-lg-block { - display: block !important; - } - .d-lg-table { - display: table !important; - } - .d-lg-table-row { - display: table-row !important; - } - .d-lg-table-cell { - display: table-cell !important; - } - .d-lg-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-lg-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; - } - .d-xl-inline { - display: inline !important; - } - .d-xl-inline-block { - display: inline-block !important; - } - .d-xl-block { - display: block !important; - } - .d-xl-table { - display: table !important; - } - .d-xl-table-row { - display: table-row !important; - } - .d-xl-table-cell { - display: table-cell !important; - } - .d-xl-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-xl-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media print { - .d-print-none { - display: none !important; - } - .d-print-inline { - display: inline !important; - } - .d-print-inline-block { - display: inline-block !important; - } - .d-print-block { - display: block !important; - } - .d-print-table { - display: table !important; - } - .d-print-table-row { - display: table-row !important; - } - .d-print-table-cell { - display: table-cell !important; - } - .d-print-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-print-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; -} - -.embed-responsive::before { - display: block; - content: ""; -} - -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.embed-responsive-21by9::before { - padding-top: 42.857143%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-3by4::before { - padding-top: 133.333333%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.flex-row { - -ms-flex-direction: row !important; - flex-direction: row !important; -} - -.flex-column { - -ms-flex-direction: column !important; - flex-direction: column !important; -} - -.flex-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; -} - -.flex-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; -} - -.flex-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; -} - -.flex-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; -} - -.flex-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; -} - -.flex-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; -} - -.flex-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; -} - -.flex-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; -} - -.justify-content-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; -} - -.justify-content-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; -} - -.justify-content-center { - -ms-flex-pack: center !important; - justify-content: center !important; -} - -.justify-content-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; -} - -.justify-content-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; -} - -.align-items-start { - -ms-flex-align: start !important; - align-items: flex-start !important; -} - -.align-items-end { - -ms-flex-align: end !important; - align-items: flex-end !important; -} - -.align-items-center { - -ms-flex-align: center !important; - align-items: center !important; -} - -.align-items-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; -} - -.align-items-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; -} - -.align-content-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; -} - -.align-content-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; -} - -.align-content-center { - -ms-flex-line-pack: center !important; - align-content: center !important; -} - -.align-content-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; -} - -.align-content-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; -} - -.align-content-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; -} - -.align-self-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; -} - -.align-self-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; -} - -.align-self-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; -} - -.align-self-center { - -ms-flex-item-align: center !important; - align-self: center !important; -} - -.align-self-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; -} - -.align-self-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; -} - -@media (min-width: 576px) { - .flex-sm-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-sm-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-sm-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-sm-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-sm-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-sm-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-sm-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-sm-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-sm-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-sm-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-sm-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-sm-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-sm-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-sm-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-sm-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-sm-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-sm-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-sm-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-sm-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-sm-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-sm-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-sm-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-sm-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-sm-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-sm-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-sm-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-sm-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-sm-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-sm-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-sm-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-sm-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-sm-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-sm-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-sm-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -@media (min-width: 768px) { - .flex-md-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-md-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-md-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-md-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-md-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-md-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-md-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-md-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-md-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-md-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-md-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-md-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-md-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-md-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-md-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-md-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-md-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-md-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-md-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-md-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-md-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-md-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-md-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-md-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-md-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-md-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-md-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-md-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-md-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-md-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-md-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-md-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-md-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-md-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -@media (min-width: 992px) { - .flex-lg-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-lg-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-lg-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-lg-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-lg-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-lg-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-lg-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-lg-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-lg-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-lg-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-lg-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-lg-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-lg-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-lg-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-lg-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-lg-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-lg-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-lg-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-lg-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-lg-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-lg-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-lg-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-lg-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-lg-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-lg-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-lg-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-lg-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-lg-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-lg-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-lg-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-lg-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-lg-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-lg-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-lg-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -@media (min-width: 1200px) { - .flex-xl-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-xl-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-xl-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-xl-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-xl-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-xl-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-xl-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-xl-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-xl-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-xl-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-xl-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-xl-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-xl-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-xl-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-xl-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-xl-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-xl-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-xl-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-xl-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-xl-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-xl-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-xl-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-xl-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-xl-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-xl-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-xl-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-xl-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-xl-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-xl-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-xl-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-xl-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-xl-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-xl-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-xl-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -.float-left { - float: left !important; -} - -.float-right { - float: right !important; -} - -.float-none { - float: none !important; -} - -@media (min-width: 576px) { - .float-sm-left { - float: left !important; - } - .float-sm-right { - float: right !important; - } - .float-sm-none { - float: none !important; - } -} - -@media (min-width: 768px) { - .float-md-left { - float: left !important; - } - .float-md-right { - float: right !important; - } - .float-md-none { - float: none !important; - } -} - -@media (min-width: 992px) { - .float-lg-left { - float: left !important; - } - .float-lg-right { - float: right !important; - } - .float-lg-none { - float: none !important; - } -} - -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; - } - .float-xl-right { - float: right !important; - } - .float-xl-none { - float: none !important; - } -} - -.overflow-auto { - overflow: auto !important; -} - -.overflow-hidden { - overflow: hidden !important; -} - -.position-static { - position: static !important; -} - -.position-relative { - position: relative !important; -} - -.position-absolute { - position: absolute !important; -} - -.position-fixed { - position: fixed !important; -} - -.position-sticky { - position: -webkit-sticky !important; - position: sticky !important; -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; -} - -@supports ((position: -webkit-sticky) or (position: sticky)) { - .sticky-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0; -} - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; -} - -.shadow-sm { - box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; -} - -.shadow { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; -} - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; -} - -.shadow-none { - box-shadow: none !important; -} - -.w-25 { - width: 25% !important; -} - -.w-50 { - width: 50% !important; -} - -.w-75 { - width: 75% !important; -} - -.w-100 { - width: 100% !important; -} - -.w-auto { - width: auto !important; -} - -.h-25 { - height: 25% !important; -} - -.h-50 { - height: 50% !important; -} - -.h-75 { - height: 75% !important; -} - -.h-100 { - height: 100% !important; -} - -.h-auto { - height: auto !important; -} - -.mw-100 { - max-width: 100% !important; -} - -.mh-100 { - max-height: 100% !important; -} - -.min-vw-100 { - min-width: 100vw !important; -} - -.min-vh-100 { - min-height: 100vh !important; -} - -.vw-100 { - width: 100vw !important; -} - -.vh-100 { - height: 100vh !important; -} - -.m-0 { - margin: 0 !important; -} - -.mt-0, -.my-0 { - margin-top: 0 !important; -} - -.mr-0, -.mx-0 { - margin-right: 0 !important; -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important; -} - -.ml-0, -.mx-0 { - margin-left: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; -} - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; -} - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; -} - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; -} - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.mt-3, -.my-3 { - margin-top: 1rem !important; -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important; -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.mt-5, -.my-5 { - margin-top: 3rem !important; -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important; -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0, -.py-0 { - padding-top: 0 !important; -} - -.pr-0, -.px-0 { - padding-right: 0 !important; -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important; -} - -.pl-0, -.px-0 { - padding-left: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; -} - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; -} - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; -} - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; -} - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.pt-3, -.py-3 { - padding-top: 1rem !important; -} - -.pr-3, -.px-3 { - padding-right: 1rem !important; -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; -} - -.pl-3, -.px-3 { - padding-left: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.pt-5, -.py-5 { - padding-top: 3rem !important; -} - -.pr-5, -.px-5 { - padding-right: 3rem !important; -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; -} - -.pl-5, -.px-5 { - padding-left: 3rem !important; -} - -.m-n1 { - margin: -0.25rem !important; -} - -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; -} - -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; -} - -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; -} - -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; -} - -.m-n2 { - margin: -0.5rem !important; -} - -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; -} - -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; -} - -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; -} - -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; -} - -.m-n3 { - margin: -1rem !important; -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important; -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; -} - -.m-n4 { - margin: -1.5rem !important; -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; -} - -.m-n5 { - margin: -3rem !important; -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important; -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-auto, -.my-auto { - margin-top: auto !important; -} - -.mr-auto, -.mx-auto { - margin-right: auto !important; -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important; -} - -.ml-auto, -.mx-auto { - margin-left: auto !important; -} - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; - } - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; - } - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; - } - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; - } - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; - } - .m-sm-1 { - margin: 0.25rem !important; - } - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; - } - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; - } - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; - } - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; - } - .m-sm-2 { - margin: 0.5rem !important; - } - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; - } - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; - } - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; - } - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; - } - .m-sm-3 { - margin: 1rem !important; - } - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; - } - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; - } - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; - } - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; - } - .m-sm-4 { - margin: 1.5rem !important; - } - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; - } - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; - } - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; - } - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; - } - .m-sm-5 { - margin: 3rem !important; - } - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; - } - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; - } - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; - } - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; - } - .p-sm-0 { - padding: 0 !important; - } - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; - } - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; - } - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; - } - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; - } - .p-sm-1 { - padding: 0.25rem !important; - } - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; - } - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; - } - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; - } - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; - } - .p-sm-2 { - padding: 0.5rem !important; - } - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; - } - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; - } - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; - } - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; - } - .p-sm-3 { - padding: 1rem !important; - } - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; - } - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; - } - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; - } - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; - } - .p-sm-4 { - padding: 1.5rem !important; - } - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; - } - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; - } - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; - } - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; - } - .p-sm-5 { - padding: 3rem !important; - } - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; - } - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; - } - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; - } - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; - } - .m-sm-n1 { - margin: -0.25rem !important; - } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; - } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; - } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; - } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; - } - .m-sm-n2 { - margin: -0.5rem !important; - } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; - } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; - } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; - } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; - } - .m-sm-n3 { - margin: -1rem !important; - } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; - } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; - } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; - } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; - } - .m-sm-n4 { - margin: -1.5rem !important; - } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; - } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; - } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; - } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; - } - .m-sm-n5 { - margin: -3rem !important; - } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; - } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; - } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; - } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; - } - .m-sm-auto { - margin: auto !important; - } - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; - } - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; - } - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; - } - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; - } -} - -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; - } - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; - } - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; - } - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; - } - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; - } - .m-md-1 { - margin: 0.25rem !important; - } - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; - } - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; - } - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; - } - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; - } - .m-md-2 { - margin: 0.5rem !important; - } - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; - } - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; - } - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; - } - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; - } - .m-md-3 { - margin: 1rem !important; - } - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; - } - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; - } - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; - } - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; - } - .m-md-4 { - margin: 1.5rem !important; - } - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; - } - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; - } - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; - } - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; - } - .m-md-5 { - margin: 3rem !important; - } - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; - } - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; - } - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; - } - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; - } - .p-md-0 { - padding: 0 !important; - } - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; - } - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; - } - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; - } - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; - } - .p-md-1 { - padding: 0.25rem !important; - } - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; - } - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; - } - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; - } - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; - } - .p-md-2 { - padding: 0.5rem !important; - } - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; - } - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; - } - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; - } - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; - } - .p-md-3 { - padding: 1rem !important; - } - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; - } - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; - } - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; - } - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; - } - .p-md-4 { - padding: 1.5rem !important; - } - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; - } - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; - } - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; - } - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; - } - .p-md-5 { - padding: 3rem !important; - } - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; - } - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; - } - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; - } - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; - } - .m-md-n1 { - margin: -0.25rem !important; - } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; - } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; - } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; - } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; - } - .m-md-n2 { - margin: -0.5rem !important; - } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; - } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; - } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; - } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; - } - .m-md-n3 { - margin: -1rem !important; - } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; - } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; - } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; - } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; - } - .m-md-n4 { - margin: -1.5rem !important; - } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; - } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; - } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; - } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; - } - .m-md-n5 { - margin: -3rem !important; - } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; - } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; - } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; - } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; - } - .m-md-auto { - margin: auto !important; - } - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; - } - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; - } - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; - } - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; - } -} - -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; - } - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; - } - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; - } - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; - } - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; - } - .m-lg-1 { - margin: 0.25rem !important; - } - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; - } - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; - } - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; - } - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; - } - .m-lg-2 { - margin: 0.5rem !important; - } - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; - } - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; - } - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; - } - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; - } - .m-lg-3 { - margin: 1rem !important; - } - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; - } - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; - } - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; - } - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; - } - .m-lg-4 { - margin: 1.5rem !important; - } - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; - } - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; - } - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; - } - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; - } - .m-lg-5 { - margin: 3rem !important; - } - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; - } - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; - } - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; - } - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; - } - .p-lg-0 { - padding: 0 !important; - } - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; - } - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; - } - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; - } - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; - } - .p-lg-1 { - padding: 0.25rem !important; - } - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; - } - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; - } - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; - } - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; - } - .p-lg-2 { - padding: 0.5rem !important; - } - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; - } - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; - } - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; - } - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; - } - .p-lg-3 { - padding: 1rem !important; - } - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; - } - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; - } - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; - } - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; - } - .p-lg-4 { - padding: 1.5rem !important; - } - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; - } - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; - } - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; - } - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; - } - .p-lg-5 { - padding: 3rem !important; - } - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; - } - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; - } - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; - } - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; - } - .m-lg-n1 { - margin: -0.25rem !important; - } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; - } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; - } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; - } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; - } - .m-lg-n2 { - margin: -0.5rem !important; - } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; - } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; - } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; - } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; - } - .m-lg-n3 { - margin: -1rem !important; - } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; - } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; - } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; - } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; - } - .m-lg-n4 { - margin: -1.5rem !important; - } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; - } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; - } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; - } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; - } - .m-lg-n5 { - margin: -3rem !important; - } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; - } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; - } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; - } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; - } - .m-lg-auto { - margin: auto !important; - } - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; - } - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; - } - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; - } - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; - } -} - -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; - } - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; - } - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; - } - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; - } - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; - } - .m-xl-1 { - margin: 0.25rem !important; - } - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; - } - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; - } - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; - } - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; - } - .m-xl-2 { - margin: 0.5rem !important; - } - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; - } - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; - } - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; - } - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; - } - .m-xl-3 { - margin: 1rem !important; - } - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; - } - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; - } - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; - } - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; - } - .m-xl-4 { - margin: 1.5rem !important; - } - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; - } - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; - } - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; - } - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; - } - .m-xl-5 { - margin: 3rem !important; - } - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; - } - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; - } - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; - } - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; - } - .p-xl-0 { - padding: 0 !important; - } - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; - } - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; - } - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; - } - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; - } - .p-xl-1 { - padding: 0.25rem !important; - } - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; - } - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; - } - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; - } - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; - } - .p-xl-2 { - padding: 0.5rem !important; - } - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; - } - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; - } - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; - } - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; - } - .p-xl-3 { - padding: 1rem !important; - } - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; - } - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; - } - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; - } - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; - } - .p-xl-4 { - padding: 1.5rem !important; - } - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; - } - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; - } - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; - } - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; - } - .p-xl-5 { - padding: 3rem !important; - } - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; - } - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; - } - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; - } - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; - } - .m-xl-n1 { - margin: -0.25rem !important; - } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; - } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; - } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; - } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; - } - .m-xl-n2 { - margin: -0.5rem !important; - } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; - } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; - } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; - } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; - } - .m-xl-n3 { - margin: -1rem !important; - } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; - } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; - } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; - } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; - } - .m-xl-n4 { - margin: -1.5rem !important; - } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; - } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; - } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; - } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; - } - .m-xl-n5 { - margin: -3rem !important; - } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; - } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; - } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; - } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; - } - .m-xl-auto { - margin: auto !important; - } - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; - } - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; - } - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; - } - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; - } -} - -.text-monospace { - /* font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; */ -} - -.text-justify { - text-align: justify !important; -} - -.text-wrap { - white-space: normal !important; -} - -.text-nowrap { - white-space: nowrap !important; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.text-left { - text-align: left !important; -} - -.text-right { - text-align: right !important; -} - -.text-center { - text-align: center !important; -} - -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; - } - .text-sm-right { - text-align: right !important; - } - .text-sm-center { - text-align: center !important; - } -} - -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; - } - .text-md-right { - text-align: right !important; - } - .text-md-center { - text-align: center !important; - } -} - -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; - } - .text-lg-right { - text-align: right !important; - } - .text-lg-center { - text-align: center !important; - } -} - -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; - } - .text-xl-right { - text-align: right !important; - } - .text-xl-center { - text-align: center !important; - } -} - -.text-lowercase { - text-transform: lowercase !important; -} - -.text-uppercase { - text-transform: uppercase !important; -} - -.text-capitalize { - text-transform: capitalize !important; -} - -.font-weight-light { - font-weight: 300 !important; -} - -.font-weight-lighter { - font-weight: lighter !important; -} - -.font-weight-normal { - font-weight: 400 !important; -} - -.font-weight-bold { - font-weight: 700 !important; -} - -.font-weight-bolder { - font-weight: bolder !important; -} - -.font-italic { - font-style: italic !important; -} - -.text-white { - color: #fff !important; -} - -.text-primary { - color: #007bff !important; -} - -a.text-primary:hover, a.text-primary:focus { - color: #0056b3 !important; -} - -.text-secondary { - color: #6c757d !important; -} - -a.text-secondary:hover, a.text-secondary:focus { - color: #494f54 !important; -} - -.text-success { - color: #28a745 !important; -} - -a.text-success:hover, a.text-success:focus { - color: #19692c !important; -} - -.text-info { - color: #17a2b8 !important; -} - -a.text-info:hover, a.text-info:focus { - color: #0f6674 !important; -} - -.text-warning { - color: #ffc107 !important; -} - -a.text-warning:hover, a.text-warning:focus { - color: #ba8b00 !important; -} - -.text-danger { - color: #dc3545 !important; -} - -a.text-danger:hover, a.text-danger:focus { - color: #a71d2a !important; -} - -.text-light { - color: #f8f9fa !important; -} - -a.text-light:hover, a.text-light:focus { - color: #cbd3da !important; -} - -.text-dark { - color: #343a40 !important; -} - -a.text-dark:hover, a.text-dark:focus { - color: #121416 !important; -} - -.text-body { - color: #212529 !important; -} - -.text-muted { - color: #6c757d !important; -} - -.text-black-50 { - color: rgba(0, 0, 0, 0.5) !important; -} - -.text-white-50 { - color: rgba(255, 255, 255, 0.5) !important; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.text-decoration-none { - text-decoration: none !important; -} - -.text-reset { - color: inherit !important; -} - -.visible { - visibility: visible !important; -} - -.invisible { - visibility: hidden !important; -} - -@media print { - *, - *::before, - *::after { - text-shadow: none !important; - box-shadow: none !important; - } - a:not(.btn) { - text-decoration: underline; - } - abbr[title]::after { - content: " (" attr(title) ")"; - } - pre { - white-space: pre-wrap !important; - } - pre, - blockquote { - border: 1px solid #adb5bd; - page-break-inside: avoid; - } - thead { - display: table-header-group; - } - tr, - img { - page-break-inside: avoid; - } - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - h2, - h3 { - page-break-after: avoid; - } - @page { - size: a3; - } - body { - min-width: 992px !important; - } - .container { - min-width: 992px !important; - } - .navbar { - display: none; - border-bottom: 3px solid black; - } - .badge { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - .table-bordered th, - .table-bordered td { - border: 1px solid #dee2e6 !important; - } - .table-dark { - color: inherit; - } - .table-dark th, - .table-dark td, - .table-dark thead th, - .table-dark tbody + tbody { - border-color: #dee2e6; - } - .table .thead-dark th { - color: inherit; - border-color: #dee2e6; - } -} diff --git a/_sass/_lanyon2.scss b/_sass/_lanyon2.scss deleted file mode 100644 index 4376f19f..00000000 --- a/_sass/_lanyon2.scss +++ /dev/null @@ -1,1016 +0,0 @@ -/* - * ___ - * /\_ \ - * \//\ \ __ ___ __ __ ___ ___ - * \ \ \ /'__`\ /' _ `\/\ \/\ \ / __`\ /' _ `\ - * \_\ \_/\ \_\.\_/\ \/\ \ \ \_\ \/\ \_\ \/\ \/\ \ - * /\____\ \__/.\_\ \_\ \_\/`____ \ \____/\ \_\ \_\ - * \/____/\/__/\/_/\/_/\/_/`/___/> \/___/ \/_/\/_/ - * /\___/ - * \/__/ - * - * Designed, built, and released under MIT license by @mdo. Learn more at - * https://github.com/poole/lanyon. - */ - - -/* - * Contents - * - * Global resets - * Masthead - * Sidebar - * Slide effect - * Posts and pages - * Pagination - * Reverse layout - * Themes - */ - - -/* - * Global resets - * - * Update the foundational and global aspects of the page. - */ - -/* Prevent scroll on narrow devices */ -html, -body { - overflow-x: hidden; - color: #444; -} - -html { - font-family: 'Montserrat', sans-serif; -} - -h1 { - font-family: 'Montserrat', sans-serif; - font-weight: 300; - color: #313131; - letter-spacing: -2px; -} - -h2, h3, h4, h5, h6 { - font-family: 'Raleway', sans-serif; - font-weight: 100; - color: #313131; - letter-spacing: -1.5px; - margin-top: -10px; - margin-bottom: 32px; -} - -a:hover { - text-decoration: none !important; - color: #0e6e90 !important; -} - -#nav-items a::after { - content: ''; - display: block; - width: 0; - height: 2px; - background: #0e6e90; - transition: width .3s; -} - -#nav-items a:hover::after { - width: 100%; - /* line-height: .85; */ -} - -#home-body { - // z-index: -1; -} - -#home-body h2 { - font-family: 'Montserrat', sans-serif; - margin-top: 30px; - font-weight: 300; - color: #313131; - letter-spacing: -1px; -} - -#home-body .bottom-left { - background-color: #fff0; -} - -p { - font-family: 'Raleway', sans-serif; - font-weight: 100; - font-size: 16px; -} - -#home-research-list li { - font-family: 'Raleway', sans-serif; - font-weight: 100; - font-size: 16px; - margin-bottom: 10px; -} - -li { - font-family: 'Raleway', sans-serif; - font-weight: 100; - font-size: 16px; -} - -table { - font-family: 'Raleway', sans-serif; - font-size: 16px; -} - -b { - font-weight: 500; -} - - -.omr-ocr-page { - list-style-type: none; -} - - -/* - * Wrapper - * - * The wrapper is used to position site content when the sidebar is toggled. We - * use an outter wrap to position the sidebar without interferring with the - * regular page content. - */ - -.wrap { - position: relative; - width: 100%; -} - -.content { - padding-top: 95px; -} - - -/* - * Container - * - * Center the page content. - */ - - - -/* - * Masthead - * - * Super small header above the content for site name and short description. - */ - -.masthead { - padding-top: 1rem; - padding-bottom: 1rem; - margin-bottom: 3rem; - border-bottom: 1px solid #eee; - position: fixed; - width: 100%; - background-color: #ffffff; - box-shadow: 1px 1px 10px #a8a6a6; -} -.masthead-title { - margin-top: 0; - margin-bottom: 0; - color: #505050; -} -.masthead-title a { - color: #505050; -} -/* .masthead-title small { - font-size: 75%; - font-weight: 400; - color: #c0c0c0; - letter-spacing: 0; -} */ - -.masthead-container { - display: flex; - padding: 0 6%; -} - -.nav-wrap { - margin: auto 0 auto auto; -} - -@media (max-width: 48em) { - .masthead-title { - text-align: center; - } - /* .masthead-title small { - display: none; - } */ -} - -/* - * Posts and pages - * - * Each post is wrapped in `.post` and is used on default and post layouts. Each - * page is wrapped in `.page` and is only used on the page layout. - */ - -.page, -.post { - /* margin-bottom: 4em; */ -} - -/* Blog post or page title */ -.page-title, -.post-title, -.post-title a { - color: #303030; -} -.page-title, -.post-title { - margin-top: 0; - text-align: left; -} - -.home-title { - margin-top: 0; -} - -/* Meta data line below post title */ -.post-date { - display: block; - margin-top: -.5rem; - margin-bottom: 1rem; - color: #9a9a9a; -} - -/* Related posts */ -.related { - padding-top: 2rem; - padding-bottom: 2rem; - border-top: 1px solid #eee; -} -.related-posts { - padding-left: 0; - list-style: none; -} -.related-posts h3 { - margin-top: 0; -} -.related-posts li small { - font-size: 75%; - color: #999; -} -.related-posts li a:hover { - color: #268bd2; - text-decoration: none; -} -.related-posts li a:hover small { - color: inherit; -} - - -/* - * Pagination - * - * Super lightweight (HTML-wise) blog pagination. `span`s are provide for when - * there are no more previous or next posts to show. - */ - -.pagination { - overflow: hidden; /* clearfix */ - margin-left: -1rem; - margin-right: -1rem; - font-family: 'Montserrat', sans-serif; - color: #ccc; - text-align: center; -} - -/* Pagination items can be `span`s or `a`s */ -.pagination-item { - display: block; - padding: 1rem; - border: 1px solid #eee; -} -.pagination-item:first-child { - margin-bottom: -1px; -} - -/* Only provide a hover state for linked pagination items */ -a.pagination-item:hover { - background-color: #f5f5f5; -} - -@media (min-width: 30em) { - .pagination { - margin: 3rem 0; - } - .pagination-item { - float: left; - width: 50%; - } - .pagination-item:first-child { - margin-bottom: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - } - .pagination-item:last-child { - margin-left: -1px; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } -} - -/* RESPONSIVE NAVBAR */ - -/* Add a black background color to the top navigation */ -.topnav { - overflow: hidden; - box-sizing: border-box; - - /* width: 45%; */ - /* display: inline-flex; */ -} - -#nav-items .active a { - color: #0e6e90; - border-bottom: 2px solid currentColor; -} - -/* Style the links inside the navigation bar */ -#nav-items a { -/* float: left; */ - display: block; -/* - color: black; - font-family: 'Raleway', sans-serif; - text-align: center; */ - padding: 0 16px; - /* font-size: 14px; */ - border-top: 2px solid transparent; - border-bottom: 2px solid transparent; - color: #1bb3e9; -} - - -/* Add an active class to highlight the current page */ - - -/* Hide the link that should open and close the topnav on small screens */ -.topnav .icon { - display: none; -} - - - -/* - * Themes - * - * Apply custom color schemes by adding the appropriate class to the `body`. - * Based on colors from Base16: http://chriskempson.github.io/base16/#default. - */ - -/* Red */ -.theme-base-08 .sidebar, -.theme-base-08 .sidebar-toggle:active, -.theme-base-08 #sidebar-checkbox:checked ~ .sidebar-toggle { - background-color: #ac4142; -} -.theme-basecointa-08 .container a, -.theme-base-08 .sidebar-toggle, -.theme-base-08 .related-posts li a:hover { - color: #ac4142; -} - -/* Orange */ -.theme-base-09 .sidebar, -.theme-base-09 .sidebar-toggle:active, -.theme-base-09 #sidebar-checkbox:checked ~ .sidebar-toggle { - background-color: #d28445; -} -.theme-base-09 .container a, -.theme-base-09 .sidebar-toggle, -.theme-base-09 .related-posts li a:hover { - color: #d28445; -} - -/* Yellow */ -.theme-base-0a .sidebar, -.theme-base-0a .sidebar-toggle:active, -.theme-base-0a #sidebar-checkbox:checked ~ .sidebar-toggle { - background-color: #f4bf75; -} -.theme-base-0a .container a, -.theme-base-0a .sidebar-toggle, -.theme-base-0a .related-posts li a:hover { - color: #f4bf75; -} - -/* Green */ -.theme-base-0b .sidebar, -.theme-base-0b .sidebar-toggle:active, -.theme-base-0b #sidebar-checkbox:checked ~ .sidebar-toggle { - background-color: #90a959; -} -.theme-base-0b .container a, -.theme-base-0b .sidebar-toggle, -.theme-base-0b .related-posts li a:hover { - color: #90a959; -} - -/* Cyan */ -.theme-base-0c .sidebar, -.theme-base-0c .sidebar-toggle:active, -.theme-base-0c #sidebar-checkbox:checked ~ .sidebar-toggle { - background-color: #75b5aa; -} -.theme-base-0c .container a, -.theme-base-0c .sidebar-toggle, -.theme-base-0c .related-posts li a:hover { - color: #75b5aa; -} - -/* Blue */ -.theme-base-0d .sidebar, -.theme-base-0d .sidebar-toggle:active, -.theme-base-0d #sidebar-checkbox:checked ~ .sidebar-toggle { - background-color: #6a9fb5; -} -.theme-base-0d .container a, -.theme-base-0d .sidebar-toggle, -.theme-base-0d .related-posts li a:hover { - color: #6a9fb5; -} - -/* Magenta */ -.theme-base-0e .sidebar, -.theme-base-0e .sidebar-toggle:active, -.theme-base-0e #sidebar-checkbox:checked ~ .sidebar-toggle { - background-color: #aa759f; -} -.theme-base-0e .container a, -.theme-base-0e .sidebar-toggle, -.theme-base-0e .related-posts li a:hover { - color: #aa759f; -} - -/* Brown */ -.theme-base-0f .sidebar, -.theme-base-0f .sidebar-toggle:active, -.theme-base-0f #sidebar-checkbox:checked ~ .sidebar-toggle { - background-color: #8f5536; -} -.theme-base-0f .container a, -.theme-base-0f .sidebar-toggle, -.theme-base-0f .related-posts li a:hover { - color: #8f5536; -} - -/* Savage Custom - McGill Red */ - -.theme-base-mr .sidebar, -.theme-base-mr .sidebar-toggle:active, -.theme-base-mr #sidebar-checkbox:checked ~ .sidebar-toggle { - background-color: #ed1b2f; -} -.theme-base-mr .container a, -.theme-base-mr .sidebar-toggle, -.theme-base-mr .related-posts li a:hover { - color: #ed1b2f; -} - -/* Savage Custom - Original DDMAL Blue */ - -.theme-base-db .sidebar, -.theme-base-db .sidebar-toggle:active, -.theme-base-db #sidebar-checkbox:checked ~ .sidebar-toggle { - background-color: #1bb3e9; -} -.theme-base-db .container a, -.theme-base-db .masthead-container a, -.theme-base-db .sidebar-toggle, -.theme-base-db .related-posts li a:hover { - color: #1bb3e9; -} - - -/* Image container */ - -.pic-container { - position: relative; - color: white; - z-index: -1; - display: table; - margin: auto; -} - -.center-img { - display: block; - margin-left: auto; - margin-right: auto; -} - -.bottom-left { - position: absolute; - bottom: 12px; - right: 12px; - background-color: #1bb3e9bd; - padding: 5px 8px; - border-radius: 5px; -} - -/* Added Savage */ - -.body-content { - z-index: -1; -} - -hr { - z-index: -1; -} - -.ulist-html { - font-family: "Raleway", Helvetica, Arial, sans-serif; -} - -.top-nav-space { - padding-top: 72.05px; -} - -.wrap { - min-height: calc(100vh - 109px); -} - -#sticky { - width: 100%; - height: 89px; - background-color: #c7cfdb; - /* margin-top: -89px; */ -} - -.footer-content { - color: white; - text-align: center; -} - -.mcgill-img-footer { - width: calc(936px / 2.5); - height: calc(134px / 2.5); - margin-left: 0; -} - -.ddmal-img-footer { - margin: auto 0 auto auto; -} - -.footer-img-wrap { - padding-top: calc((89px - 134px / 2.5)/2); - padding-left: 4%; - padding-right: 4%; - padding-bottom: 0; - margin-top: -10px; - margin-bottom: 0; - display: flex; -} - - -img { - // margin-left: auto; - // margin-right: auto; - // display: block; - margin-bottom: 0; - // max-height: 400px; -} - -/* #home-body img { - max-height: 400px; -} */ - -.post-container { - margin: 15px 0; - /* border: 2px solid black; */ - /* border-radius: 5px; */ - -} - -.post-title { - display: flex; - padding: 8px; - justify-content: space-between; -} - -.post-excerpt { - margin: auto; - padding: 15px; -} - -.subtitle { - margin-bottom: 20px; -} - - - -/* Savage responsive params */ - -/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */ -@media screen and (max-width: 850px) { - .topnav .btn {display: none;} - .topnav a.icon { - float: right; - display: block; - } -} - -/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */ -@media screen and (max-width: 850px) { - - #nav-items a { - width: 185px; - } - - #nav-items a:hover::after { - width: 100px; - /* line-height: .85; */ - } - - .topnav.responsive { - position: relative; - } - .topnav.responsive a.icon { - position: absolute; - right: 0; - top: 0; - } - .topnav.responsive .btn { - float: none; - display: block; - text-align: right; - margin-right: 60px; - margin-bottom: 8px; - padding: auto; - /* margin-top: 8px; */ - text-decoration: none; - letter-spacing: .7px; - } - .topnav.responsive .btn:hover { - border-bottom: 2px solid transparent !important; - } - .active a { - border-top: 2px solid transparent !important; - border-bottom: 2px solid transparent !important; - /* background-color: #0e6e9066; */ - /* border-radius: 4px; */ - color: #0e6e90; - border-left: 3px solid #0e6e90; - } - - .nav-item { - padding: 3.5px 0; - } - - .title-wrap { - margin-top: 2.7px; - } -} - -@media (max-width: 650px) { - .mcgill-img-footer { - width: calc(936px / 4); - height: calc(134px / 4); - } - .footer-img-wrap { - padding-top: calc((89px - 134px / 4)/2); - } -} - -.container { - max-width: 28rem; -} -@media (min-width: 38em) { - .container { - max-width: 32rem; - } - -} -@media (min-width: 896px) { - .container { - max-width: 750px; - } - /* .bottom-left { - right: 25px; - } */ -} -@media (min-width: 1200px) { - .container { - max-width: 1170px; - } - /* .bottom-left { - right: 100px; - } */ -} - -@media (max-width: 420px) { - p, body li, #home-research-list li { - font-size: 14px; - } -} - -@media (min-width: 608px) { - .page-title, .home-title { - margin-top: 20px; - } -} - -@media (max-width: 608px) { - .bottom-left { - bottom: 6px; - right: 6px; - padding: 2px 5px; - } - .wrap { - min-height: calc(100vh - 99px); - } -} - -.logo_header { - display: flex; - align-items: center; -} - -/* .social-links { - margin-left: 60px; -} */ - -.current-focus p:first-child { - margin-left: 10px; - font-size: 24px; - // width: 55%; - margin-bottom: 0; -} - -.current-focus .focus { - font-size: 18px; - margin-left: 15px; -} - -.people-title { - font-weight: normal; - margin-bottom: 25px; -} - -.lab_member { - min-height: 500px; - -} - -.lab_member_subtitles { - font-weight: normal; - /* margin-left: 5px; */ - letter-spacing: -0.3px; - margin-bottom: 15px; -} - -.research-interests { - width: 55%; -} - -.research-interests ul { - list-style: none; - display: inline-flex; - flex-wrap: wrap; - padding-left: 10px; -} - -.research-interests ul li { - margin-bottom: 10px; - margin-right: 10px; - padding: 3px 10px; - border-radius: 4px; -} - -.member_photo_list { - max-width: 80px; - margin-bottom: 0; -} - -.member-list { - list-style: none; - padding-left: 10px; -} - -.member-list li { - border-radius: 4px; - /* padding: 10px 20px; */ - box-shadow: 0 1px 3px rgba(0,0,0,0.08); - display: flex; - align-items: center; - justify-content: space-between; - width: 450px; -} -.member-list li:last-child { - margin-bottom: 50px; -} - -.member-list li a:first-child { - display:block; - padding: 36px 20px; - flex: 1; - font-size: 18px; -} -.member-list li a:nth-child(2) { - padding: 10px 10px 10px 0px; -} - - -.research-interests ul li:nth-child(n+1) { - background-color: #ADBDFF; -} -.research-interests ul li:nth-child(2n) { - background-color: #D8D8F6; -} -.research-interests ul li:nth-child(3n) { - background-color: #FFC0BF; -} -.research-interests ul li:nth-child(4n) { - background-color: #C4E7D4; -} - - - -.lab_member_flex { - margin-bottom: 20px; -} - -.lab_member .img-wrap .profile-photo { - - box-shadow: 0 1px 3px rgba(0,0,0,0.08); -} - -.cv-icon { - /* position: absolute; */ - width: 30px; - /* margin-left: 30px; */ - /* right: -20px; */ - padding-top: 10px; - margin: 0; - margin-left: 30px; -} - - - - - - -.social-links { - position: relative; - display: flex; - flex-direction: column; - margin-top: 20px; -} - -.social__link:first-child { - /* margin-left: 10px; */ -} - -.social__link { - margin-bottom: 5px; -} - -.social-links .social__link { - margin-right: 10px; -} - -.publications ul { - list-style: none; - padding-left: 10px; -} - -.publications ul li { - margin-bottom: 15px; -} - -.member-page { - display: grid; - grid-template-columns: 50% 50%; - grid-template-rows: auto min-content auto; - // grid-row-gap: 20px; - .logo_header { - grid-column: 1 / 3; - } - .lab_member_flex { - grid-row: 2; - grid-column: 1; - } - .img-wrap { - position: relative; - // top: 100px; - // right: 80px; - display: flex; - // max-width: 350px; - grid-row: 2 / 4; - grid-column: 2; - justify-self: center; - margin-bottom: 40px; - max-width: 100%; - .profile-photo { - max-width: 350px; - max-height: 350px; - margin-right: 10px; - } - } - .lab_member_bio { - // width: 55%; - // min-height: 360px; - text-align: justify; - grid-row: 3; - grid-column: 1; - } - .flex-wrap { - display: flex; - grid-row: 4; - grid-column: 1 / 3; - - } - @media (max-width: 1200px) { - .flex-wrap { - .research-interests { - width: auto; - } - } - .img-wrap { - justify-self: end; - } - } - @media (max-width: 992px) { - grid-template-columns: 60% 40%; - grid-template-rows: auto; - grid-column-gap: 20px; - .img-wrap { - .profile-photo { - max-width: 250px; - max-height: 250px; - margin-right: 10px; - } - } - } - @media (max-width: 776px) { - grid-template-columns: 100%; - grid-template-rows: auto; - grid-column-gap: 0; - - .img-wrap { - grid-row: 3; - grid-column: 1; - max-width: 70%; - flex-direction: column; - align-items: center; - justify-self: center; - margin-bottom: 20px; - .profile-photo { - max-width: 350px; - max-height: 350px; - margin-right: 0; - } - .social-links { - flex-direction: row; - } - } - .lab_member_bio { - // width: 55%; - // min-height: 360px; - text-align: justify; - grid-row: 4; - grid-column: 1; - } - .flex-wrap { - display: flex; - grid-row: 5; - grid-column: 1; - } - } - @media (max-width: 608px) { - .logo_header { - align-items: baseline; - } - .img-wrap { - .profile-photo { - // width: 80%; - } - } - } - @media (max-width: 400px) { - .logo_header { - align-items: baseline; - } - .img-wrap { - .profile-photo { - max-width: 250px; - max-height: 250px; - } - } - } - // grid-template-rows: auto; -} - -@media (max-width: 776px) { - .member-list li { - width: auto; - } -} diff --git a/_sass/_poole.scss b/_sass/_poole.scss deleted file mode 100644 index d9ca9550..00000000 --- a/_sass/_poole.scss +++ /dev/null @@ -1,430 +0,0 @@ -/* - * ___ - * /\_ \ - * _____ ___ ___\//\ \ __ - * /\ '__`\ / __`\ / __`\\ \ \ /'__`\ - * \ \ \_\ \/\ \_\ \/\ \_\ \\_\ \_/\ __/ - * \ \ ,__/\ \____/\ \____//\____\ \____\ - * \ \ \/ \/___/ \/___/ \/____/\/____/ - * \ \_\ - * \/_/ - * - * Designed, built, and released under MIT license by @mdo. Learn more at - * https://github.com/poole/poole. - */ - - -/* - * Contents - * - * Body resets - * Custom type - * Messages - * Container - * Masthead - * Posts and pages - * Pagination - * Reverse layout - * Themes - */ - - -/* - * Body resets - * - * Update the foundational and global aspects of the page. - */ - -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -html, -body { - margin: 0; - padding: 0; -} - -html { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 16px; - line-height: 1.5; -} -@media (min-width: 38em) { - html { - font-size: 20px; - } -} - -body { - color: #515151; - background-color: #fff; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} - -/* No `:visited` state is required by default (browsers will use `a`) */ -a { - color: #268bd2; - text-decoration: none; -} -a strong { - color: inherit; -} -/* `:focus` is linked to `:hover` for basic accessibility */ -a:hover, -a:focus { - text-decoration: underline; -} - -/* Headings */ -h1, h2, h3, h4, h5, h6 { - margin-bottom: .5rem; - font-weight: bold; - line-height: 1.25; - color: #313131; - text-rendering: optimizeLegibility; -} -h1 { - font-size: 2rem; -} -h2 { - margin-top: 1rem; - font-size: 1.5rem; -} -h3 { - margin-top: 1.5rem; - font-size: 1.25rem; -} -h4, h5, h6 { - margin-top: 1rem; - font-size: 1rem; -} - -/* Body text */ -p { - margin-top: 0; - margin-bottom: 1rem; -} - -strong { - color: #303030; -} - - -/* Lists */ -ul, ol, dl { - margin-top: 0; - margin-bottom: 1rem; -} - -dt { - font-weight: bold; -} -dd { - margin-bottom: .5rem; -} - -/* Misc */ -hr { - position: relative; - margin: 1.5rem 0; - border: 0; - border-top: 1px solid #eee; - border-bottom: 1px solid #fff; -} - -abbr { - font-size: 85%; - font-weight: bold; - color: #555; - text-transform: uppercase; -} -abbr[title] { - cursor: help; - border-bottom: 1px dotted #e5e5e5; -} - -/* Code */ -code, -pre { - font-family: Menlo, Monaco, "Courier New", monospace; -} -code { - padding: .25em .5em; - font-size: 85%; - color: #bf616a; - background-color: #f9f9f9; - border-radius: 3px; -} -pre { - display: block; - margin-top: 0; - margin-bottom: 1rem; - padding: 1rem; - font-size: .8rem; - line-height: 1.4; - white-space: pre; - white-space: pre-wrap; - word-break: break-all; - word-wrap: break-word; - background-color: #f9f9f9; -} -pre code { - padding: 0; - font-size: 100%; - color: inherit; - background-color: transparent; -} - -/* Pygments via Jekyll */ -.highlight { - margin-bottom: 1rem; - border-radius: 4px; -} -.highlight pre { - margin-bottom: 0; -} - -/* Gist via GitHub Pages */ -.gist .gist-file { - font-family: Menlo, Monaco, "Courier New", monospace !important; -} -.gist .markdown-body { - padding: 15px; -} -.gist pre { - padding: 0; - background-color: transparent; -} -.gist .gist-file .gist-data { - font-size: .8rem !important; - line-height: 1.4; -} -.gist code { - padding: 0; - color: inherit; - background-color: transparent; - border-radius: 0; -} - -/* Quotes */ -blockquote { - padding: .5rem 1rem; - margin: .8rem 0; - color: #7a7a7a; - border-left: .25rem solid #e5e5e5; -} -blockquote p:last-child { - margin-bottom: 0; -} -@media (min-width: 30em) { - blockquote { - padding-right: 5rem; - padding-left: 1.25rem; - } -} - -img { - display: block; - max-width: 100%; - margin: 0 0 1rem; - border-radius: 5px; -} - -/* Tables */ -table { - margin-bottom: 1rem; - width: 100%; - border: 1px solid #e5e5e5; - border-collapse: collapse; -} -td, -th { - padding: .25rem .5rem; - border: 1px solid #e5e5e5; -} -tbody tr:nth-child(odd) td, -tbody tr:nth-child(odd) th { - background-color: #f9f9f9; -} - - -/* - * Custom type - * - * Extend paragraphs with `.lead` for larger introductory text. - */ - -.lead { - font-size: 1.25rem; - font-weight: 300; -} - - -/* - * Messages - * - * Show alert messages to users. You may add it to single elements like a `

    `, - * or to a parent if there are multiple elements to show. - */ - -.message { - margin-bottom: 1rem; - padding: 1rem; - color: #717171; - background-color: #f9f9f9; -} - - -/* - * Container - * - * Center the page content. - */ - -.container { - max-width: 38rem; - padding-left: 1rem; - padding-right: 1rem; - margin-left: auto; - margin-right: auto; -} - - -/* - * Masthead - * - * Super small header above the content for site name and short description. - */ - -.masthead { - padding-top: 1rem; - padding-bottom: 1rem; - margin-bottom: 3rem; -} -.masthead-title { - margin-top: 0; - margin-bottom: 0; - color: #505050; -} -.masthead-title a { - color: #505050; -} -.masthead-title small { - font-size: 75%; - font-weight: 400; - color: #c0c0c0; - letter-spacing: 0; -} - - -/* - * Posts and pages - * - * Each post is wrapped in `.post` and is used on default and post layouts. Each - * page is wrapped in `.page` and is only used on the page layout. - */ - -.page, -.post { - /* margin-bottom: 4em; */ -} - -/* Blog post or page title */ -.page-title, -.post-title, -.post-title a { - color: #303030; -} -.page-title, -.post-title { - margin-top: 0; -} - -/* Meta data line below post title */ -.post-date { - display: block; - margin-top: -.5rem; - margin-bottom: 1rem; - color: #9a9a9a; -} - -/* Related posts */ -.related { - padding-top: 2rem; - padding-bottom: 2rem; - border-top: 1px solid #eee; -} -.related-posts { - padding-left: 0; - list-style: none; -} -.related-posts h3 { - margin-top: 0; -} -.related-posts li small { - font-size: 75%; - color: #999; -} -.related-posts li a:hover { - color: #268bd2; - text-decoration: none; -} -.related-posts li a:hover small { - color: inherit; -} - - -/* - * Pagination - * - * Super lightweight (HTML-wise) blog pagination. `span`s are provide for when - * there are no more previous or next posts to show. - */ - -.pagination { - overflow: hidden; /* clearfix */ - margin-left: -1rem; - margin-right: -1rem; - font-family: "PT Sans", Helvetica, Arial, sans-serif; - color: #ccc; - text-align: center; -} - -/* Pagination items can be `span`s or `a`s */ -.pagination-item { - display: block; - padding: 1rem; - border: 1px solid #eee; -} -.pagination-item:first-child { - margin-bottom: -1px; -} - -/* Only provide a hover state for linked pagination items */ -a.pagination-item:hover { - background-color: #f5f5f5; -} - -@media (min-width: 30em) { - .pagination { - margin: 3rem 0; - } - .pagination-item { - float: left; - width: 50%; - } - .pagination-item:first-child { - margin-bottom: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - } - .pagination-item:last-child { - margin-left: -1px; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } -} diff --git a/_software/LibMEI.md b/_software/LibMEI.md deleted file mode 100644 index 928d2b49..00000000 --- a/_software/LibMEI.md +++ /dev/null @@ -1,62 +0,0 @@ ---- -layout: page -title: Libmei -tab: Software -permalink: /software/LibMEI/ ---- - - -LibMEI is a C++ library for reading and writing MEI files. -
    - -## Download - -LibMEI is currently in Beta. Documentation and the latest source code is on [our GitHub repository](https://github.com/DDMAL/libmei). -
    - -## LibMEI Documentation - -We have auto-generated [Doxygen documentation](https://github.com/DDMAL/libmei/blob/master/doc/libmei.doxygen). -
    - -## Compilation & usage - -We provide an XCode project for OSX and a cmake script for Linux. - -To build on Linux, simply - -``` - mkdir build; cd build - cmake .. - make - sudo make install -``` - -To use libmei, include - -``` - #include -``` - -More detailed information about compilation and use is available at the libmei wiki: [https://github.com/DDMAL/libmei/wiki](https://github.com/DDMAL/libmei/wiki) -
    - -## Contributions - -We welcome bug reports, feature requests, and patches to the libmei project page: [https://github.com/DDMAL/libmei](https://github.com/DDMAL/libmei) -
    - -## Authors - -* Andrew Hankinson -* Alastair Porter -* Greg Burlet -* Jamie Klassen -* Mahtab Ghamsari - -Development of LibMEI was made available with funding from the Social Sciences and Humanities Research Council of Canada. -
    - -## License - -LibMEI is released under the MIT license. diff --git a/_software/neon.md b/_software/neon.md deleted file mode 100644 index a461aa67..00000000 --- a/_software/neon.md +++ /dev/null @@ -1,81 +0,0 @@ ---- -layout: page -title: Neon -tab: Software -permalink: /software/neon/ ---- - -Neon is a browser-based music notation editor written in JavaScript, designed for working with square notation. It uses [Verovio](http://www.verovio.org/index.xhtml) to dynamically render the symbolic music files in MEI format, updating the file in real time through a graphical interface. Neon can be used for creating new musical scores, making ground-truth data for machine learning, or for correcting errors from automated transcriptions in an OMR workflow. Neon is designed as part of an optical music recognition workflow, allowing for quick and easy correction of pitch and position errors created in the OMR process. Every component of our OMR process is designed as an accessible online application, to allow correction tasks to be crowdsourced from our partner organizations and community members. -
    - -## Demo - -You can try out Neon on our [demo page](https://ddmal.github.io/Neon/). You can begin by selecting a link to a musical document that has undergone OMR, and then continue to insert, delete, or pitch shift notes on the page. -
    - -## Source Code - -Source code is available on the [Neon Github](https://github.com/DDMAL/Neon). -
    - -## Documentation - -Installation and instructions are available on the [Neon Wiki page](https://github.com/DDMAL/Neon/wiki). -
    - -## Contributing Code - -Any contributions are welcome! The easiest way to submit code is: - -1. Create a fork of the [Neon Github repository](https://github.com/DDMAL/Neon) -2. Read through the documentation and familiarize yourself with the code. Look at same of the outstanding [issues and feature requests](https://github.com/DDMAL/Neon/issues) if you need some inspiration. -3. Change code as you please in your local repository. -4. When you're ready, send us a pull request. We'll look through your code, and then merge it in. -
    - -## Feedback - -If you have any comments please [let us know](emily.hopkins@mcgill.ca). If you would like to see a particular feature implemented, post a new [issue](https://github.com/DDMAL/Neon/issues) on the Neon Github. -
    - -## Developers - -Neon is developed by: - -{% assign people = site.people | sort: 'last_name' %} - -

      -{% for person in people %} - {% if person.neon == 'developer' %} -
    • - {% if person.link %} - {{ person.title }} - {% else %} - {{ person.title }} - {% endif %} -
    • - {% endif %} -{% endfor %} -
    - -Project managers: - -
      -{% for person in people %} - {% if person.neon == 'project-manager' %} -
    • - {% if person.link %} - {{ person.title }} - {% else %} - {{ person.title }} - {% endif %} -
    • - {% endif %} -{% endfor %} -
    - -
    - -## Sponsors - -Neon is an ongoing project at the [Distributed Digital Music Archives and Libraries Lab (DDMAL)]({{ site.url }}/), at the [Schulich School of Music](http://www.mcgill.ca/music) of [McGill University](http://www.mcgill.ca/). Neon is part of the larger [Single Interface for Music Score Searching and Analysis (SIMSSA)](http://simssa.ca/) project that is generously funded by the [Social Sciences and Humanities Research Council of Canada](http://www.sshrc-crsh.gc.ca/). We're also grateful for the support provided by the [Centre for Interdisciplinary Research in Music Media and Technology (CIRMMT)](http://www.cirmmt.mcgill.ca/). diff --git a/_software/software.md b/_software/software.md deleted file mode 100644 index 4be33f3c..00000000 --- a/_software/software.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: page -title: Software -tab: Software -permalink: /software/ ---- - -Our [GitHub Page](https://github.com/DDMAL) is the best place to follow our software development. - -Some projects also live at [ELVIS Project](https://github.com/ELVIS-Project). - -Some current and past projects include: -* [AMPACT (Automated Music Performance Analysis and Comparison Toolkit)](http://www.ampact.org/) -* [Aruspix](https://www.aruspix.net/) -* [Diva.js](https://ddmal.github.io/diva.js/) -* [Gamera](https://gamera.informatik.hsnr.de/) -* [jMIR](https://jmir.sourceforge.net/) -* [LibMEI]({{ site.url }}/software/LibMEI/) -* [Neon.js]({{ site.url }}/software/neon/) -* [PyBagit](https://github.com/ahankinson/pybagit) -* [Rodan](https://github.com/ddmal/rodan) - - diff --git a/activities/media/index.html b/activities/media/index.html new file mode 100644 index 00000000..477b9e2d --- /dev/null +++ b/activities/media/index.html @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + Media · DDMAL + + + + + + + + + + + + + + +
    +
    +
    +

    Media

    +
    +

    2020

    +
    + +


    +

    2019

    +
    + +


    +

    2018

    +
    + +


    +

    2017

    +
    +
      +
    • +

      Bain, Jennifer. 2017. “Interview with Alexa MacLean about the Salzinnes Exhibit.” Global Television News, May 4.

      +
    • +
    • +

      Krämer, Reiner. 2017. “Dog-Walking Algorithm.” Podcast. Patch In (39). SoundNotion, June 6. http://www.soundnotion.tv/2017/06/pi-39/.

      +
    • +
    +


    +

    2016

    +
    +
      +
    • +

      Helsen, Kate. 2016b. “The Optical Neume Recognition Project.” Interview. Up All Night. BBC 5, June 1.

      +
    • +
    • +

      Krämer, Reiner. 2016. “The Present Edge with Gary McBride.” Radio Interview. Colorado, October 3.

      +
    • +
    +


    +

    2014

    +
    +
      +
    • Bain, Jennifer. 2014b. “The Optical Neume Recognition Project.” Main Street. March.
    • +
    +


    +
    +
    +
    +
    +
    + +
    + +
    + + + + + + \ No newline at end of file diff --git a/activities/posters/index.html b/activities/posters/index.html new file mode 100644 index 00000000..01048501 --- /dev/null +++ b/activities/posters/index.html @@ -0,0 +1,395 @@ + + + + + + + + + + + + + + + Posters · DDMAL + + + + + + + + + + + + + + +
    +
    +
    +

    Posters

    +
    +

    2019

    +
    +
      +
    • +

      Hopkins, Emily, Yaolong Ju, Gustavo Polins Pedro, Cory McKay, Julie Cumming, and Ichiro Fujinaga. 2019. “SIMSSA DB: Symbolic Music Discovery and Search.” Poster presented at the 6th International Conference on Digital Libraries for Musicology, Den Haag, Netherlands, November 9.

      +
    • +
    • +

      Ju, Yaolong. 2019. “An Interactive Workflow for Generating Chord Labels for Homorhythmic Music in Symbolic Formats.” Presented at the The 20thInternational Society of Music Information Retrieval Conference, Delft, Netherlands, November 8. http://cloud.simssa.ca/index.php/f/996.

      +
    • +
    • +

      Nápoles, Néstor López, Gabriel Vigliensoni, and Ichiro Fujinaga. 2019. “The Effects of Translation between Symbolic Music Formats: A Case Study with Humdrum, Lilypond, MEI, and MusicXML.” Poster presented at the annual Music Encoding Conference, Vienna, Austria, June 29.

      +
    • +
    • +

      Reuse, Tim de, and Ichiro Fujinaga. 2019. “CopyForward: Point-Set Matching for Predicting Patterns.” Poster presented at the 15th running of the Music Information Retrieval Evaluation eXchange at the 20th International Society for Music Information retrieval Conference, Delft, Netherlands, November 4.

      +
    • +
    +


    +

    2018

    +
    +
      +
    • Nápoles, Néstor, Claire Arthur, and Ichiro Fujinaga. 2018. “Symbolic and Audio Key Detection Based on a Hidden Markov Model.” Poster presented at the 19th International Society for Music Information Retrieval Conference, Paris, France, September 23.
    • +
    +


    +

    2017

    +
    +
      +
    • +

      Ju, Yaolong, Nathaniel Condit-Schultz, Claire Arthur, and Ichiro Fujinaga. 2017. “Non-Chord Tone Identification Using Deep Neural Networks.” Poster presented at the 18th International Society for Music Information Retrieval Conference (Late-Breaking), Suzhou, China, October 23.

      +
    • +
    • +

      McKay, Cory, Andrew Hankinson, Julie Cumming, and Ichiro Fujinaga. 2017. “A Database Model for Computational Music Research.” Poster presented at the 4th International Workshop on Digital Libraries for Musicology, Suzhou, China, October 28.

      +
    • +
    • +

      McKay, Cory, Julie Cumming, and Ichiro Fujinaga. 2017. “Characterizing Composers Using JSymbolic2 Features.” Poster presented at the 18th International Society for Music Information Retrieval Conference, Suzhou, China, August 7.

      +
    • +
    • +

      Parmentier, Alex, Andrew Hankinson, and Ichiro Fujinaga. 2017. “Tripoli: Presentation API Validation.” Poster presented at the International Image Interoperability Framework Annual Conference, The Vatican, Italy, June 7.

      +
    • +
    • +

      Vigliensoni, Gabriel, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2017. “Reconnaissance Optique de La Musique Basée Sur l’Apprentissage Machine à Grande Échelle Pour Des Données de Partitions Musicales.” Poster presented at the 85e édition du Congrès de l’Association francophone pour le savoir, Montreal, Canada, May 8.

      +
    • +
    +


    +

    2016

    +
    +
      +
    • +

      Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2016. “Staff Line Detection on Grewscale Images with Pixel Classification.” Poster presented at the 17th International Society for Music Information Retrieval Conference, New York City, USA, August 7.

      +
    • +
    • +

      Horwitz, Andrew, Andrew Hankinson, and Ichiro Fujinaga. 2016. “An MEI Score Alignment Client.” Poster presented at the annual Music Encoding Conference, Montreal, Canada, May 17.

      +
    • +
    • +

      McKay, Cory, Tristano Tenaglia, and Ichiro Fujinaga. 2016. “JSymbolic2: Extracting Features from Symbolic Music Representations.” Poster presented at the 17th International Society for Music Information Retrieval Conference, New York City, USA, August 7.

      +
    • +
    • +

      Vigliensoni, Gabriel, and Ichiro Fujinaga. 2016. “Automatic Music Recommendation Systems: Do Demographic, Profiling, and Contextual Features Improve Their Performance?” Poster presented at the 17th International Society for Music Information Retrieval Conference, New York City, USA, August 7.

      +
    • +
    • +

      Weiss, Susan Forscher, and Ichiro Fujinaga. 2016. “The Human History Project: Digital Prosopography of Renaissance Musicians.” Poster presented at the 3rd International Digital Libraries for Musicology workshop, New York City, USA, August 12.

      +
    • +
    +


    +

    2015

    +
    +
      +
    • +

      Fogarty, Alex, Andrew Hankinson, and Ichiro Fujinaga. 2015. “A Browser-Based Neume Metadata Editor.” Poster presented at the annual Muic Encoding Conference, Florence, Italy, May 18.

      +
    • +
    • +

      Horwitz, Andrew, Andrew Hankinson, and Ichiro Fujinaga. 2015. “A Browser-Based MEI Editor.” Poster presented at the annual Muic Encoding Conference, Florence, Italy, May 18.

      +
    • +
    +


    +

    2014

    +
    +
      +
    • +

      Antila, Christopher, and Julie Cumming. 2014. “The VIS Framework: Analyzing Counterpoint in Large Datasets.” Poster presented at the 15th International Society for Music Information Retrieval Conference, Taipei, Taiwan, October 27.

      +
    • +
    • +

      Vigliensoni, Gabriel, and Ichiro Fujinaga. 2014a. “Identifying Time Zones in a Large Dataset of Music Listening Logs.” Poster presented at the 1st International Workshop on Social Media Retrieval and Analysis, Gold Coast, Australia, July 11.

      +
    • +
    • +

      Vigliensoni, Gabriel, and Ichiro Fujinaga. 2014b. “Time-Shift Normalization and Listener Profiling in a Large Dataset of Music Listening Histories.” Poster presented at the 4th annual seminar on cognitively based music informatics research, Toronto, Canada, October 4.

      +
    • +
    • +

      Weiss, Susan Forscher, and Ichiro Fujinaga. 2014. “Digital Prosopography of Renaissance Musicians: Discovery of Social and Professional Networks.” Poster presented at the 8th Annual Meeting of the American Musicological Society and the 37th Annual Meeting of the Society for music Theory, Milwaukee, USA, November 6.

      +
    • +
    +


    +

    2013

    +
    +
      +
    • +

      Burlet, Gregory, Marcelo M. Wanderley, and Ichiro Fujinaga. 2013. “Stompboxes: Kicking the Habit.” Poster presented at the 13th International Conference on New Interfaces for Musical Expression, Daejeon, Republic of Korea, May 27.

      +
    • +
    • +

      Groves, Ryan, Doina Precup, and Ichiro Fujinaga. 2013. “Automatic Rock’n’Roll Accompaniment: Using a Hidden Semi-Markov Model.” Poster presented at the 4th International Conference on Mathematics and Computation in Music, Montreal, Canada, June 12.

      +
    • +
    • +

      Vigliensoni, Gabriel, Gregory Burlet, and Ichiro Fujinaga. 2013. “Optical Measure Recognition in Common Music Notation.” Poster presented at the 14th International Society for Music Information Retrieval Conference, Curitiba, Brazil, November 4.

      +
    • +
    • +

      Vigliensoni, Gabriel, John Ashley Burgoyne, and Ichiro Fujinaga. 2013. “Musicbrainz for the World: The Chilean Experience.” Poster presented at the 14th International Society for Music Information Retrieval Conference, Miami, USA, November 4.

      +
    • +
    +


    +

    2012

    +
    +
      +
    • +

      Burlet, Gregory, Alastair Porter, Andrew Hankinson, and Ichiro Fujinaga. 2012. “Neon.Js: Neume Editor Online.” Poster presented at the 13th International Society for Music Information Retrieval Conference, Porto, Portugal, October 8.

      +
    • +
    • +

      Hankinson, Andrew, Gabriel Vigliensoni, John Ashley Burgoyne, and Ichiro Fujinaga. 2012. “New Tools for Optical Chant Recognition.” Poster presented at the Music Libraries Association 81st Annual Meeting, Dallas, USA, February 15.

      +
    • +
    +


    +

    2011

    +
    +
      +
    • +

      Burlet, Gregory, and Ichiro Fujinaga. 2011. “Robotaba Guitar Tablature Transcription Framework.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24.

      +
    • +
    • +

      Hankinson, Andrew, Daniel Donnelly, Ichiro Fujinaga, and Julie Cumming. 2011. “An Annotated Dataset for Optical Music Recognition Systems Development.” Poster presented at the Center for Interdisciplanary Research in Music Media and Technology (CIRMMT) Student Symposium, Montreal, Canada, May 16.

      +
    • +
    • +

      Hankinson, Andrew, Gabriel Vigliensoni, John Ashley Burgoyne, and Ichiro Fujinaga. 2011. “New Tools for Optical Chant Recognition.” Poster presented at the annual International Association of Music Libraries, Archives and Documentation Centres Congress, Dublin, Ireland, July 24.

      +
    • +
    • +

      Hockman, Jason A., David M. Weigh, Catherine Guastavino, and Ichiro Fujinaga. 2011. “Discrimination between Phonograph Playback Ystems.” Poster presented at the 131th Audio Engineering Society Convention, New York City, USA, October 20.

      +
    • +
    • +

      Knight, Trevor, Finn Upham, and Ichiro Fujinaga. 2011. “The Potential for Automatic Assessment of Trumpet Tone Quality.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24.

      +
    • +
    • +

      Neubarth, Kerstin, Mathieu Bergeron, and Darrell Conklin. 2011. “Associations between Musicology and Music Information Retrieval.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24.

      +
    • +
    • +

      Smith, Jordan B. L., John Ashley Burgoyne, Ichiro Fujinaga, David de Roure, and J. Stephen Downie. 2011. “Design and Creation of a Large-Scale Database of Structural Annotations.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24.

      +
    • +
    • +

      Thompson, Jessica, Andrew Hankinson, and Ichiro Fujinaga. 2011. “Searching for the Liber Usualis: Using CouchDB and ElasticSearch to Query Graphical Music Documents.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24.

      +
    • +
    • +

      Vigliensoni, Gabriel, John Ashley Burgoyne, Andrew Hankinson, and Ichiro Fujinaga. 2011. “Automatic Pitch Recognition in Printed Square-Note Notation.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24.

      +
    • +
    +


    +

    2010

    +
    +
      +
    • +

      Angeles, Bruno, Cory McKay, and Ichiro Fujinaga. 2010. “Discovering Metadata Inconsistencies.” Poster presented at the 11th International Society for Music Information Retrieval Conference, Utrecht, Netherlands, August 9.

      +
    • +
    • +

      Burgoyne, John Ashley, and Ichiro Fujinaga. 2010. “Smart Statistical Models for Musical Data.” Poster presented at the annual meeting of the Society for Music Theory, Indianapolis, USA, November 4.

      +
    • +
    • +

      Conklin, Darrell, and Mathieu Bergeron. 2010. “Discovery of Contrapuntal Patterns.” Poster presented at the 11th International Society for Music Information Retrieval Conference, Utrecht, Netherlands, August 9.

      +
    • +
    • +

      Devaney, Johanna, and Ichiro Fujinaga. 2010. “AMPACT: Automated Music Performance Analysis and Comparison Toolkit.” Poster.

      +
    • +
    • +

      Hankinson, Andrew, Laurent Pugin, and Ichiro Fujinaga. 2010. “An Interchange FOrmat for Optical Music Recognition Applications.” Poster presented at the 11th International Society for Music Information Retrieval Conference, Utrecht, Netherlands, August 9.

      +
    • +
    • +

      Hockman, Jason A., Jason Malloch, Ichiro Fujinaga, and Marcelo M. Wanderley. 2010. “Interactive Real-Time Rhythmic.” Poster presented at the Center for Interdisciplinary Research in Music Media and Technology (CIRMMT) Student Symposium, Montreal, QC, May 27.

      +
    • +
    • +

      Hockman, Jason A., and Ichiro Fujinaga. 2010. “Fast vs Slow: Learning Tempo Ocataves from User Data.” Poster presented at the 11th International Society for Music Information Retrieval Conference, Utrecht, Netherlands, August 9.

      +
    • +
    • +

      McKay, Cory, John Ashley Burgoyne, Jason Hockman, Jordan B. L. Smith, Gabriel Vigliensoni, and Ichiro Fujinaga. 2010. “Evaluating the Genre Classification Performance of Lyrical Features Relative to Audio, Symbolic and Cultural Features.” Utrecht, Netherlands, August 9.

      +
    • +
    • +

      Vigliensoni, Gabriel, Cory McKay, and Ichiro Fujinaga. 2010. “Using JWebMiner 2.0 to Improve Music Classification Performance by Combining Different Types of Features Mined from the Web.” Poster presented at the 10th International Society for Music Information Retrieval Conference, Utrecht, Netherlands, August 9.

      +
    • +
    +


    +

    2009

    +
    +
      +
    • +

      Devaney, Johanna, Jonathan Wild, Ichiro Fujinaga, and Douglas Elk. 2009. “Intonation Tendencies in Sola A Cappella Vocal Performances.” Poster presented at the 2009 Biennial Meeting of the Society for Music Perception and Cognition, Indianapolis, USA, August 3.

      +
    • +
    • +

      Hockman, Jason A., Marcelo M. Wanderley, and Ichiro Fujinaga. 2009. “Automated Phase Vocoder.” Poster presented at the 9th New Interfaces for Musical Expression International Conference, Pittsburgh, USA, June 4.

      +
    • +
    • +

      Li, Beinan, Jordan B. L. Smith, and Ichiro Fujinaga. 2009. “Optical Audio Reconstruction for Stereo Phonograph Records Using White-Light Interferometry.” Poster presented at the 10th International Society for Music Information Retrieval Conference, Kobe, Japan, October 26.

      +
    • +
    • +

      McKay, Cory, and Ichiro Fujinaga. 2009. “JMir: Tools for Automatic Music Classification.” Poster presented at the 2009 International Computer Music Conference, Montreal, Canada, August 16.

      +
    • +
    • +

      Ouyang, Yue, John Ashley Burgoyne, Laurent Pugin, and Ichiro Fujinaga. 2009. “A Robust Border Detection Algorithm with Application to Medieval Music Manuscripts.” Poster presented at the 2009 International Computer Music Conference, Montreal, Canada, August 16.

      +
    • +
    • +

      Thompson, Jessica, Cory McKay, John Ashley Burgoyne, and Ichiro Fujinaga. 2009. “Additions and Improvements to the ACE 2.0 Music Classifier.” Poster presented at the 10th International Society for Music Information Retrieval Conference, Kobe, Japan, October 26.

      +
    • +
    +


    +

    2008

    +
    +
      +
    • +

      Burgoyne, John Ashley, Johanna Devaney, Laurent Pugin, and Ichiro Fujinaga. 2008. “Enhanced Bleedthrough Correction for Early Music Document with Recto-Verso Registration.” Poster presented at the 9th International Conference on Music Information Retrieval, Philadelphia, USA, September 14.

      +
    • +
    • +

      Devaney, Johanna, and Ichiro Fujinaga. 2008. “Assessing the Role of Sensory Consonance in Trained Musicians’ Tuning Preferences.” Poster presented at the 10th International Conference on Music Perception and Cognition, Sapporo, Japan, August 25.

      +
    • +
    • +

      Hankinson, Andrew, Laurent Pugin, Gabriella Hanke Knaus, and Ichiro Fujinaga. 2008. “A Web-Based Musical Document Viewer for Digital Music Library.” Poster (late-breaking) presented at the Conference of the International Society for Music Information Retrieval, Philadelphia, PA.

      +
    • +
    • +

      Hockman, Jason A., Matthew E.P. Davies, Juan P. Bello, and Mark D. Plumbley. 2008. “Automated Rhythmic Transformation of Musical Audio.” Poster presented at the 11th International Conference on Digital Audio Effects, Espoo, Finland, September 1.

      +
    • +
    • +

      Pugin, Laurent, Jason Hockman, John Ashley Burgoyne, and Ichiro Fujinaga. 2008. “Gamera versus Aruspix: Two Optical Music Recognition Approaches.” Poster presented at the 9th International Society for Music Information Retrieval Conference, Philadelphia, USA, September 14.

      +
    • +
    • +

      Pugin, Laurent, John Ashley Burgoyne, and Ichiro Fujinaga. 2008. “Optical Music Recognition to Digitise Early Music Collections on a Library Scale.” Poster presented at the annual International Association of Music Libraries, Archives and Documentation Centres Congress, Naples, Italy, July 20.

      +
    • +
    +


    +

    2007

    +
    +
      +
    • +

      Lai, Catherine, Ichiro Fujinaga, David Descheneau, Michael Frishkopf, Jenn Riley, Joseph Hafner, and Brian McMillan. 2007. “Metadata Infrastructure for Sound Recordings.” Poster presented at the 8th International Conference on Music Information Retrieval, Vienna, Austria, September 23.

      +
    • +
    • +

      Li, Beinan, Simon de Leon, and Ichiro Fujinaga. 2007. “Alternative Digitization Approach for Stereo Phonograph Records Using Optical Audio Reconstruction.” Poster presented at the 8th International Society for Music Information Retrieval Conference, Vienna, Austria, September 23.

      +
    • +
    • +

      McKay, Cory, and Ichiro Fujinaga. 2007. “JWebMiner: A Web-Based Feature Extractor.” Poster presented at the 8th International Conference on Music Information Retrieval, Vienna, Austria, September 23.

      +
    • +
    +


    +

    2006

    +
    +
      +
    • +

      Fujinaga, Ichiro, and Daniel McEnnis. 2006. “On-Demand Metadata Extraction Network [OMEN]: Making Libraries’ Music Collections Available to MIR Researchers for Search and Analysis.” Poster presented at the 6th ACM/IEEE-CS joint conference on Digital libraries, New York City, USA, June 11.

      +
    • +
    • +

      Lai, Catherine, and Ichiro Fujinaga. 2006. “A Metadata Data Dictionary for Analog Sound and Recordings.” Poster presented at the 6th ACM/IEEE-CS joint conference on Digital libraries, Chapel Hill, USA, June 11.

      +
    • +
    • +

      Li, Beinan, Catherine Lai, and Ichiro Fujinaga. 2006a. “Technical Issues in Digitization of Large Online Collections of Phonograph Records.” Poster presented at the 3rd IS&T Archiving Conference, Ottawa, Canada, May 23.

      +
    • +
    • +

      Li, Beinan, Catherine Lai, and Ichiro Fujinaga. 2006b. “Technical Issues in Digitization of Large Online Collections of Phonograph Records - Part 2.” Poster presented at the 3rd IS&T Archiving Conference, Ottawa, Canada, May 23.

      +
    • +
    • +

      Li, Beinan, Ichiro Fujinaga, and Cory McKay. 2006. “Automatic Track Segmentation for Digitized Phonograph Records.” Poster, May.

      +
    • +
    • +

      Li, Beinan, John Ashley Burgoyne, and Ichiro Fujinaga. 2006. “Extending Audacity for Audio Annotation.” Poster presented at the 7th International Society for Music Information Retrieval Conference, Victoria, Canada, October 8.

      +
    • +
    • +

      McEnnis, Daniel, Cory McKay, and Ichiro Fujinaga. 2006. “JAudio: Additions and Improvements.” Poster presented at the 7th International Conference on Music Information Retrieval, Victoria, Canada, October 8.

      +
    • +
    • +

      McKay, Cory, and Ichiro Fujinaga. 2006. “Combining Features Extracted from Audio, Symbolic and Cultural Sources.” Poster presented at the 8th International Conference on Music Information Retrieval, Vienna, Austria, June 11.

      +
    • +
    • +

      Sinclair, Stephen, Michael Droettboom, and Ichiro Fujinaga. 2006. “Lilypond for PyScore: Approaching a Universal Translator for Music Notation.” Poster presented at the 7th International Conference on Music Information Retrieval, Victoria, Canada, October 8.

      +
    • +
    +


    +

    2005

    +
    +
      +
    • +

      Burgoyne, John Ashley, and Lawrence K. Saul. 2005. “Learning Harmonic Relationships in Digital Audio with Dirichlet-Based Hidden Markov Models.” Poster presented at the 6th International Conference on Music Information Retrieval, London, UK, September 11.

      +
    • +
    • +

      Fiebrink, Rebecca, Cory McKay, and Ichiro Fujinaga. 2005. “Combining D2K and JGAP for Efficient Feature Weighting for Classification Tasks in Music Information Retrieval.” Poster, London, UK, September 11.

      +
    • +
    • +

      Lai, Catherine, Beinan Li, and Ichiro Fujinaga. 2005. “Preservation Digitizaation of David Edelberg’s Handel LP Collection: A Pilot Project.” Poster presented at the 6th International Conference on Music Information Retrieval, London, UK, September 11.

      +
    • +
    • +

      Lai, Catherine, Ichiro Fujinaga, and Cynthia A. Leive. 2005. “MetaData for Phonograph Records: Facilitating New Forms of Use and Access to Analogue Recordings.” Poster presented at the 5th ACM/IEEE-CS joint conference on Digital libraries, Denver, USA, June 7.

      +
    • +
    • +

      McEnnis, Daniel, Cory McKay, Ichiro Fujinaga, and Philippe Depalle. 2005. “JAudio: A Feature Extraction Library.” Posrer presented at the 6th International Conference on Music Information Retrieval, London, UK, September 11.

      +
    • +
    • +

      Sinyor, Elliot, Cory McKay, Rebecca Fiebrink, Daniel McEnnis, and Ichiro Fujinaga. 2005. “Beatbox Classification Using ACE.” Poster presented at the 6th International Conference on Music Information Retrieval, London, UK, September 11.

      +
    • +
    +


    +
    +
    +
    +
    +
    + +
    + +
    + + + + + + \ No newline at end of file diff --git a/activities/presentations/index.html b/activities/presentations/index.html new file mode 100644 index 00000000..4fff069a --- /dev/null +++ b/activities/presentations/index.html @@ -0,0 +1,584 @@ + + + + + + + + + + + + + + + Presentations · DDMAL + + + + + + + + + + + + + + +
    +
    +
    +

    Presentations

    +
    +

    2021

    +
    +
      +
    • +

      McKay, Cory, and María Elena Cuenca. 2021. “Musical Influences on the Masses and Motets of Cristóbal de Morales and Francisco Guerrero: A Statistical Approach.” Presented at the 49th Medieval and Renaissance International Music Conference, Universidade NOVA de Lisboa, Portugal, July. http://jmir.sourceforge.net/publications/mckay21musical.pdf.

      +
    • +
    • +

      Rodríguez-García, Esperanza, and Cory McKay. 2021. “Ave Festiva Ferculis: Exploring Attribution by Combining Manual and Computational Analysis.” Presented at the 49th Medieval and Renaissance International Music Conference, Universidade NOVA de Lisboa, Portugal, July.

      +
    • +
    • +

      Thomae, Martha E. 2021a. “Encoding Mensural Notation with MEI.” Invited Lecture presented at the Paleography course, University of Freiburg, Freiburg, Germany, January 25.

      +
    • +
    • +

      Thomae, Martha E. 2021b. “Digital Infrastructures for Mensural Music Using MEI.” Invited Lecture presented at the Kolloquium Musikwissenschaft, Freiburger Forschungs- und Lehrzentrum Musik (FZM), Freiburg, Germany, January 26.

      +
    • +
    • +

      Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2021. “Guatemalan Cathedral Choirbook 1: From Manuscript to Digital Images to Digital Scores.” Presented at the 49th Medieval and Renaissance International Music Conference, Universidade NOVA de Lisboa, Portugal, July.

      +
    • +
    +


    +

    2020

    +
    +
      +
    • +

      Cumming, Julie E. 2020. “Thoughts on Sustainability, 8 Years Later.” Presented at the Round Four Digging into Data Conference, National Science Foundation, Alexandria, VA, January 29. https://diggingintodata.org/awards/news/round-4-conference-2020.

      +
    • +
    • +

      De Luca, Elsa, and Martha E. Thomae. 2020a. “Workshop I: Introduction to MEI.” Invited Lecture. Prague, Czech Republic (online).

      +
    • +
    • +

      De Luca, Elsa, and Martha E. Thomae. 2020b. “Workshop II: Hands-on MEI Encoding.” Invited Lecture presented at the Digital Humanities in Early Music Research I Series – Session II: Early Music Databases and Encoding, Prague, Czech Republic (online), June 30.

      +
    • +
    • +

      McKay, Cory, Rían Adamían, Julie E. Cumming, and Ichiro Fujinaga. 2020. “Exploring Renaissance Music Using N-Gram Aggregates to Summarize Local Musical Content.” Presented at the Medieval and Renaissance Music Conference, Edinburgh, Scotland, July 4.

      +
    • +
    • +

      Regimbal, Juliette, Gabriel Vigliensoni, Caitlin Hutnyk, and Ichiro Fujinaga. 2020. “IIIF-Based Lyric and Neume Editor for Square-Notation Manuscripts.” Presented at the Music Encoding Conference 2020, Tufts University, Boston, May 27. https://hcommons.org/deposits/item/hc:31975.

      +
    • +
    • +

      Thomae, Martha E. 2020. “MEI for Encoding Mensural Music – A Survey.” Invited Lecture presented at the Digital Humanities in Early Music Research I Series – Session II: Early Music Databases and Encoding, Prague, Czech Republic (online), June 22.

      +
    • +
    • +

      Thomae, Martha E., Antonio Ríos-Vila, Jorge Calvo-Zaragoza, David Rizo, and José M. Iñesta. 2020. “Retrieving Music Semantics from Optical Music Recognition by Machine Translation.” Presented at the Music Encoding Conference, Tufts University, Boston, MA (online), May.

      +
    • +
    +


    +

    2019

    +
    +
      +
    • +

      Calvo-Zaragoza, Jorge. 2019. “Holistic Methods for Optical Music Recognition.” Presented at the Workshop on SIMSSA XVIII at the Music Encoding Conference, University of Vienna, Vienna, Austria, June 2.

      +
    • +
    • +

      Cuenca Rodríguez, María Elena, and Cory McKay. 2019. “Exploring Musical Style in the Anonymous and Doubtfully Attributed Mass Movements of the Coimbra Manuscripts: A Statistical Approach.” Presented at the Medieval and Renaissance Music Conference, Basel, Switzerland.

      +
    • +
    • +

      Cumming, Julie, and Zoey Cochran. 2019. “The Questione Della Musica: Revisiting the Origins of the Italian Madrigal.” Presented at the Medieval and Renaissance Music Conference, Basel, Switzerland, July 4.

      +
    • +
    • +

      De Luca, Elsa, Jennifer Bain, Inga Behrendt, Kate Helsen, Alessandra Ignesti, Debra Lacoste, and Sarah Ann Long. 2019. “Cantus Ultimus’ MEI Neume Module and Its Interoperability Across Chant Notation.” Poster (refereed) presented at the Music Encoding Conference, University of Vienna, Vienna, Austria, May 31.

      +
    • +
    • +

      Fujinaga, Ichiro. 2019. “SIMSSA Project & Linked Open Data.” Presented at the Canadian Workshop on Linked Open Data for Cultural Scholarship, Banff, AB, September 13. https://www.birs.ca/events/2019/2-day-workshops/19w2276.

      +
    • +
    • +

      Hopkins, Emily, Yaolong Ju, Gustavo Polins Pedro, Cory McKay, Julie Cumming, and Ichiro Fujinaga. 2019. “SIMSSA DB: Symbolic Music Discovery and Search.” Poster (refereed) presented at the Digital Libraries for Musicology, The Hague, Netherlands, November.

      +
    • +
    • +

      Howes, Samuel, and Yaolong Ju. 2019. “Chord Progressions in Lutheran Chorales.” Presented at the Workshop on SIMSSA (Single Interface for Music Score Searching and Analysis) XIX, Montreal, Canada, September 21. https://www.cirmmt.org/activities/workshops/research/workshop_on_SIMSSA_XIX.

      +
    • +
    • +

      Ju, Yaolong, Gustavo Polins Pedro, Cory McKay, Emily Ann Hopkins, and Julie Cumming. 2019. “Enabling Music Search and Analysis: A Database for Symbolic Music Files.” Poster (refereed) presented at the Music Encoding Conference 2019, University of Vienna, Austria, May 30.

      +
    • +
    • +

      Ju, Yaolong, Samuel Howes, Cory McKay, Nathaniel Condit-Schultz, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2019. “An Interactive Workflow for Generating Chord Labels for Homorhythmic Music in Symbolic Formats.” Presented at the 20th annual conference of the International Society for Music Information Retrieval (ISMIR), Delft, Netherlands, November 8.

      +
    • +
    • +

      Ju, Yaolong. 2019. “Search and Analysis Tool for Use with the SIMSSA Database.” Presented at the SIMSSA Workshop, Montréal, QC, June 2.

      +
    • +
    • +

      Laplante, Audrey, and Jean-Sebastian Sauvé. 2019. “The Place of Digital Technologies in Musicology from the Perspective of Music Scholars.” Presented at the Workshop on Requirements, Use Cases, and User Studies in Digital Music Libraries and Archives (RUCUS 2019)/ACM/IEEE-CS Joint Conference on Digital Libraries (JCDL), Urbana-Champaign, IL, USA, June 6.

      +
    • +
    • +

      Margot, Sylvain. 2019. “L’influence Des Espaces Géoculturels Sur La Structure et La Syntaxe Cadentielle Du Rondeau Entre 1250 et 1450.” Presented at the 47th Medieval and Renaissance Music Conference, Schola Cantorum Basiliensis, Basel, Switzerland, July.

      +
    • +
    • +

      McKay, Cory, Emily Hopkins, Gustavo Polins Pedro, Yaolong Ju, Andrew Kam, Julie Cumming, and Ichiro Fujinaga. 2019. “A Collaborative Symbolic Music Database for Computational Research on Music.” Presented at the Medieval and Renaissance Music Conference, Basel, Switzerland.

      +
    • +
    • +

      McKay, Cory, Julie Cumming, and Ichiro Fujinaga. 2019. “Lessons Learned in a Large-Scale Project to Digitize and Computationally Analyze Musical Scores.” Presented at the Digital Humanities Conference, Utrecht, NL, July.

      +
    • +
    • +

      Nápoles López, Néstor, Claire Arthur, and Ichiro Fujinaga. 2019. “Key-Finding Based on a Hidden Markov Model and Key Profiles.” Presented at the 6th International Conference on Digital Libraries for Musicology, The Hague, Netherlands, November 9.

      +
    • +
    • +

      Nápoles López, Néstor, Gabriel Vigliensoni, and Ichiro Fujinaga. 2019. “The Effects of Translation between Symbolic Music Formats: A Case Study with Humdrum, Lilypond, MEI, and MusicXML.” Presented at the Music Encoding Conference, University of Vienna, Vienna, Austria.

      +
    • +
    • +

      Nápoles López, Néstor. 2019. “Cantus Ultimus: Status Update.” Presented at the Workshop on SIMSSA XIX, CIRMMT, McGill University, Montreal.

      +
    • +
    • +

      Pugin, Laurent. 2019. “A Verovio JavaScript Application.” Presented at the Workshop on SIMSSA XVIII at the Music Encoding Conference, University of Vienna, Vienna, Austria, June 2.

      +
    • +
    • +

      Regimbal, Juliette, Zoé McLennan, Gabriel Vigliensoni, Andrew Tran, and Ichiro Fujinaga. 2019a. “Neon2: A Verovio-Based Square-Notation Editor.” Poster (refereed) presented at the Music Encoding Conference, University of Vienna, Vienna, Austria, May 31.

      +
    • +
    • +

      Regimbal, Juliette, Zoé McLennan, Gabriel Vigliensoni, Andrew Tran, and Ichiro Fujinaga. 2019b. “Neon.Js After v3: How to Move Forward with OMR Visualization and Correction of Full Manuscripts.” Presented at the Workshop on SIMSSA XVIII at the Music Encoding Conference, University of Vienna, Vienna, Austria, June 2.

      +
    • +
    • +

      Regimbal, Juliette, and Caitlin Hutnyk. 2019. “Neon: Full Manuscripts, Lyrics and Staves.” Presented at the Workshop on SIMSSA XIX, CIRMMT, McGill University, Montreal, September 21.

      +
    • +
    • +

      Reuse, Timothy de, and Ichiro Fujinaga. 2019. “Pattern Clustering in Monophonic Music by Learning a Non-Linear Embedding from Human Annotations.” Presented at the The 20th International Society for Music Information Retrieval Conference, Delft, Netherlands, November.

      +
    • +
    • +

      Savage, Evan. 2019. “Neume Component Pitch and Type Classification.” Presented at the Workshop on SIMSSA XIX, CIRMMT, McGill University, Montreal, September 21.

      +
    • +
    • +

      Shaw, Rebecca. 2019. “The Differentiae Database.” Presented at the Workshop on SIMSSA XIX, CIRMMT, McGill University, Montreal, September 21.

      +
    • +
    • +

      Thomae, Martha E. 2019a. “Preservation of the Colonial Musical Heritage of Guatemala Through Digitization and Music Encoding Technologies.” Invited Talk presented at the Association of Canadian Archivists McGill Student Chapter’s Annual Colloquium, Montreal, QC, March 18.

      +
    • +
    • +

      Thomae, Martha E. 2019b. “Guatemalan Manuscripts: Digitization Issues and Forthcoming Challenges in the Adaptation of the OMR Workflow for Mensural Music.” Presented at the Workshop on SIMSSA XVIII at the Music Encoding Conference, University of Vienna, Vienna, Austria, June 2.

      +
    • +
    • +

      Thomae, Martha E. 2019c. “OMR for Mensural Notation: Looking at a Guatemalan Music Manuscript.” Presented at the Workshop on SIMSSA XIX, CIRMMT, McGill University, Montreal, September 21.

      +
    • +
    • +

      Thomae, Martha E. 2019d. “Digitization and Encoding of the Musical Contents of a Set of Guatemalan Choirbooks.” Invited Lecture presented at the Multimedia Systems (GLIS 633) course, McGill University, Montreal, QC, November 27.

      +
    • +
    • +

      Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2019a. “Application of Music-Encoding Technologies to Guatemalan Choirbooks, Facilitating Preservation and Musicological Studies of the Colonial Repertoire.” Paper presentation presented at the Music Encoding Conference, University of Vienna, Vienna, Austria, May 31.

      +
    • +
    • +

      Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2019b. “Taking Digital Humanities to Guatemala, a Case Study in the Preservation of Colonial Musical Heritage.” Presented at the Digital Humanities Conference, Utrecht, NL, July 10.

      +
    • +
    • +

      Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2019c. “The Mensural Scoring-up Tool.” Presented at the 6th International Conference on Digital Libraries for Musicology, The Hague, NL, November 9.

      +
    • +
    • +

      Upham, Finn. 2019. “Human Subtracted: Social Distortion of Music Technology.” Presented at the 1 st Workshop on Designing Human-Centric Music Information Research Systems, Delft, Netherlands, November 2.

      +
    • +
    • +

      Vigliensoni, Gabriel, Alex Daigle, Eric Liu, Jorge Calvo-Zaragoza, Juliette Regimbal, Minh Anh Nguyen, Noah Baxter, Zoé McLennan, and Ichiro Fujinaga. 2019a. “From Image to Encoding: Full Optical Music Recognition of Medieval and Renaissance Music.” Presented at the Music Encoding Conference, University of Vienna, Vienna, Austria, May.

      +
    • +
    • +

      Vigliensoni, Gabriel, Alex Daigle, Eric Liu, Jorge Calvo-Zaragoza, Juliette Regimbal, Minh Anh Nguyen, Noah Baxter, Zoé McLennan, and Ichiro Fujinaga. 2019b. “Overcoming the Challenges of Optical Music Recognition of Early Music with Machine Learning.” Presented at the Digital Humanities Conference, Utrecht, NL, July.

      +
    • +
    • +

      Vigliensoni, Gabriel, Alex Daigle, Eric Liu, Jorge Calvo-Zaragoza, Juliette Regimbal, Minh Anh Nguyen, Noah Baxter, and Zoé Mclennan. 2019. “Image to Encoding: Full Optical Music Recognition of Medieval and Renaissance Music.” Poster (refereed) presented at the Music Encoding Conference, University of Vienna, Vienna, Austria, May 31.

      +
    • +
    • +

      Vigliensoni, Gabriel. 2019. “OMR after Document Segmentation: Classifying and Aligning Music Symbols and Lyrics to Generate MEI Neume Files.” Presented at the Workshop on SIMSSA XVIII at the Music Encoding Conference, University of Vienna, Vienna, Austria, June 2.

      +
    • +
    +


    +

    2018

    +
    +
      +
    • +

      Arthur, Claire, Julie Cumming, and Peter Schubert. 2018a. “Computer-Assisted Modal Identification.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 5.

      +
    • +
    • +

      Arthur, Claire, Julie Cumming, and Peter Schubert. 2018b. “The Role of Structural Tones in Establishing Mode in Renaissance Two-Part Counterpoint.” Poster presented at the 15th International Conference on Music Perception and Cognition, Montreal, QC, July 26.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Ké Zhang, Zeyad Saleh, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Human-Aided Automatic Music Document Analysis.” Presented at the Music Encoding Conference, University of Maryland, College Park, MD, May 22.

      +
    • +
    • +

      Cumming, Julie E. 2018. “The Transformative Power of Digital Tools for Music Research.” Keynote presented at the Joint meeting of the New York State-Ontario (NYS/O) and New England (NEMLA) Chapters of the Music Library Association, and the Quebec Chapter of the Canadian Association of Music Libraries, Archives and Documentation Centres (SQACBM), McGill University, Montreal, QC, November 8.

      +
    • +
    • +

      Cumming, Julie E., and Cory McKay. 2018. “Revisiting the Origins of the Italian Madrigal.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 5.

      +
    • +
    • +

      Cumming, Julie, Peter Schubert, Cory McKay, Nathaniel Condit-Schultz, and Jonathan Stuchbery. 2018b. “Contrapuntal Style: Josquin Desprez vs. Pierre de La Rue.” Presented at the Conference Pierre de la Rue (ca. 1452-1518), Mechelen, Belgium, November.

      +
    • +
    • +

      Cumming, Julie, and Zoey Cochran. 2018b. “The Questione Della Musica: Revisiting the Origins of the Italian Madrigal.” Presented at the American Musicological Society, San Antonio, Texas, November.

      +
    • +
    • +

      Garfinkle, David, and Peter Schubert. 2018. “Computer-Assisted Corpus Analysis Finds a Signature Progression in Willaert and Palestrina.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 5.

      +
    • +
    • +

      Helsen, Kate, Inga Behrendt, Elsa De Luca, Ichiro Fujinaga, Alessandra Ignesti, Debra Lacoste, and Sarah Long. 2018. “‘A Neume by Any Other Name…’: Considering Neumes Described in MEI.” Panel presented at the IMS Study Group Meeting for Cantus Planus, Linnaeus University, Växjö, Sweden, August 7.

      +
    • +
    • +

      Helsen, Kate, and Mark Daley. 2018. “Melody Models: Construction and Evolution in Office Chants.” Presented at the IMS Study Group Meeting for Cantus Planus, Linnaeus University, Växjö, Sweden, August 7.

      +
    • +
    • +

      Howes, Samuel. 2018. “Harmonic Syntax in the Instrumental Music of Frescobaldi: A Probabilistic Model.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 5.

      +
    • +
    • +

      Ju, Yaolong, and Katharine Eve Helsen. 2018. “The LMLO Goes MEI: An Exercise in Melodic Encoding Translation.” Presented at the Music Encoding Conference, University of Maryland, College Park, MD, May 22.

      +
    • +
    • +

      Laplante, Audrey, and Jean-Sebastian Sauvé. 2018. “Musicologie Numérique : Développement d’outils et de Services Centrés Sur l’utilisateur.” Presented at the Joint meeting of the New York State-Ontario (NYS/O) and New England (NEMLA) Chapters of the Music Library Association, and the Quebec Chapter of the Canadian Association of Music Libraries, Archives and Documentation Centres (SQACBM), Montreal, QC, November 8.

      +
    • +
    • +

      Lorenz, Ian. 2018. “Cadéac, Gombert, and CRIM: A New Approach to the Renaissance Imitation Mass.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 5.

      +
    • +
    • +

      McKay, Cory. 2018. “Performing Statistical Musicological Research Using JSymbolic and Machine Learning.” Presented at the International Conference on the Anatomy of Polyphonic Music around 1500, Cascais, Portugal, June.

      +
    • +
    • +

      McLennan, Zoé, and Juliette Regimbal. 2018. “Neon2: Redesigning a Web-Based MEI Neume Editor.” Presented at the SIMSSA XVII Workshop, Montréal, QC, December 1.

      +
    • +
    • +

      Nguyen, Minh Anh. 2018. “Updates to RODAN Gamera Interactive Classifier.” Presented at the Workshop on SIMSSA XVII: Infrastructure for Music Discovery, McGill University, December 1.

      +
    • +
    • +

      Nápoles López, Néstor, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Encoding Matters.” Presented at the 5th International Conference on Digital Libraries for Musicology, Paris, France, September.

      +
    • +
    • +

      Nápoles, Néstor, Claire Arthur, and Ichiro Fujinaga. 2018. “Symbolic and Audio Key Detection Based on a Hidden Markov Model.” Poster presented at the 19th International Society for Music Information Retrieval Conference, Paris, France, September 23.

      +
    • +
    • +

      Polins Pedro, Gustavo, and Yaolong Ju. 2018. “SIMSSA DB Implementation.” Presented at the Workshop on SIMSSA XVII: Infrastructure for Music Discovery, McGill University, December 1.

      +
    • +
    • +

      Rizo, David, Jorge Calvo-Zaragoza, and José M. Iñesta. 2018. “MuRET: A Music Recognition, Encoding, and Transcription Tool.” Presented at the 5th International Conference on Digital Libraries for Musicology, Institut de Recherche et Coordination Acoustique/Musique (IRCAM), Paris, France, September 28.

      +
    • +
    • +

      Sailor, Malcolm. 2018. “The Insufficiently Stimulated Ear: A Corpus Study of Dissonance Treatment from Dufay to Victoria.” Presented at the 45th Medieval and Renaissance Music Conference, Prague, Czech Republic, July 4.

      +
    • +
    • +

      Thomae, Martha E. 2018a. “Automatic Scoring up of Mensural Parts.” Presented at the Workshop on Digital Musicology, McGill University, Montreal, QC, April 27.

      +
    • +
    • +

      Thomae, Martha E. 2018b. “Guatemalan Manuscript Digitization Project.” Presented at the Workshop on SIMSSA XVII: Infrastructure for Music Discovery, McGill University, Montreal, QC, December 1.

      +
    • +
    • +

      Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2018a. “Automatic Scoring up of Music in Mensural Notation.” Presented at the Music Encoding Conference, University of Maryland, College Park, MD, May 23.

      +
    • +
    • +

      Thomae, Martha E., Julie Cumming, and Ichiro Fujinaga. 2018b. “Automatic Scoring up of Parts in Mensural Notation.” Presented at the Medieval and Renaissance Music Conference, Maynooth University, Maynooth, Ireland, July 6.

      +
    • +
    • +

      Vigliensoni, Gabriel, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2018. “Developing an Environment for Teaching Computers to Read Music.” Presented at the 1st International Workshop on Reading Music Systems (WoRMS), Conservatoire national des arts et métiers, Paris, France, September 20.

      +
    • +
    • +

      Vigliensoni, Gabriel. 2018. “Pixel.Js: A Web-Based Application for Pixel Classification and Correction.” Presented at the Workshop on SIMSSA XVII: Infrastructure for Music Discovery, McGill University, December 1.

      +
    • +
    +


    +

    2017

    +
    +
      +
    • +

      Behrendt, Inga. 2017. “Report on MEI Meeting in Graz.” Presented at the Workshop on SIMSSA XIII, Art Gallery of Nova Scotia, Halifax, NS, September 22.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017. “A Unified Approach towards Automatic Recognition of Heterogeneous Music Documents.” Presented at the Music Encoding Conference, Tours, France, May 17.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Ké Zhang, Zeyad Saleh, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017. “Music Document Layout Analysis through Machine Learning and Human Feedback.” Presented at the International Workshop on Graphic Recognition, Kyoto, Japan, November 10.

      +
    • +
    • +

      Garfinkle, David. 2017. “PatternFinder: Content-Based Music Retrieval with Music21.” Presented at the DLfM ’17 4th International Workshop on Digital Libraries for Musicology, Shanghai, China, October 28.

      +
    • +
    • +

      Ju, Yaolong, Nathaniel Condit-Schultz, Claire Arthur, and Ichiro Fujinaga. 2017. “Non-Chord Tone Identification Using Deep Neural Networks.” Presented at the 18th International Society for Music Information Retrieval Conference (Late-Breaking), Suzhou, China.

      +
    • +
    • +

      Ju, Yaolong. 2017. “Non-Chord Tone Identification.” Presented at the Workshop on SIMSSA XII, McGill University, Montreal, QC, August 7.

      +
    • +
    • +

      Lacoste, Debra (Session organizer). 2017. “Virginity in Song: Digital Tools for the Liturgy.” Presented at the Renaissance Society of America, Chicago, IL, March 30.

      +
    • +
    • +

      Lacoste, Debra, and Kate Helsen. 2017. “Cantus Hackathon: Create an Inventory with the Cantus Database in Real Time.” Presented at the International Congress on Medieval Studies, Kalamazoo, MI, May 11.

      +
    • +
    • +

      Lacoste, Debra. 2017. “Mysterious Melodies? Searching for Chant Melodies in the Cantus Database.” Presented at the “New Technologies and Renaissance Studies II: Emerging, Continuing Directions” session at the meeting of the Renaissance Society of America, Chicago, IL, April 1.

      +
    • +
    • +

      Sapp, Craig. 2017. “Verovio Humdrum Viewer: Online Music Notation Rendering and Analysis.” Keynote presented at the Workshop on SIMSSA XII, McGill University, Montreal, QC, August 7.

      +
    • +
    • +

      Thomae, Martha. 2017. “A Methodology for Encoding Mensural Music: Introducing the Mensural MEI Translator.” Invited Talk, Music Technology Group, Universitat Pompeu Fabra, Barcelona, Spain, May 22.

      +
    • +
    • +

      Vigliensoni, Gabriel, and Ichiro Fujinaga. 2017. “The Music Listening Histories Dataset.” Presented at the 18th International Society for Music Information Retrieval Conference, Suzhou, China, October 23. http://cloud.simssa.ca/index.php/s/HUvFrpFl0ErRVz9.

      +
    • +
    +


    +

    2016

    +
    +
      +
    • +

      Bain, Jennifer. 2016. “Cantus Ultimus Project.” Presented at the Workshop on SIMSSA XI, AMS/SMT, Vancouver, BC, November 3.

      +
    • +
    • +

      Cumming, Julie. 2016. “SIMSSA, Search and Analysis Axis, Fall 2016.” Presented at the Workshop on SIMSSA XI, AMS/SMT, Vancouver, BC, November 3.

      +
    • +
    • +

      De Luca, Elsa. 2016. “Encoding Old Hispanic Neumes.” Presented at the Music Encoding Conference, McGill University, Montreal, QC, May 18.

      +
    • +
    • +

      Desmond, Karen, and Peter Schubert. 2016. “2000 Years of Seeing Sounds: The Story of Music Notation.” Lecture Recital presented at the Music Encoding Conference, McGill University, Montreal, QC, May 20. https://www.youtube.com/watch?v=2GqtCqnC8SI.

      +
    • +
    • +

      Desmond, Karen. 2016a. “Circles, Dots, and Lines: Punctuating Sound in Time, ca. 1300-1350.” Invited Talk, Stanford University, February.

      +
    • +
    • +

      Desmond, Karen. 2016b. “Rhythmic Organization and the Potential for Flexibility in Digital Encodings of Machaut’s Music.” Presented at the 51st International Congress on Medieval Studies, Western Michigan University, Kalamazoo, MI, May.

      +
    • +
    • +

      Lacoste, Debra, Jennifer Bain, and Kate Helsen. 2016. “Working ‘Live’ with Cantus Ultimus.” Presented at the IMS Study Group Meeting for Cantus Planus, Dublin, Ireland, August.

      +
    • +
    • +

      Laplante, Audrey, and Ariane Legault-Venne. 2016. “Searching for Music Materials in Libraries: Discovery Tools as Seen through the Eyes of the Users.” Presented at the 65th Congress of the International Association of Music Libraries, Archives and Documentation Centres, Rome, Italy, July 7.

      +
    • +
    • +

      Laplante, Audrey. 2016. “Digitizing Music Scores and Manuscripts in Libraries: Issues and Challenges.” Presented at the 65th Congress of the International Association of Music Libraries, Archives and Documentation Centres, Rome, Italy, July 8.

      +
    • +
    • +

      Thomae, Martha E. 2016. “Digital Encoding of Mensural Music.” Presented at the Workshop on SIMSSA X, McGill University, Montreal, QC, September 24.

      +
    • +
    • +

      Vigliensoni, Gabriel, and Ichiro Fujinaga. 2016. “Automatic Music Recommendation Systems: Do Demographic, Profiling, and Contextual Features Improve Their Performance?” Poster presented at the 17th International Society for Music Information Retrieval Conference, New York, August 7.

      +
    • +
    +


    +

    2015

    +
    +
      +
    • +

      Bain, Jennifer, and Inga Behrendt. 2015. “The Optical Neume Recognition Project (ONRP) — the Development of a Search Tool for Neume Notation in Digital Images.” Poster presented at the 2nd International Workshop on Opportunities for the Automatic Pattern Recognition and Analysis of Historical Documents, “Machines and Manuscripts 2015,” Karlsruher Institut für Technologie, Institute for Data Processing and Electronics, Karlsruhe, Germany, February 19.

      +
    • +
    • +

      Cumming, Julie. 2015a. “How Has Technology Changed Musicological Research?” Paper presented at the IMS Study Group on Digital Musicology, International Association of Music Libraries, Archives and Documentation Centres/International Musicological Society Congress “Music Research in the Digital Age,” New York, June 21.

      +
    • +
    • +

      Cumming, Julie. 2015c. “Analysing Renaissance Polyphony: Taxonomy and Terminology, 1 and 2.” Paper presented at the Annual Medieval and Renaissance Music Conference, Brussels, Belgium, July 9.

      +
    • +
    • +

      Cumming, Julie. 2015d. “SIMSSA, Search and Analysis Axis, Report on Our First Year.” Paper presented at the Annual Medieval and Renaissance Music Conference, SIMSSA Workshop VII, Brussels, Belgium, July 9.

      +
    • +
    • +

      Cumming, Julie. 2015e. “‘Google Scores’ without Google.” Invited Talk presented at the Digital Humanities Group, University of Florida, Gainesville, November 16.

      +
    • +
    • +

      Fogarty, Andrew, Andrew Hankinson, and Ichiro Fujinaga. 2015. “A Browser-Based Neume Metadata Editor.” Poster presented at the Music Encoding Conference, Florence, Italy, May 18.

      +
    • +
    • +

      Helsen, Kate, Inga Behrendt, Jennifer Bain, and Anton Stingl. 2015. “The Optical Neume Recognition Project.” Paper presented at the Annual Medieval and Renaissance Music Conference, Brussels, Belgium, July 7.

      +
    • +
    • +

      Helsen, Kate, Inga Behrendt, and Jennifer Bain. 2015. “Neume Search.” Paper presented at the Annual Medieval and Renaissance Music Conference, Brussels, Belgium, July 8.

      +
    • +
    • +

      Kepper, Johannes, and Richard Sänger. 2015. “Scholarly Editions 2.0: How Digital Media Promote New Editorial Concepts.” Paper presented at the International Association of Music Libraries, Archives and Documentation Centres/International Musicological Society Congress “Music Research in the Digital Age,” New York, June 21.

      +
    • +
    • +

      Lacoste, Debra, Kate Helsen, and a panel of experts. 2015. “CANTUS Antique Fragments Roadshow, or, ‘What’s My Fragment?’” Workshop and panel discussion presented at the International Congress on Medieval Studies, Kalamazoo, MI, May 14.

      +
    • +
    • +

      Laplante, Audrey, and Ariane Legault-Venne. 2015. “La Recherche de Documents Musicaux Dans Les Outils de Découverte.” Presented at the 2015 Annual Meeting of the Québec Chapter of CAML, Grande bibliothèque, BAnQ, Montréal, QC, November 27.

      +
    • +
    • +

      Laplante, Audrey. 2015. “Vers Une Bibliothèque Numérique Collective de Partitions Musicales.” Presented at the Journée d’étude sur les bibliothèques numériques, Université de Montréal, Montréal, QC, February 26.

      +
    • +
    • +

      Roland, Perry. 2015. “MEI at 15: Reflections, Challenges, and Opportunities.” Paper presented at the International Association of Music Libraries, Archives and Documentation Centres/International Musicological Society Congress “Music Research in the Digital Age,” New York, June 21.

      +
    • +
    • +

      Rusch, René, and Ryan Bannon. 2015. “Music Analysis as a Workflow? An Automated Approach to Studying Voice Leading in the Bach Chorales.” Presented at the Workshop on digital musicology: Revisiting the collaborative process between music researchers and computer programmers, CIRMMT, McGill University, Montreal, March 20.

      +
    • +
    • +

      Swanson, Barbara. 2015. “Working with Technologies in Development: Mediating Sources, Research Needs, and Technological Capacity in Cantus Ultimus.” Presented at the Digital Humanities Forum, Dalhousie University, Halifax, NS, October 22.

      +
    • +
    +


    +

    2014

    +
    +
      +
    • +

      Bain, Jennifer. 2014. “Medieval Musicology in a Digital World: The Optical Neume Recognition Project.” Paper presented at the SSHRC-sponsored Connecting Cultures: Imagining Canada’s Future, Dalhousie University, Halifax, NS, March.

      +
    • +
    • +

      Behrendt, Inga. 2014. “The Optical Neume Recognition Project.” Poster presented at the Mitgliedertreffen der deutschsprachigen Sektion der Internationalen Gesellschaft für Studien des Gregorianischen Chorals (AISCGre), Tettenweis, Germany, October.

      +
    • +
    • +

      Helsen, Kate. 2014b. “A New Way to See Neumes: The Optical Neume Recognition Project in Action.” Paper presented at the Meeting of IMS Study Group Cantus Planus, Venice, Italy, July.

      +
    • +
    • +

      Helsen, Kate. 2014c. “The Optical Neume Recognition Project.” Poster presented at the Don Wright Faculty of Music Research Showcase, University of Western Ontario, London, ON, September.

      +
    • +
    • +

      Helsen, Kate. 2014d. “Optical Neume Recognition Project.” TED-Style Talk, Medieval Day at Western, London, ON, November.

      +
    • +
    • +

      Lacoste, Debra, and Alison Altstatt. 2014. “An EnCHANTed Evening: Singing Vespers with CANTUS (A Workshop).” Paper presented at the International Congress on Medieval Studies, Kalamazoo, MI, May 8.

      +
    • +
    • +

      Lacoste, Debra, and a panel of experts. 2014. “So You Think You Can Chant: Gregorian or Old-Roman?” Demonstration and panel discussion presented at the International Congress on Medieval Studies, Kalamazoo, MI, May 10.

      +
    • +
    • +

      Lacoste, Debra. 2014. “Old, New, and Newer Chant Databases: The CANTUS Database and CANTUS Index.” Paper presented at the Annual Meeting of the Canadian Society of Medievalists (part of the 2014 Congress of the Humanities and Social Sciences), St. Catharines, ON, May 24.

      +
    • +
    • +

      Rodin, Jesse, and Craig Sapp. 2014. “Beyond the Thematic Index: Repertory-Wide Search and Analysis.” Poster presented at the Empirical Approaches to Music Theory and Musicology session at the AMS/SMT Annual Meeting, Milwaukee, WI, November.

      +
    • +
    • +

      Rusch, René. 2014. “Figured-Bass Patterns and Their Voice-Leading Tendencies in Bach’s Four-Part Chorales.” Presented at the An afternoon of seminars, CIRMMT, McGill University, Montreal, January 21.

      +
    • +
    • +

      Schubert, Peter, and Julie Cumming. 2014. “Another Lesson from Lassus.” Paper presented at the Annual Joint meeting of the AMS/SMT, Milwaukee, WI, November 9.

      +
    • +
    • +

      Sexton, Alan. 2014. “The Optical Neume Recognition Project.” Paper presented at the The Institute for Computing and Information Sciences (iCIS), Radboud University, Nijmegen, Netherlands, April.

      +
    • +
    • +

      Swanson, Barbara. 2014. “Optical Neume Recognition: Teaching Computers to Think Like Medieval Singers.” Paper presented at the Dalhousie Postdoctoral Research Day, Dalhousie University, Halifax, NS, October.

      +
    • +
    • +

      Vigliensoni, Gabriel, and Ichiro Fujinaga. 2014. “Identifying Time Zones in a Large Dataset of Music Listening Logs.” Poster presented at the 1st International Workshop on Social Media Retrieval and Analysis, Gold Coast, Australia, July 11.

      +
    • +
    +


    +

    2013

    +
    +
      +
    • +

      Behrendt, Inga. 2013. “Neumen und Neumentrennung – Herausforderungen in der Arbeit im Optical Neume Recognition Project (ONRP).” Paper presented at the Digitale Rekonstruktionen mittelalterlicher Bibliotheken Universität, Trier, Germany, January.

      +
    • +
    • +

      Koláček, Jan. 2013. “CANTUS Index: Building an Online Network of Chant Databases for Mass and Office.” Poster presented at the Medieval and Renaissance International Music Conference, Certaldo, Italy, July.

      +
    • +
    • +

      Vigliensoni, Gabriel, Gregory Burlet, and Ichiro Fujinaga. 2013. “Optical Measure Recognition in Common Music Notation.” Poster presented at the 14th International Society for Music Information Retrieval Conference, Curitiba, Brazil, November 4.

      +
    • +
    • +

      Vigliensoni, Gabriel, John Ashley Burgoyne, and Ichiro Fujinaga. 2013. “Musicbrainz for the World: The Chilean Experience.” Poster presented at the 14th International Society for Music Information Retrieval Conference, Curitiba, Brazil, November 4. https://zenodo.org/record/1417951#.X-rvJtgzYdU.

      +
    • +
    +


    +

    2012

    +
    +
      +
    • +

      Behrendt, Inga. 2012. “The Optical Neume Recognition Project.” Poster presented at the Digital Humanities Workshop, Katholieke Universiteit Leuven, Belgium, September.

      +
    • +
    • +

      Lacoste, Debra. 2012. “Tracking the Chants of the Laurier Manuscript in the Cantus Database.” Presented at the Meeting of the Canadian Society of Medievalists, Waterloo, ON, May 27.

      +
    • +
    +


    +

    2011

    +
    +
      +
    • +

      Behrendt, Inga. 2011a. “Die älteste Notenschrift trifft auf modernste Technik: Vorstellung des „Automatic Neume Recognition Program” zur computergestützten Analyse der St. Galler Neumenotation.” Paper presented at the Music Room at the Abby of St. Gall, St. Gall, Switzerland, May.

      +
    • +
    • +

      Behrendt, Inga. 2011b. “Automatic Neume Recognition Program — Computergestützte Analyse der St. Galler Neumenotation.” Paper presented at the Internationaler Sommerkurs Gregorianik 2011, Folkwang Universität der Künste, Essen, Germany, July.

      +
    • +
    • +

      Helsen, Kate. 2011a. “The Optical Neume Recognition Project.” Poster presented at the Digital Medievalist Poster Session at the 46th International Congress on Medieval Studies, Western Michigan University, Kalamazoo, MI, May.

      +
    • +
    • +

      Helsen, Kate. 2011b. “Venite et Videte: The Optical Neume Recognition Project.” Paper presented at the 46th International Congress on Medieval Studies, Western Michigan University, Kalamazoo, MI, May.

      +
    • +
    • +

      Helsen, Kate. 2011c. “The Optical Neume Recognition Project: First Steps.” Paper presented at the Cantus Planus Conference, Vienna, August.

      +
    • +
    • +

      Koláček, Jan, and Debra Lacoste. 2011. “A New Research Interface for the Cantus Database.” Presented at the International Congress on Medieval Studies, Kalamazoo, MI, May 12.

      +
    • +
    • +

      Lacoste, Debra. 2011a. “The Reinvention of the Cantus Database: New Location, Platform and Features for Old Chants.” Presented at the Sixth Annual Colloquium of the Gregorian Institute of Cnada, Halifax, NS, Canada, August 6.

      +
    • +
    • +

      Lacoste, Debra. 2011b. “Elastic Melodies: Variants in Responsory Verses.” Presented at the IMS Study Group Meeting for Cantus Planus, Vienna, August 26.

      +
    • +
    • +

      Lacoste, Debra. 2011c. “Tracking Hymns Through the Cantus Database.” Presented at the Medieval Day, Wilfrid Laurier University, October 26.

      +
    • +
    • +

      Vigliensoni, Gabriel, John Ashley Burgoyne, Andrew Hankinson, and Ichiro Fujinaga. 2011. “Automatic Pitch Recognition in Printed Sqaure-Note Notation.” Poster presented at the 12th International Society for Music Information Retrieval Conference, Miami, USA, October 24.

      +
    • +
    +


    +
    +
    +
    +
    +
    + +
    + +
    + + + + + + \ No newline at end of file diff --git a/activities/publications/index.html b/activities/publications/index.html new file mode 100644 index 00000000..f90598a2 --- /dev/null +++ b/activities/publications/index.html @@ -0,0 +1,482 @@ + + + + + + + + + + + + + + + Publications · DDMAL + + + + + + + + + + + + + + +
    +
    +
    +

    Publications

    +
    +

    2021

    +
    +
      +
    • +

      Cumming, Julie, Cory McKay, Peter Schubert, Néstor Nápoles López, and Sylvain Margot. 2021. “Contrapuntal Style: Pierre de La Rue vs. Josquin Des Prez.” In Pierre de La Rue Studies, edited by David Burn and Honey Meconi.

      +
    • +
    • +

      Cumming, Julie, and Cory McKay. 2021. “Using Corpus Studies to Find the Origins of the Madrigal.” In Proceedings of the Conference Future Directions of Music Cognition. The Ohio State University, Columbus, US (virtual).

      +
    • +
    • +

      Hanssian, Sevag. 2021. “Music Demixing with the SliCQ Transform.” In Proceedings of the MDX Workshop. https://arxiv.org/abs/2112.05509v1.

      +
    • +
    • +

      Thomae, Martha E. 2021. “The Guatemalan Choirbooks: Facilitating Preservation, Performance, and Study of the Colonial Repertoire.” In Christian Music Traditions in the Americas, edited by Andrew Shenton and Joanna Smolko. New York: Rowman & Littlefield.

      +
    • +
    +


    +

    2020

    +
    +
      +
    • +

      Daigle, Alexandre. 2020. “Evaluation of Optical Music Recognition Software.” Master’s Thesis, Montreal, QC: McGill University.

      +
    • +
    • +

      Desmond, Karen, Andrew Hankinson, Laurent Pugin, Juliette Regimbal, Craig Sapp, and Martha E. Thomae. 2020. “Next Steps for Measuring Polyphony–A Prototype Editor for Encoding Mensural Music.” In Music Encoding Conference Proceedings 26-29 May, 2020, 121–24. Tufts University, Boston. http://dx.doi.org/10.17613/5k88-9z02.

      +
    • +
    • +

      Desmond, Karen, Emily Hopkins, Samuel Howes, and Julie E. Cumming. 2020. “Computer-Aided Analysis of Sonority in the French Motet Repertory, c. 1300-1350.” Music Theory Online 26 (4):26.4.2.

      +
    • +
    • +

      Ju, Yaolong, Sylvain Margot, Cory McKay, Luke Dahn, and Ichiro Fujinaga. 2020. “Automatic Figured Bass Annotation Using the New Bach Chorales Figured Bass Dataset.” In Proceedings of the International Society for Music Information Retrieval Conference, 640–46.

      +
    • +
    • +

      Ju, Yaolong, Sylvain Margot, Cory McKay, and Ichiro Fujinaga. 2020a. “Automatic Chord Labelling: A Figured Bass Approach.” In 7th International Conference on Digital Libraries for Musicology, 27–31. DLfM 2020. New York, NY: Association for Computing Machinery. https://doi.org/10.1145/3424911.3425513.

      +
    • +
    • +

      Ju, Yaolong, Sylvain Margot, Cory McKay, and Ichiro Fujinaga. 2020b. “Figured Bass Encodings for Bach Chorales in Various Symbolic Formats: A Case Study.” In Music Encoding Conference Proceedings 26-29 May, 2020, 71–73. Tufts University, Boston. https://hcommons.org/deposits/item/hc:31943.

      +
    • +
    • +

      Nápoles López, Néstor, Laurent Feisthauer, Florence Levé, and Ichiro Fujinaga. 2020. “On Local Keys, Modulations, and Tonicizations: A Dataset and Methodology for Evaluating Changes of Key.” In International Conference on Digital Libraries for Musicology, 18–26. Montréal, QC: Association for Computing Machinery. https://doi.org/10.1145/3424911.3425515.

      +
    • +
    • +

      Nápoles López, Néstor, and Ichiro Fujinaga. 2020. “Harmalysis: A Language for the Annotation of Roman Numerals in Symbolic Music Representations.” In Music Encoding Conference Proceedings 26-29 May, 2020, 83–85. Tufts University, Boston. https://hcommons.org/deposits/item/hc:31951.

      +
    • +
    • +

      Regimbal, Juliette, Gabriel Vigliensoni, Caitlin Hutnyk, and Ichiro Fujinaga. 2020. “IIIF-Based Lyric and Neume Editor for Square-Notation Manuscripts.” In Music Encoding Conference Proceedings 26-29 May, 2020, 15–18. Tufts University, Boston. http://dx.doi.org/10.17613/d41w-n008.

      +
    • +
    • +

      Tardón, Lorenzo J., Isabel Barbancho, Ana M. Barbancho, and Ichiro Fujinaga. 2020. “Automatic Staff Reconstruction within SIMSSA Project.” Applied Sciences 10:2468.

      +
    • +
    • +

      Thomae, Martha E., Antonio Ríos-Vila, Jorge Calvo-Zaragoza, David Rizo, and Jose M. Iñesta. 2020. “Retrieving Music Semantics from Optical Music Recognition by Machine Translation.” In Music Encoding Conference Proceedings 26-29 May, 2020, 19–24. Tufts University, Boston. http://dx.doi.org/10.17613/605z-nt78.

      +
    • +
    • +

      Upham, Finn, and Julie Cumming. 2020. “Auditory Streaming Complexity and Renaissance Mass Ordinary Cycles.” Empirical Musicology Review 15 (3–4):202–22.

      +
    • +
    +


    +

    2019

    +
    +
      +
    • +

      Alfaro-Contreras, María, Jorge Calvo-Zaragoza, and José M. Iñesta. 2019. “Approaching End-to-End Optical Music Recognition for Homophonic Scores.” In Pattern Recognition and Image Analysis, edited by Aythami Morales, Julian Fierrez, José Salvador Sánchez, and Bernardete Ribeiro, 147–58. Lecture Notes in Computer Science. Springer International Publishing.

      +
    • +
    • +

      Baró, Arnau, Pau Riba, Jorge Calvo-Zaragoza, and Alicia Fornés. 2019. “From Optical Music Recognition to Handwritten Music Recognition: A Baseline.” Pattern Recognition Letters 123 (May):1–8. https://doi.org/10.1016/j.patrec.2019.02.029.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Jose Javier Valero-Mas, and Juan R. Rico-Juan. 2019. “Recognition of Handwritten Music Symbols Using Meta-Features Obtained from Weak Classifiers Based on Nearest Neighbor.” In Proceedings of the 6th International Conference on Pattern Recognition Applications and Methods, 96–104. http://www.scitepress.org/DigitalLibrary/Link.aspx?doi=10.5220/0006120200960104.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, and Antonio-Javier Gallego. 2019. “A Selectional Auto-Encoder Approach for Document Image Binarization.” Pattern Recognition 86 (February):37–47. https://doi.org/10.1016/j.patcog.2018.08.011.

      +
    • +
    • +

      Cumming, Julie, and Evelyn Tribble. 2019. “Distributed Cognition, Improvisation and the Performing Arts in Early Modern Europe.” In History of Distributed Cognition 2: From Medieval to Renaissance Culture. Vol. 2. Edinburgh, Scotland: University of Edinburgh Press.

      +
    • +
    • +

      Cumming, Julie, and Zoey Cochran. 2019. “The Questione Della Musica: Revisiting the Origins of the Italian Madrigal.” Presented at the Medieval and Renaissance Music Conference, Basel, Switzerland, July 4.

      +
    • +
    • +

      De Luca, Elsa, Inga Behrendt, Ichiro Fujinaga, Kate Helsen, Alessandra Ignesti, Debra Lacoste, and Sarah Ann Long. 2019. “Capturing Early Notations in MEI: The Case of Old Hispanic Neumes.” Musiktheorie-Zeitschrift Für Musikwissenschaft 2:229–49.

      +
    • +
    • +

      De Luca, Elsa. 2019. “Review of: La Transición al Rito Romano En Aragón y Navarra: Fuentes, Escenarios, Tradiciones by Juan Pablo Rubio Sadia, Napoli, Editrice Domenicana Italiana, 2018.” Revista Portuguesa de Musicologia | Portuguese Journal of Musicology 6 (1):237–42.

      +
    • +
    • +

      Dixon, Simon, Polina Proutskova, Tillman Weyde, Daniel Wolff, Martin Pfleiderer, Klaus Frieler, Frank Höger, et al. 2019. “Dig That Lick: Exploring Patterns in Jazz Solos.” In Dmrn+ 14: Digital Music Research Network 2019.

      +
    • +
    • +

      Fujinaga, Ichiro, and Gabriel Vigliensoni. 2019. “The Art of Teaching Computers: The SIMSSA Optical Music Recognition Workflow System.” In Proceedings of the 27th European Signal Processing Conference, 330–34. A Coruña, Spain. https://doi.org/10.23919/EUSIPCO.2019.8902658.

      +
    • +
    • +

      Fujinaga, Ichiro. 2019. “Single Interface for Music Score Searching and Analysis (SIMSSA) Project: Optical Music Recognition Workflow for Neume Notation.” In Proceedings of the Computers and the Humanities Symposium (JinMonCom), Vol. 2019 (1):281–86. Osaka, Japan: Information Processing Society of Japan.

      +
    • +
    • +

      Gover, Matan, and Ichiro Fujinaga. 2019. “A Notation-Based Query Language for Searching in Symbolic Music.” In Proceedings of the 6th International Workshop on Digital Libraries for Musicology, 79–83. The Hague, Netherlands: ACM.

      +
    • +
    • +

      Ju, Yaolong, Samuel Howes, Cory McKay, Nathaniel Condit-Schultz, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2019. “An Interactive Workflow for Generating Chord Labels for Homorhythmic Music in Symbolic Formats.” In Proceedings of the 20th International Society for Music Information Retrieval Conference, 862–69. Delft, Netherlands.

      +
    • +
    • +

      Mateiu, Tudor N., Antonio-Javier Gallego, and Jorge Calvo-Zaragoza. 2019. “Domain Adaptation for Handwritten Symbol Recognition: A Case of Study in Old Music Manuscripts.” In Pattern Recognition and Image Analysis, edited by Aythami Morales, Julian Fierrez, José Salvador Sánchez, and Bernardete Ribeiro, 135–46. Lecture Notes in Computer Science. Springer International Publishing.

      +
    • +
    • +

      Nuñez-Alcover, Alicia, Pedro J. Ponce de León, and Jorge Calvo-Zaragoza. 2019. “Glyph and Position Classification of Music Symbols in Early Music Manuscripts.” In Pattern Recognition and Image Analysis, edited by Aythami Morales, Julian Fierrez, José Salvador Sánchez, and Bernardete Ribeiro, 159–68. Lecture Notes in Computer Science. Springer International Publishing.

      +
    • +
    • +

      Nápoles López, Néstor, Claire Arthur, and Ichiro Fujinaga. 2019. “Key-Finding Based on a Hidden Markov Model and Key Profiles.” In Proceedings of the 6th International Workshop on Digital Libraries for Musicology, 33–37. DLfM ’19. The Hague, Netherlands: ACM. https://doi.org/10.1145/3358664.3358675.

      +
    • +
    • +

      Pacha, Alexander, Jorge Calvo-Zaragoza, and Jan Hajič Jr. 2019. “Learning Notation Graph Construction for Full-Pipeline Optical Music Recognition.” In Proceedings of the 20th International Society for Music Information Retrieval Conference.

      +
    • +
    • +

      Reuse, Timothy de, and Ichiro Fujinaga. 2019a. “Pattern Clustering in Monophonic Music by Learning a Non-Linear Embedding from Human Annotations.” In Proceedings of the 20th International Society for Music Information Retrieval Conference, 761–68. Delft, Netherlands.

      +
    • +
    • +

      Reuse, Timothy de, and Ichiro Fujinaga. 2019b. “Robust Transcript Alignment on Medieval Chant Manuscripts.” In Proceedings of the 2nd International Workshop on Reading Music Systems. Delft, Netherlands.

      +
    • +
    • +

      Reuse, Timothy de. 2019. “A Machine Learning Approach to Pattern Discovery in Symbolic Music.” Master’s Thesis, Montreal, Canada: McGill University.

      +
    • +
    • +

      Thomae, Martha E., Julie E. Cumming, and Ichiro Fujinaga. 2019. “The Mensural Scoring-Up Tool.” In Proceedings of the 6th International Workshop on Digital Libraries for Musicology, 9–19. The Hague, Netherlands: ACM. https://doi.org/10.1145/3358664.3358668.

      +
    • +
    • +

      Upham, Finn. 2019. “HUMAN SUBTRACTED: SOCIAL DISTORTION OF MUSICTECHNOLOGY.” In Proceedings of the 1 St Workshop on Designing Human-Centric Music Information Research Systems, 23–25. Delft, Netherlands. https://sites.google.com/view/designinghuman-centricmir/proceedings.

      +
    • +
    +


    +

    2018

    +
    +
      +
    • +

      Arthur, Claire, Julie Cumming, and Peter Schubert. 2018a. “Aims and Methods for Examining Two-Voice Counterpoint.” In Oxford Handbook of Music and Corpus Studies, edited by Daniel Shanahan, Ashley Burgoyne, and Ian Quinn. Oxford, UK: Oxford University Press.

      +
    • +
    • +

      Arthur, Claire, Julie Cumming, and Peter Schubert. 2018b. “The Role of Structural Tones in Establishing Mode in Renaissance Two-Part Counterpoint.” In Proceedings of the 15th International Conference on Music Perception and Cognition. Montreal, QC.

      +
    • +
    • +

      Baró, Arnau, Pau Riba, Jorge Calvo-Zaragoza, and Alicia Fornés. 2018. “Optical Music Recognition by Long Short-Term Memory Networks.” In GREC 2017: Graphics Recognition. Current Trends and Evolutions, edited by Alicia Fornés and Bart Lamiroy, 81–95. Lecture Notes in Computer Science. Springer International Publishing.

      +
    • +
    • +

      Calvo-Zaragoza, J., A. H. Toselli, and E. Vidal. 2018. “Probabilistic Music-Symbol Spotting in Handwritten Scores.” In 2018 16th International Conference on Frontiers in Handwriting Recognition (ICFHR), 558–63. https://doi.org/10.1109/ICFHR-2018.2018.00103.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Francisco J. Castellanos, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Deep Neural Networks for Document Processing of Music Score Images.” Applied Sciences 8 (5):654. https://doi.org/10.3390/app8050654.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Jan Hajič, and Alexander Pacha. 2018. “Discussion Group Summary: Optical Music Recognition.” In GREC 2017: Graphics Recognition. Current Trends and Evolutions, edited by Alicia Fornés and Bart Lamiroy, 152–57. Lecture Notes in Computer Science. Springer International Publishing.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, and David Rizo. 2018. “Camera-PrIMus: Neural End-to-End Optical Music Recognition on Realistic Monophonic Scores.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 8. Paris, France.

      +
    • +
    • +

      Castellanos, Francisco J., Jorge Calvo-Zaragoza, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Document Analysis of Music Score Images with Selectional Auto Encoders.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 256–63. Paris, France. http://cloud.simssa.ca/index.php/s/FjJGQ6josKEIWNn.

      +
    • +
    • +

      Condit-Schultz, Nat, Yaolong Ju, and Ichiro Fujinaga. 2018. “A Flexible Approach to Automated Harmonic Analysis: Multiple Annotations of Chorales by Bach and Prætorius.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 66–73. Paris, France: ISMIR.

      +
    • +
    • +

      Cumming, Julie E., Cory McKay, Jonathan Stuchbery, and Ichiro Fujinaga. 2018. “Methodologies for Creating Symbolic Corpora of Western Music before 1600.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 491–98. Paris, France: ISMIR.

      +
    • +
    • +

      Cumming, Julie. 2018. “Why Should Musicologists Do Digital Humanities?” Troja: Jahrbuch Für Renaissancemusik, (Re)-Constructing Renaissance Music: Perspectives from the Digital Humanities and Music Theory, 35–46.

      +
    • +
    • +

      Desmond, Karen. 2018. Music and the Moderni, 1300-1500: The Ars Nova in Theory and Practice. Cambridge University Press.

      +
    • +
    • +

      Hajič Jr., Jan, Marta Kolárová, Alexander Pacha, and Jorge Calvo-Zaragoza. 2018. “How Current Optical Music Recognition Systems Are Becoming Useful for Digital Libraries.” In Proceedings of the 5th International Conference on Digital Libraries for Musicology, 57–61. DLfM ’18. New York, USA: ACM. https://doi.org/10.1145/3273024.3273034.

      +
    • +
    • +

      Long, Sarah Ann. 2018. “International Image Interoperability Framework; Gallica; e-Codices: Virtual Manuscript Library of Switzerland.” Journal of the American Musicological Society 71 (2):561–71.

      +
    • +
    • +

      McKay, Cory, Julie Cumming, and Ichiro Fujinaga. 2018. “JSymbolic 2.2: Extracting Features from Symbolic Music for Use in Musicological and MIR Research.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 348–54. Paris, France: ISMIR.

      +
    • +
    • +

      Nápoles López, Néstor, Gabriel Vigliensoni, and Ichiro Fujinaga. 2018. “Encoding Matters.” In Proceedings of the 5th International Conference on Digital Libraries for Musicology, 69–73. DLfM ’18. Paris, France: Association for Computing Machinery. https://doi.org/10.1145/3273024.3273027.

      +
    • +
    • +

      Pacha, Alexander, and Jorge Calvo-Zaragoza. 2018. “Optical Music Recognition in Mensural Notation with Region-Based Convolutional Neural Networks.” In Proceedings of the 19th International Society for Music Information Retrieval Conference, 240–47. Paris, France.

      +
    • +
    • +

      Rizo, David, Jorge Calvo-Zaragoza, and José M. Iñesta. 2018. “MuRET: A Music Recognition, Encoding, and Transcription Tool.” In Proceedings of the 5th International Conference on Digital Libraries for Musicology, 52–56. DLfM ’18. New York, NY, USA: ACM. https://doi.org/10.1145/3273024.3273029.

      +
    • +
    • +

      Román, Miguel A., Antonio Pertusa, and Jorge Calvo-Zaragoza. 2018. “An End-to-End Framework for Audio-to-Score Music Transcription on Monophonic Excerpts.” In Proceedings of the 19th International Society for Music Information Retrieval Conference. Paris, France.

      +
    • +
    • +

      Shaw, Rebecca. 2018. “Differentiae in the Cantus Manuscript Database.” In Proceedings of the 6th International Conference on Digital Libraries for Musicology (DLfM19).

      +
    • +
    • +

      Sober-Mira, Javier, Jorge Calvo-Zaragoza, David Rizo, and José M. Iñesta. 2018. “Pen-Based Music Document Transcription with Convolutional Neural Networks.” In 2017 14th IAPR International Conference on Document Analysis and Recognition (ICDAR), edited by Alicia Fornés and Bart Lamiroy, 71–80. Lecture Notes in Computer Science. Springer International Publishing.

      +
    • +
    • +

      Vigliensoni, Gabriel, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2018a. “An Environment for Machine Pedagogy: Learning How to Teach Computers to Read Music.” In Joint Proceedings of the ACM Intelligent User Interface Workshops: Intelligent Music Interfaces for Listening and Creation (MILC). Tokyo, Japan. http://cloud.simssa.ca/index.php/s/bBK9N6gQTpPaKkl.

      +
    • +
    • +

      Vigliensoni, Gabriel, Jorge Calvo-Zaragoza, and Ichiro Fujinaga. 2018b. “Developing an Environment for Teaching Computers to Read Music.” In Proceedings of 1st International Workshop on Reading Music Systems. Paris, France. http://cloud.simssa.ca/index.php/s/ImKlwsuLoI099uI.

      +
    • +
    +


    +

    2017

    +
    +
      +
    • +

      Barone, Michael D., Kurt Dacosta, Gabriel Vigliensoni, and Matthew H. Woolhouse. 2017. “GRAIL: Database Linking Music Metadata Across Artist, Release,and Track.” In Proceedings of the 4th International Workshop on Digital Libraries for Musicology, 49–54. Association for Computing Machinery. https://dl.acm.org/doi/10.1145/3144749.3144760.

      +
    • +
    • +

      Behrendt, Inga, Jennifer Bain, and Kate Helsen. 2017. “MEI Kodierung Der Frühesten Notation in Linienlosen Neumen.” Edited by Hannah Busch, Franz Fischer, and Patrick Sahle. Kodikologie Und Paläographie Im Digitalen Zeitalter / Codicology and Paleography in the Digital Age 4:281–96.

      +
    • +
    • +

      Calvo-Zaragoza, J., A. H. Toselli, and E. Vidal. 2017. “Handwritten Music Recognition for Mensural Notation: Formulation, Data and Baseline Results.” In 2017 14th IAPR International Conference on Document Analysis and Recognition (ICDAR), 01:1081–86. https://doi.org/10.1109/ICDAR.2017.179.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Antonio Pertusa, and Jose Oncina. 2017. “Staff-Line Detection and Removal Using a Convolutional Neural Network.” Machine Vision and Applications 28 (5):665–74. https://doi.org/10.1007/s00138-017-0844-4.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Antonio-Javier Gallego, and Antonio Pertusa. 2017. “Recognition of Handwritten Music Symbols with Convolutional Neural Codes.” In 2017 14th IAPR International Conference on Document Analysis and Recognition (ICDAR), 01:691–96. https://doi.org/10.1109/ICDAR.2017.118.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017a. “A Machine Learning Framework for the Categorization of Elements in Images of Musical Documents.” In Proceedings of the Third International on Technologies for Music Notation and Representation (TENOR 2017). La Coruña, Spain. http://cloud.simssa.ca/index.php/s/NExq8IWkue2IjCH.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017b. “One-Step Detection of Background, Staff Lines, and Symbols in Medieval Music Manuscripts with Convolutional Neural Networks.” In Proceedings of the International Society for Music Information Retrieval, 724–30. Suzhou, China. http://cloud.simssa.ca/index.php/s/JuPGmwlvAP9ckkR.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017c. “Staff-Line Detection on Grayscale Images with Pixel Classification.” In Pattern Recognition and Image Analysis, edited by Luís A. Alexandre, José Salvador Sánchez, and João M. F. Rodrigues, 279–86. Lecture Notes in Computer Science. Faro, Portugalpixel: Springer International Publishing. http://cloud.simssa.ca/index.php/s/tZswNa5gjwkoatf.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017d. “Pixelwise Binarization of Musical Documents with Convolutional Neural Networks.” In Proceedings of the 15th IAPR International Conference on Machine Vision Applications. Nagoya, Japan.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017e. “Pixelwise Classification for Music Document Analysis.” In 2017 Seventh International Conference on Image Processing Theory, Tools and Applications (IPTA), 1–6. Montreal, Canada. https://doi.org/10.1109/IPTA.2017.8310134.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Ké Zhang, Zeyad Saleh, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017. “Music Document Layout Analysis through Machine Learning and Human Feedback.” In 2017 14th IAPR International Conference on Document Analysis and Recognition (ICDAR), 02:23–24. Tokyo, Japan. https://doi.org/10.1109/ICDAR.2017.259.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, and Jose Oncina. 2017. “Recognition of Pen-Based Music Notation with Finite-State Machines.” Expert Systems with Applications 72 (April):395–406. https://doi.org/10.1016/j.eswa.2016.10.041.

      +
    • +
    • +

      Cumming, Julie. 2017a. “Du Fay’s Use of Improvisatory Techniques in Resvellies Vous et Faites Chiere Lye.” Edited by Julie Cumming, Jesse Rodin, and Massimiliano Locanto. Composition and Improvisation in Fifteenth-Century Music, a Special Issue of the RATM (Rivista Di Analisi e Teoria Musicale) 17 (2):3–23.

      +
    • +
    • +

      Cumming, Julie. 2017b. “Sources and Identity: Composers and Singers in Darnton’s Communications Circuit.” In Sources of Identity: Makers, Owners and Users of Music Sources Before 1600. Turnhout, Belgium: Brepols.

      +
    • +
    • +

      Gallego, Antonio-Javier, and Jorge Calvo-Zaragoza. 2017. “Staff-Line Removal with Selectional Auto-Encoders.” Expert Systems with Applications 89 (December):138–48. https://doi.org/10.1016/j.eswa.2017.07.002.

      +
    • +
    • +

      Lewis, David, Kevin Page, and Andrew Hankinson. 2017. “Capturing Context and Provenance of Musicology Research.” In Proceedings of the Music Encoding Conference (2015-2017), 113–18. Tours, France: Music Encoding Initiative.

      +
    • +
    • +

      Nápoles López, Néstor. 2017. “Automatic Harmonic Analysis of Classicalstring Quartets from Symbolic Score.” Master’s Thesis, Barcelona, Spain: Universitat Pompeu Fabra.

      +
    • +
    • +

      Parada-Cabaleiro, Emilia, Anton Batliner, Alice Baird, and Björn W Schuller. 2017. “The SEILS Dataset: Symbolically Encoded Scores in Modern-Early Notation for Computational Musicology.” In Proceedings of the 18th International Society for Music Information Retrieval Conference, 575–81. Suzhou, China: ISMIR.

      +
    • +
    • +

      Saleh, Zeyad, Ké Zhang, Jorge Calvo-Zaragoza, Gabriel Vigliensoni, and Ichiro Fujinaga. 2017. “Pixel.Js: Web-Based Pixel Classification Correction Platform for Ground Truth Creation.” In Proceedings of the Twelfth IAPR International Workshop on Graphics Recognition. Kyoto, Japan: Springer LNCS.

      +
    • +
    • +

      Vigliensoni, Gabriel, and Ichiro Fujinaga. 2017. “The Music Listening Histories Dataset.” In Proceedings of the 18th International Society for Music Information Retrieval Conference, 96–102. Suzhou, China. https://doi.org/10.5281/zenodo.1417499.

      +
    • +
    +


    +

    2016

    +
    +
      +
    • +

      Bell, Eamonn, and Laurent Pugin. 2016. “Approaches to Handwritten Conductor Annotation Extraction in Musical Scores.” In Proceedings of the 3rd International Workshop on Digital Libraries for Musicology, 33–36. DLfM 2016. New York, NY, USA: ACM. https://doi.org/10.1145/2970044.2970053.

      +
    • +
    • +

      Brinkman, Andrew W., Daniel Shanahan, and Craig Stuart Sapp. 2016. “Musical Stylometry, Machine Learning, and Attribution Studies : A Semi-Supervised Approach to the Works of Josquin.” In Proceedings of the 14th International Conference on Music Perception and Cognition, 91–97. San Francisco, CA, United States: ICMPC.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Gabriel Vigliensoni, and Ichiro Fujinaga. 2016. “Document Analysis for Music Scores via Machine Learning.” In Proceedings of the 3rd International Workshop on Digital Libraries for Musicology, 37–40. DLfM 2016. New York, NY, USA: ACM. https://doi.org/10.1145/2970044.2970047.

      +
    • +
    • +

      Calvo-Zaragoza, Jorge, Luisa Micó, and Jose Oncina. 2016. “Music Staff Removal with Supervised Pixel Classification.” International Journal on Document Analysis and Recognition (IJDAR) 19 (3):211–19. https://doi.org/10.1007/s10032-016-0266-2.

      +
    • +
    • +

      Lacoste, Debra, and Barbara Swanson. 2016. “Chants That Defy Classification: The Implications of Categorization in the Cantus Database.” In Proceedings of the Music Encoding Conference (2015-2017), 73–78. Montreal, QC: Music Encoding Initiative.

      +
    • +
    • +

      Pedersoli, Fabrizio, and George Tzanetakis. 2016. “Document Segmentation and Classification into Musical Scores and Text.” International Journal on Document Analysis and Recognition (IJDAR) 19 (4):289–304.

      +
    • +
    • +

      Vigliensoni, Gabriel, and Ichiro Fujinaga. 2016. “Automatic Music Recommendation Systems: Do Demographic, Profiling, and Contextual Features Improve Their Performance?” In Proceedings of the 17th International Society for Music Information Retrieval Conference, 94–100. New York City, USA.

      +
    • +
    +


    +

    2015

    +
    +
      +
    • +

      Cumming, Julie, and Peter Schubert. 2015. “The Origins of Pervasive Imitation.” In The Cambridge History of Fifteenth-Century Music, edited by Anna Maria Busse Berger and Jesse Rodin. Cambridge, UK: Cambridge University Press.

      +
    • +
    • +

      Di Bacco, Giuliano, and Perry Roland. 2015. “MEI for Mensural Notation in the Thesaurus Musicarum Latinarum.” In Proceedings of the Music Encoding Conference (2015-2017), 25–36. Florence, Italy: Music Encoding Initiative.

      +
    • +
    • +

      Horwitz, Andrew, Andrew Hankinson, and Ichiro Fujinaga. 2015. “A Browser-Based MEI Editor.” Poster presented at the Music Encoding Conference, Florence, Italy, May 18.

      +
    • +
    • +

      Schubert, Peter, and Julie Cumming. 2015. “Another Lesson from Lassus: Quantifying Contrapuntal Repetition in the Duos of 1577.” Early Music 43 (4).

      +
    • +
    +


    +

    2014

    +
    +
      +
    • +

      Bain, Jennifer, Inga Behrendt, and Katherine Helsen. 2014. “Linienlose Neumen, Neumentrennung und Repräsentation von Neumen mit MEI Schema –Herausforderungen in der Arbeit im Optical Neume Recognition Project (ONRP).” In Digitale Rekonstruktionen mittelalterlicher Bibliotheken, edited by Sabine Philippi and Philipp Vanscheidt, 119–32. Trierer Beiträge zu den historischen Kulturwissenschaften 12. Wiesbaden: Ludwig Reichert.

      +
    • +
    • +

      Cumming, Julie. 2014. “The Past Is Not Over: Special Collections in the Digital Age.” In Meetings with Books: Symposium on Special Collections in the 21st Century. With a Tribute to Raymond Klibansky and an Illustrated Survey of McGill Library Special Collections, edited by Jillian Tomm and Richard Virr, 109–14. Montreal: McGill University Library.

      +
    • +
    • +

      Lacoste, Debra, and Jan Koláček. 2014. “CANTUS for Office and Mass: Building an Online Network of Chant Databases.” In Cantus Planus: Study Group of the International Musicological Society – Papers Read at the 18th Meeting, Venice, Italy, 2014. Venice, Italy.

      +
    • +
    • +

      Pugin, Laurent, and Rodolfo Zitellini. 2014. “Verovio: A Library for Typesetting MEI.” In Proceedings of the Music Encoding Conference (2013-2014). University of Virginia, Charlottesville, VA: Music Encoding Initiative.

      +
    • +
    • +

      Vigliensoni, Gabriel, and Ichiro Fujinaga. 2014. “Identifying Time Zones in a Large Dataset of Music Listening Logs.” In Proceedings of the International Workshop on Social Media Retrieval and Analysis, 27–32. Gold Coast, Australia.

      +
    • +
    +


    +

    2013

    +
    +
      +
    • +

      Gómez-Pérez, Asunción, Daniel Vila-Suero, Elena Montiel-Ponsoda, Jorge Gracia, and Guadalupe Aguado-de-Cea. 2013. “Guidelines for Multilingual Linked Data.” In Proceedings of the 3rd International Conference on Web Intelligence, Mining and Semantics, 1–12.

      +
    • +
    • +

      Lacoste, Debra. 2013. “CANTUS: A Database for Latin Ecclesiastical Chant - Progress Report (2009).” In Papers Read at the 15th Meeting of the IMS Study Group “Cantus Planus”, DobogókÅ/Hungary, 2009. Aug. 23-29, 939–43. Lions Bay, BC, Canada: The Institute of Medieval Music.

      +
    • +
    • +

      Vigliensoni, Gabriel, Gregory Burlet, and Ichiro Fujinaga. 2013. “Optical Measure Recognition in Common Music Notation.” In Proceedings of the International Society for Music Information Retrieval Conference, 125–30. Curitiba, Brazil.

      +
    • +
    • +

      Vigliensoni, Gabriel, John Ashley Burgoyne, and Ichiro Fujinaga. 2013. “Musicbrainz for the World: The Chilean Experience.” In Proceedings of the 14th International Society for Music Information Retrieval Conference, 131–36. Curitiba, Brazil. https://zenodo.org/record/1417951#.X-rvJtgzYdU.

      +
    • +
    +


    +

    2012

    +
    +
      +
    • +

      Hankinson, Andrew, John Ashley Burgoyne, Gabriel Vigliensoni, Alastair Porter, Jessica Thompson, Wendy Liu, Remi Chiu, and Ichiro Fujinaga. 2012. “Digital Document Image Retrieval Using Optical Music Recognition.” In Proceedings of the Conference of the International Society for Music Information Retrieval. Porto, Portugal.

      +
    • +
    • +

      Hankinson, Andrew, John Ashley Burgoyne, Gabriel Vigliensoni, and Ichiro Fujinaga. 2012. “Creating a Large-Scale Searchable Digital Collection from Printed Music Materials.” In Proceedings of the World Wide Web Conference, 903–8. Lyon, FR.

      +
    • +
    • +

      Lacoste, Debra, and Jan Koláček. 2012. “Renewal, Revival, Rejuvenation: A New Vision for the Cantus Database.” In Cantus Planus: Study Group of the International Musicological Society - Papers Read at the 16th Meeting, Vienna, Austria, 2011, 202–9. Vienna: Verlag Brüder Hollinek.

      +
    • +
    +


    +

    2011

    +
    +
      +
    • +

      Helsen, Kate, and Debra Lacoste. 2011. “A Report on the Encoding of Melodic Incipits in the Cantus Database with the Music Font ‘’Volpiano.’” Plainsong & Medieval Music 20 (1):51–65.

      +
    • +
    • +

      Lacoste, Debra. 2011. “The Cantus Database: Mining for Medieval Chant Traditions.” In Digital Medievalist. Vol. 7. Barnard College.

      +
    • +
    • +

      Vigliensoni, Gabriel, John Ashley Burgoyne, Andrew Hankinson, and Ichiro Fujinaga. 2011. “Automatic Pitch Detection in Printed Square Notation.” In Proceedings of the International Society for Music Information Retrieval Conference, 423–28. Miami, FL.

      +
    • +
    • +

      Vigliensoni, Gabriel. 2011. “Touchless Gestural Control of Concatenative Sound Synthesis.” Master’s Thesis, Montreal, Canada: McGill University.

      +
    • +
    +


    +

    2005

    +
    +
      +
    • Sapp, Craig Stuart. 2005. “Online Database of Scores in the Humdrum File Format.” In Proceedings of the 6th International Society for Music Information Retrieval Conference, 664–65. London, UK: ISMIR.
    • +
    +


    +
    +
    +
    +
    +
    + +
    + +
    + + + + + + \ No newline at end of file diff --git a/assets/HTML to Markdown Converter - Markdown Editor - Online - Browserling Web Developer Tools.htm b/assets/HTML to Markdown Converter - Markdown Editor - Online - Browserling Web Developer Tools.htm index d309fccc..695305a9 100644 --- a/assets/HTML to Markdown Converter - Markdown Editor - Online - Browserling Web Developer Tools.htm +++ b/assets/HTML to Markdown Converter - Markdown Editor - Online - Browserling Web Developer Tools.htm @@ -1,44 +1,31 @@ - - + + + HTML to Markdown Converter - Markdown Editor - Online - Browserling Web Developer Tools - - - - - - - - - - - + - - - - - + - - - - - - - - - - - - - + + + + +
    @@ -75,10 +55,10 @@
    +
    +
    EN
    +
    + --> + + +
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    Convert HTML to Markdown

    -

    web developer and programmer tools

    -
    -
    - -World's simplest HTML to Markdown transformer. Just paste your HTML in the form below, press Convert to Markdown button, and you get Markdown. Press button, get Markdown. No ads, nonsense or garbage. - -
    -
    -
    -
    -
    - Announcement: We just launched math tools for developers. Check it out! -
    -
    - -
    -
    - -
    -
    - -
    -
    - (undo) -
    -
    - -
    - -
    -

    Need to convert Markdown to HTML instead?

    -

    Use the Markdown to HTML Converter!

    -
    - -
    -

    Looking for more programming tools? Try these!

    -

    URL Encoder

    -

    URL Decoder

    -

    URL Parser

    -

    HTML Encoder

    -

    HTML Decoder

    -

    Base64 Encoder

    -

    Base64 Decoder

    -

    HTML Prettifier

    -

    HTML Minifier

    -

    JSON Prettifier

    -

    JSON Minifier

    -

    JSON Escaper

    -

    JSON Unescaper

    -

    JSON Validator

    -

    JS Prettifier

    -

    JS Minifier

    -

    JS Validator

    -

    CSS Prettify

    -

    CSS Minifier

    -

    XML Prettifier

    -

    XML Minifier

    -

    XML to JSON Converter

    -

    JSON to XML Converter

    -

    XML to CSV Converter

    -

    CSV to XML Converter

    -

    XML to YAML Converter

    -

    YAML to XML Converter

    -

    YAML to TSV Converter

    -

    TSV to YAML Converter

    -

    XML to TSV Converter

    -

    TSV to XML Converter

    -

    XML to Text Converter

    -

    JSON to CSV Converter

    -

    CSV to JSON Converter

    -

    JSON to YAML Converter

    -

    YAML to JSON Converter

    -

    JSON to TSV Converter

    -

    TSV to JSON Converter

    -

    JSON to Text Converter

    -

    CSV to YAML Converter

    -

    YAML to CSV Converter

    -

    TSV to CSV Converter

    -

    CSV to TSV Converter

    -

    CSV to Text Columns Converter

    -

    Text Columns to CSV Converter

    -

    TSV to Text Columns Converter

    -

    Text Columns to TSV Converter

    -

    CSV Transposer

    -

    CSV Columns to Rows Converter

    -

    CSV Rows to Columns Converter

    -

    CSV Column Swapper

    -

    CSV Column Exporter

    -

    CSV Column Replacer

    -

    CSV Column Prepender

    -

    CSV Column Appender

    -

    CSV Column Inserter

    -

    CSV Column Deleter

    -

    CSV Delimiter Changer

    -

    TSV Transposer

    -

    TSV Columns to Rows Converter

    -

    TSV Rows to Columns Converter

    -

    TSV Column Swapper

    -

    TSV Column Exporter

    -

    TSV Column Replacer

    -

    TSV Column Prepender

    -

    TSV Column Appender

    -

    TSV Column Inserter

    -

    TSV Column Deleter

    -

    TSV Delimiter Changer

    -

    Delimited Column Exporter

    -

    Delimited Column Deleter

    -

    Delimited Column Replacer

    -

    Text Transposer

    -

    Text Columns to Rows Converter

    -

    Text Rows to Columns Converter

    -

    Text Column Swapper

    -

    Text Column Delimiter Changer

    -

    HTML to Markdown Converter

    -

    Markdown to HTML Converter

    -

    HTML to Jade Converter

    -

    Jade to HTML Converter

    -

    BBCode to HTML Converter

    -

    BBCode to Jade Converter

    -

    BBCode to Text Converter

    -

    HTML to Text Converter

    -

    HTML Stripper

    -

    Text to HTML Entities Converter

    -

    UNIX time to UTC time Converter

    -

    UTC time to UNIX time Converter

    -

    IP to Binary Converter

    -

    Binary to IP Converter

    -

    IP to Decimal Converter

    -

    Octal to IP Converter

    -

    IP to Octal Converter

    -

    Decimal to IP Converter

    -

    IP to Hex Converter

    -

    Hex to IP Converter

    -

    IP Address Sorter

    -

    MySQL Password Generator

    -

    MariaDB Password Generator

    -

    Postgres Password Generator

    -

    Bcrypt Password Generator

    -

    Bcrypt Password Checker

    -

    Scrypt Password Generator

    -

    Scrypt Password Checker

    -

    ROT13 Encoder/Decoder

    -

    ROT47 Encoder/Decoder

    -

    Punycode Encoder

    -

    Punycode Decoder

    -

    Base32 Encoder

    -

    Base32 Decoder

    -

    Base58 Encoder

    -

    Base58 Decoder

    -

    Ascii85 Encoder

    -

    Ascii85 Decoder

    -

    UTF8 Encoder

    -

    UTF8 Decoder

    -

    UTF16 Encoder

    -

    UTF16 Decoder

    -

    Uuencoder

    -

    Uudecoder

    -

    Morse Code Encoder

    -

    Morse Code Decoder

    -

    XOR Encryptor

    -

    XOR Decryptor

    -

    AES Encryptor

    -

    AES Decryptor

    -

    RC4 Encryptor

    -

    RC4 Decryptor

    -

    DES Encryptor

    -

    DES Decryptor

    -

    Triple DES Encryptor

    -

    Triple DES Decryptor

    -

    Rabbit Encryptor

    -

    Rabbit Decryptor

    -

    NTLM Hash Calculator

    -

    MD2 Hash Calculator

    -

    MD4 Hash Calculator

    -

    MD5 Hash Calculator

    -

    MD6 Hash Calculator

    -

    RipeMD128 Hash Calculator

    -

    RipeMD160 Hash Calculator

    -

    RipeMD256 Hash Calculator

    -

    RipeMD320 Hash Calculator

    -

    SHA1 Hash Calculator

    -

    SHA2 Hash Calculator

    -

    SHA224 Hash Calculator

    -

    SHA256 Hash Calculator

    -

    SHA384 Hash Calculator

    -

    SHA512 Hash Calculator

    -

    SHA3 Hash Calculator

    -

    CRC16 Hash Calculator

    -

    CRC32 Hash Calculator

    -

    Adler32 Hash Calculator

    -

    Whirlpool Hash Calculator

    -

    All Hashes Calculator

    -

    Seconds to H:M:S Converter

    -

    H:M:S to Seconds Converter

    -

    Seconds to Human Readable Time

    -

    Binary to Octal Converter

    -

    Binary to Decimal Converter

    -

    Binary to Hex Converter

    -

    Octal to Binary Converter

    -

    Octal to Decimal Converter

    -

    Octal to Hex Converter

    -

    Decimal to Binary Converter

    -

    Decimal to Octal Converter

    -

    Decimal to Hex Converter

    -

    Hex to Binary Converter

    -

    Hex to Octal Converter

    -

    Hex to Decimal Converter

    -

    Decimal to BCD Converter

    -

    BCD to Decimal Converter

    -

    Octal to BCD Converter

    -

    BCD to Octal Converter

    -

    Hex to BCD Converter

    -

    BCD to Hex Converter

    -

    Binary to Gray Converter

    -

    Gray to Binary Converter

    -

    Octal to Gray Converter

    -

    Gray to Octal Converter

    -

    Decimal to Gray Converter

    -

    Gray to Decimal Converter

    -

    Hexadecimal to Gray Converter

    -

    Gray to Hexadecimal Converter

    -

    Binary Sum Calculator

    -

    Binary Product Calculator

    -

    Binary Bitwise AND Calculator

    -

    Binary Bitwise NAND Calculator

    -

    Binary Bitwise OR Calculator

    -

    Binary Bitwise NOR Calculator

    -

    Binary Bitwise XOR Calculator

    -

    Binary Bitwise XNOR Calculator

    -

    Binary Bitwise NOT Calculator

    -

    Binary Bit Inverter

    -

    Binary Bit Reverser

    -

    Binary Number Rotator

    -

    Binary Bit Rotator to the Left

    -

    Binary Bit Rotator to the Right

    -

    Number Base Converter

    -

    Roman to Decimal Converter

    -

    Decimal to Roman Converter

    -

    Numbers to Words Converter

    -

    Words to Numbers Converter

    -

    Round Numbers Up

    -

    Round Numbers Down

    -

    UTF8 to Hex Converter

    -

    Hex to UTF8 Converter

    -

    Text to ASCII Codes Converter

    -

    ASCII to Text Converter

    -

    Text to Binary Converter

    -

    Binary to Text Converter

    -

    Text to Octal Converter

    -

    Octal to Text Converter

    -

    Text to Decimal Converter

    -

    Decimal to Text Converter

    -

    Text to Hex Converter

    -

    Hex to Text Converter

    -

    Text to Lowercase Converter

    -

    Text to Uppercase Converter

    -

    Text to Randomcase Converter

    -

    Text to Titlecase Converter

    -

    Capitalize Words in Text

    -

    Text Case Inverter

    -

    Truncate Text Lines

    -

    Trim Text Lines

    -

    Spaces to Tabs Converter

    -

    Tabs to Spaces Converter

    -

    Spaces to Newlines Converter

    -

    Newlines to Spaces Converter

    -

    Character Accent Remover

    -

    Extra Whitespaces Remover

    -

    All Whitespaces Remover

    -

    Punctuation Mark Remover

    -

    Thousands Separator Adder

    -

    Backslash Remover

    -

    Backslash Adder

    -

    Text Transformer

    -

    Text Repeater

    -

    Text Replacer

    -

    Text Reverser

    -

    Text Rotate

    -

    Text Character Rotator to the Left

    -

    Text Character Rotator to the Right

    -

    Text Length Calculator

    -

    Alphabetic Text Sorter

    -

    Numeric Text Sorter

    -

    Text by Length Sorter

    -

    Text From Regex Generator

    -

    Center Text

    -

    Right-Align Text

    -

    Left-Pad Text

    -

    Right-Pad Text

    -

    Justify Text

    -

    Text Column Formatter

    -

    Regex Match Extractor

    -

    Regex Match Replacer

    -

    Email Extractor

    -

    URL Extractor

    -

    Number Extractor

    -

    List Merger

    -

    List Zipper

    -

    List Intersection

    -

    List Difference

    -

    Printf Formatter

    -

    Text Grep

    -

    Text Head

    -

    Text Tail

    -

    Line Range Extractor

    -

    Word Sorter

    -

    Word Wrapper

    -

    Word Splitter

    -

    Add Line Numbers

    -

    Add Line Prefixes

    -

    Add Line Suffixes

    -

    Append Prefix and Suffix

    -

    Find Longest Text Line

    -

    Find Shortest Text Line

    -

    Duplicate Line Remover

    -

    Empty Line Remover

    -

    Text Line Randomizer

    -

    Letter Randomizer

    -

    Text Line Joiner

    -

    String Splitter

    -

    Text Line Reverser

    -

    Text Line Filter

    -

    Number of Letters in Text Counter

    -

    Number of Words in Text Counter

    -

    Number of Lines in Text Counter

    -

    Number of Paragraphs in Text Counter

    -

    Letter Frequency Calculator

    -

    Word Frequency Calculator

    -

    Phrase Frequency Calculator

    -

    Text Statistics

    -

    Random Element Picker

    -

    Random JSON Generator

    -

    Random XML Generator

    -

    Random YAML Generator

    -

    Random CSV Generator

    -

    Random TSV Generator

    -

    Random Password Generator

    -

    Random String Generator

    -

    Random Number Generator

    -

    Random Fraction Generator

    -

    Random Bin Generator

    -

    Random Oct Generator

    -

    Random Dec Generator

    -

    Random Hex Generator

    -

    Random Byte Generator

    -

    Random IP Generator

    -

    Random MAC Generator

    -

    Random UUID Generator

    -

    Random GUID Generator

    -

    Random Date Generator

    -

    Random Time Generator

    -

    Prime Number Generator

    -

    Fibonacci Number Generator

    -

    Pi Digit Generator

    -

    E Digit Generator

    -

    Decimal to Scientific Converter

    -

    Scientific to Decimal Converter

    -

    JPG to PNG Converter

    -

    PNG to JPG Converter

    -

    GIF to PNG Converter

    -

    GIF to JPG Converter

    -

    BMP to PNG Converter

    -

    BMP to JPG Converter

    -

    Image to Base64 Converter

    -

    File to Base64 Converter

    -

    JSON to Base64 Converter

    -

    XML to Base64 Converter

    -

    Hex to RGB Converter

    -

    RGB to Hex Converter

    -

    CMYK to RGB Converter

    -

    RGB to CMYK Converter

    -

    CMYK to Hex Converter

    -

    Hex to CMYK Converter

    -

    IDN Encoder

    -

    IDN Decoder

    -

    Miles to Kilometers Converter

    -

    Kilometers to Miles Converter

    -

    Celsius to Fahrenheit Converter

    -

    Fahrenheit to Celsius Converter

    -

    Radians to Degrees Converter

    -

    Degrees to Radians Converter

    -

    Pounds to Kilograms Converter

    -

    Kilograms to Pounds Converter

    -

    My IP Address

    -

    All Tools

    +
    +
    +
    +
    +
    +
    +
    +
    -
    - Pro tip: You can use ?input=text query argument to pass text to tools. +
    +

    Convert HTML to Markdown

    +

    web developer and programmer tools

    +
    +
    + World's simplest HTML to Markdown transformer. Just paste your HTML in the form below, press Convert to Markdown button, and you get Markdown. Press button, get Markdown. No ads, nonsense or garbage. +
    +
    +
    +
    +
    + Announcement: We just launched math tools for developers. Check it out! +
    +
    +
    +
    + +
    +
    + +
    +
    + (undo) +
    +
    +
    +
    +

    Need to convert Markdown to HTML instead?

    +

    Use the Markdown to HTML Converter!

    +
    +
    +

    Looking for more programming tools? Try these!

    +

    URL Encoder

    +

    URL Decoder

    +

    URL Parser

    +

    HTML Encoder

    +

    HTML Decoder

    +

    Base64 Encoder

    +

    Base64 Decoder

    +

    HTML Prettifier

    +

    HTML Minifier

    +

    JSON Prettifier

    +

    JSON Minifier

    +

    JSON Escaper

    +

    JSON Unescaper

    +

    JSON Validator

    +

    JS Prettifier

    +

    JS Minifier

    +

    JS Validator

    +

    CSS Prettify

    +

    CSS Minifier

    +

    XML Prettifier

    +

    XML Minifier

    +

    XML to JSON Converter

    +

    JSON to XML Converter

    +

    XML to CSV Converter

    +

    CSV to XML Converter

    +

    XML to YAML Converter

    +

    YAML to XML Converter

    +

    YAML to TSV Converter

    +

    TSV to YAML Converter

    +

    XML to TSV Converter

    +

    TSV to XML Converter

    +

    XML to Text Converter

    +

    JSON to CSV Converter

    +

    CSV to JSON Converter

    +

    JSON to YAML Converter

    +

    YAML to JSON Converter

    +

    JSON to TSV Converter

    +

    TSV to JSON Converter

    +

    JSON to Text Converter

    +

    CSV to YAML Converter

    +

    YAML to CSV Converter

    +

    TSV to CSV Converter

    +

    CSV to TSV Converter

    +

    CSV to Text Columns Converter

    +

    Text Columns to CSV Converter

    +

    TSV to Text Columns Converter

    +

    Text Columns to TSV Converter

    +

    CSV Transposer

    +

    CSV Columns to Rows Converter

    +

    CSV Rows to Columns Converter

    +

    CSV Column Swapper

    +

    CSV Column Exporter

    +

    CSV Column Replacer

    +

    CSV Column Prepender

    +

    CSV Column Appender

    +

    CSV Column Inserter

    +

    CSV Column Deleter

    +

    CSV Delimiter Changer

    +

    TSV Transposer

    +

    TSV Columns to Rows Converter

    +

    TSV Rows to Columns Converter

    +

    TSV Column Swapper

    +

    TSV Column Exporter

    +

    TSV Column Replacer

    +

    TSV Column Prepender

    +

    TSV Column Appender

    +

    TSV Column Inserter

    +

    TSV Column Deleter

    +

    TSV Delimiter Changer

    +

    Delimited Column Exporter

    +

    Delimited Column Deleter

    +

    Delimited Column Replacer

    +

    Text Transposer

    +

    Text Columns to Rows Converter

    +

    Text Rows to Columns Converter

    +

    Text Column Swapper

    +

    Text Column Delimiter Changer

    +

    HTML to Markdown Converter

    +

    Markdown to HTML Converter

    +

    HTML to Jade Converter

    +

    Jade to HTML Converter

    +

    BBCode to HTML Converter

    +

    BBCode to Jade Converter

    +

    BBCode to Text Converter

    +

    HTML to Text Converter

    +

    HTML Stripper

    +

    Text to HTML Entities Converter

    +

    UNIX time to UTC time Converter

    +

    UTC time to UNIX time Converter

    +

    IP to Binary Converter

    +

    Binary to IP Converter

    +

    IP to Decimal Converter

    +

    Octal to IP Converter

    +

    IP to Octal Converter

    +

    Decimal to IP Converter

    +

    IP to Hex Converter

    +

    Hex to IP Converter

    +

    IP Address Sorter

    +

    MySQL Password Generator

    +

    MariaDB Password Generator

    +

    Postgres Password Generator

    +

    Bcrypt Password Generator

    +

    Bcrypt Password Checker

    +

    Scrypt Password Generator

    +

    Scrypt Password Checker

    +

    ROT13 Encoder/Decoder

    +

    ROT47 Encoder/Decoder

    +

    Punycode Encoder

    +

    Punycode Decoder

    +

    Base32 Encoder

    +

    Base32 Decoder

    +

    Base58 Encoder

    +

    Base58 Decoder

    +

    Ascii85 Encoder

    +

    Ascii85 Decoder

    +

    UTF8 Encoder

    +

    UTF8 Decoder

    +

    UTF16 Encoder

    +

    UTF16 Decoder

    +

    Uuencoder

    +

    Uudecoder

    +

    Morse Code Encoder

    +

    Morse Code Decoder

    +

    XOR Encryptor

    +

    XOR Decryptor

    +

    AES Encryptor

    +

    AES Decryptor

    +

    RC4 Encryptor

    +

    RC4 Decryptor

    +

    DES Encryptor

    +

    DES Decryptor

    +

    Triple DES Encryptor

    +

    Triple DES Decryptor

    +

    Rabbit Encryptor

    +

    Rabbit Decryptor

    +

    NTLM Hash Calculator

    +

    MD2 Hash Calculator

    +

    MD4 Hash Calculator

    +

    MD5 Hash Calculator

    +

    MD6 Hash Calculator

    +

    RipeMD128 Hash Calculator

    +

    RipeMD160 Hash Calculator

    +

    RipeMD256 Hash Calculator

    +

    RipeMD320 Hash Calculator

    +

    SHA1 Hash Calculator

    +

    SHA2 Hash Calculator

    +

    SHA224 Hash Calculator

    +

    SHA256 Hash Calculator

    +

    SHA384 Hash Calculator

    +

    SHA512 Hash Calculator

    +

    SHA3 Hash Calculator

    +

    CRC16 Hash Calculator

    +

    CRC32 Hash Calculator

    +

    Adler32 Hash Calculator

    +

    Whirlpool Hash Calculator

    +

    All Hashes Calculator

    +

    Seconds to H:M:S Converter

    +

    H:M:S to Seconds Converter

    +

    Seconds to Human Readable Time

    +

    Binary to Octal Converter

    +

    Binary to Decimal Converter

    +

    Binary to Hex Converter

    +

    Octal to Binary Converter

    +

    Octal to Decimal Converter

    +

    Octal to Hex Converter

    +

    Decimal to Binary Converter

    +

    Decimal to Octal Converter

    +

    Decimal to Hex Converter

    +

    Hex to Binary Converter

    +

    Hex to Octal Converter

    +

    Hex to Decimal Converter

    +

    Decimal to BCD Converter

    +

    BCD to Decimal Converter

    +

    Octal to BCD Converter

    +

    BCD to Octal Converter

    +

    Hex to BCD Converter

    +

    BCD to Hex Converter

    +

    Binary to Gray Converter

    +

    Gray to Binary Converter

    +

    Octal to Gray Converter

    +

    Gray to Octal Converter

    +

    Decimal to Gray Converter

    +

    Gray to Decimal Converter

    +

    Hexadecimal to Gray Converter

    +

    Gray to Hexadecimal Converter

    +

    Binary Sum Calculator

    +

    Binary Product Calculator

    +

    Binary Bitwise AND Calculator

    +

    Binary Bitwise NAND Calculator

    +

    Binary Bitwise OR Calculator

    +

    Binary Bitwise NOR Calculator

    +

    Binary Bitwise XOR Calculator

    +

    Binary Bitwise XNOR Calculator

    +

    Binary Bitwise NOT Calculator

    +

    Binary Bit Inverter

    +

    Binary Bit Reverser

    +

    Binary Number Rotator

    +

    Binary Bit Rotator to the Left

    +

    Binary Bit Rotator to the Right

    +

    Number Base Converter

    +

    Roman to Decimal Converter

    +

    Decimal to Roman Converter

    +

    Numbers to Words Converter

    +

    Words to Numbers Converter

    +

    Round Numbers Up

    +

    Round Numbers Down

    +

    UTF8 to Hex Converter

    +

    Hex to UTF8 Converter

    +

    Text to ASCII Codes Converter

    +

    ASCII to Text Converter

    +

    Text to Binary Converter

    +

    Binary to Text Converter

    +

    Text to Octal Converter

    +

    Octal to Text Converter

    +

    Text to Decimal Converter

    +

    Decimal to Text Converter

    +

    Text to Hex Converter

    +

    Hex to Text Converter

    +

    Text to Lowercase Converter

    +

    Text to Uppercase Converter

    +

    Text to Randomcase Converter

    +

    Text to Titlecase Converter

    +

    Capitalize Words in Text

    +

    Text Case Inverter

    +

    Truncate Text Lines

    +

    Trim Text Lines

    +

    Spaces to Tabs Converter

    +

    Tabs to Spaces Converter

    +

    Spaces to Newlines Converter

    +

    Newlines to Spaces Converter

    +

    Character Accent Remover

    +

    Extra Whitespaces Remover

    +

    All Whitespaces Remover

    +

    Punctuation Mark Remover

    +

    Thousands Separator Adder

    +

    Backslash Remover

    +

    Backslash Adder

    +

    Text Transformer

    +

    Text Repeater

    +

    Text Replacer

    +

    Text Reverser

    +

    Text Rotate

    +

    Text Character Rotator to the Left

    +

    Text Character Rotator to the Right

    +

    Text Length Calculator

    +

    Alphabetic Text Sorter

    +

    Numeric Text Sorter

    +

    Text by Length Sorter

    +

    Text From Regex Generator

    +

    Center Text

    +

    Right-Align Text

    +

    Left-Pad Text

    +

    Right-Pad Text

    +

    Justify Text

    +

    Text Column Formatter

    +

    Regex Match Extractor

    +

    Regex Match Replacer

    +

    Email Extractor

    +

    URL Extractor

    +

    Number Extractor

    +

    List Merger

    +

    List Zipper

    +

    List Intersection

    +

    List Difference

    +

    Printf Formatter

    +

    Text Grep

    +

    Text Head

    +

    Text Tail

    +

    Line Range Extractor

    +

    Word Sorter

    +

    Word Wrapper

    +

    Word Splitter

    +

    Add Line Numbers

    +

    Add Line Prefixes

    +

    Add Line Suffixes

    +

    Append Prefix and Suffix

    +

    Find Longest Text Line

    +

    Find Shortest Text Line

    +

    Duplicate Line Remover

    +

    Empty Line Remover

    +

    Text Line Randomizer

    +

    Letter Randomizer

    +

    Text Line Joiner

    +

    String Splitter

    +

    Text Line Reverser

    +

    Text Line Filter

    +

    Number of Letters in Text Counter

    +

    Number of Words in Text Counter

    +

    Number of Lines in Text Counter

    +

    Number of Paragraphs in Text Counter

    +

    Letter Frequency Calculator

    +

    Word Frequency Calculator

    +

    Phrase Frequency Calculator

    +

    Text Statistics

    +

    Random Element Picker

    +

    Random JSON Generator

    +

    Random XML Generator

    +

    Random YAML Generator

    +

    Random CSV Generator

    +

    Random TSV Generator

    +

    Random Password Generator

    +

    Random String Generator

    +

    Random Number Generator

    +

    Random Fraction Generator

    +

    Random Bin Generator

    +

    Random Oct Generator

    +

    Random Dec Generator

    +

    Random Hex Generator

    +

    Random Byte Generator

    +

    Random IP Generator

    +

    Random MAC Generator

    +

    Random UUID Generator

    +

    Random GUID Generator

    +

    Random Date Generator

    +

    Random Time Generator

    +

    Prime Number Generator

    +

    Fibonacci Number Generator

    +

    Pi Digit Generator

    +

    E Digit Generator

    +

    Decimal to Scientific Converter

    +

    Scientific to Decimal Converter

    +

    JPG to PNG Converter

    +

    PNG to JPG Converter

    +

    GIF to PNG Converter

    +

    GIF to JPG Converter

    +

    BMP to PNG Converter

    +

    BMP to JPG Converter

    +

    Image to Base64 Converter

    +

    File to Base64 Converter

    +

    JSON to Base64 Converter

    +

    XML to Base64 Converter

    +

    Hex to RGB Converter

    +

    RGB to Hex Converter

    +

    CMYK to RGB Converter

    +

    RGB to CMYK Converter

    +

    CMYK to Hex Converter

    +

    Hex to CMYK Converter

    +

    IDN Encoder

    +

    IDN Decoder

    +

    Miles to Kilometers Converter

    +

    Kilometers to Miles Converter

    +

    Celsius to Fahrenheit Converter

    +

    Fahrenheit to Celsius Converter

    +

    Radians to Degrees Converter

    +

    Degrees to Radians Converter

    +

    Pounds to Kilograms Converter

    +

    Kilograms to Pounds Converter

    +

    My IP Address

    +

    All Tools

    +
    +
    + Pro tip: You can use ?input=text query argument to pass text to tools. +
    +
    -
    -
    - -