zoukankan      html  css  js  c++  java
  • MusicXML 3.0 (4) 谱号


    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
    <score-partwise version="3.0">
      <part-list>
        <score-part id="P1">
          <part-name>Piano</part-name>
        </score-part>
      </part-list>
      <part id="P1">
        <measure number="1">
          <attributes>
            <divisions>256</divisions>
            <key>
              <fifths>0</fifths>
            </key>
            <time>
              <beats>4</beats>
              <beat-type>4</beat-type>
            </time>
            <clef>
              <sign>G</sign>
              <line>2</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="2">
          <attributes>
            <clef>
              <sign>F</sign>
              <line>4</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="3">
          <attributes>
            <clef>
              <sign>C</sign>
              <line>3</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="4">
          <attributes>
            <clef>
              <sign>percussion</sign>
              <line>2</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="5">
          <attributes>
            <clef>
              <sign>TAB</sign>
              <line>2</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="6">
          <attributes>
            <clef>
              <sign>G</sign>
              <line>2</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="7">
          <attributes>
            <clef>
              <sign>G</sign>
              <line>1</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="8">
          <attributes>
            <clef>
              <sign>G</sign>
              <line>2</line>
              <clef-octave-change>-1</clef-octave-change>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="9">
          <attributes>
            <clef>
              <sign>G</sign>
              <line>2</line>
              <clef-octave-change>1</clef-octave-change>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="10">
          <attributes>
            <clef>
              <sign>G</sign>
              <line>2</line>
              <clef-octave-change>2</clef-octave-change>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="11">
          <attributes>
            <clef>
              <sign>F</sign>
              <line>4</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="12">
          <attributes>
            <clef>
              <sign>F</sign>
              <line>3</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="13">
          <attributes>
            <clef>
              <sign>F</sign>
              <line>4</line>
              <clef-octave-change>-1</clef-octave-change>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="14">
          <attributes>
            <clef>
              <sign>F</sign>
              <line>4</line>
              <clef-octave-change>1</clef-octave-change>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="15">
          <attributes>
            <clef>
              <sign>C</sign>
              <line>3</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="16">
          <attributes>
            <clef>
              <sign>C</sign>
              <line>1</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="17">
          <attributes>
            <clef>
              <sign>C</sign>
              <line>2</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="18">
          <attributes>
            <clef>
              <sign>C</sign>
              <line>4</line>
              <clef-octave-change>1</clef-octave-change>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="19">
          <attributes>
            <clef>
              <sign>C</sign>
              <line>5</line>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
        <measure number="20">
          <attributes>
            <clef>
              <sign>C</sign>
              <line>4</line>
              <clef-octave-change>-1</clef-octave-change>
            </clef>
          </attributes>
          <note>
            <rest/>
          </note>
        </measure>
      </part>
    </score-partwise>
    


    效果图:

  • 相关阅读:
    [转]C#进阶系列——WebApi 接口参数不再困惑:传参详解
    Netty中的三种Reactor(反应堆)
    I/O模型之三:两种高性能 I/O 设计模式 Reactor 和 Proactor
    【转】第8章 前摄器(Proactor):用于为异步事件多路分离和分派处理器的对象行为模式
    mysql 数据库 自动截取数据的问题---mysql的sql_model的四种模式:宽松模式、严格模式
    spring-session之四:Spring Session下的Redis存储结构
    Mysql auto_increment总结
    mysql实战优化之一:sql优化
    mysql字符集和校对规则(Mysql校对集)
    Oracle B-tree、位图、全文索引三大索引性能比较及优缺点汇总
  • 原文地址:https://www.cnblogs.com/del/p/2221520.html
Copyright © 2011-2022 走看看