10

I'm trying to convert the dozenal representation of tau (=2*pi) to a series of notes. I was trying to use ABC notation, but I don't know how to indicate sharps or flats. I'd like to use a notation as simple as ABC, then convert to a MusicXML file that I can open and play back.

Here's a snippet of the sequence I'm trying to write in ABC notation: F# D# E A E C# F# A F# G B F# D# F C# C G# B D G A C E D D# B A# D A# D A# A# D# G# C B D F.

Your Uncle Bob
  • 3,632
  • 2
  • 16
  • 34
Tin Man
  • 210
  • 1
  • 6

2 Answers2

15
  • Sharp - ^
  • Flat - _
  • Natural - =

From The abc music standard 2.1 (Dec 2011)

The symbols ^, = and _ are used (before a note) to notate respectively a sharp, natural or flat. Double sharps and flats are available with ^^ and __ respectively.

Shevliaskovic
  • 30,929
  • 20
  • 117
  • 224
  • Thanks! I looked through the music standard before I asked, even did a search for "sharp", but I must have glossed over the Accidentals section. – Tin Man Jul 07 '16 at 07:07
12

A simple google(*) finds the following tutorial: http://www.lesession.co.uk/abc/abc_notation.htm#sharps

sharp: ^f
flat: _b
natural: =c

Note that the accidental precedes the note.

(*) When googling for information about ABC, it often helps to add the word "notation" to the search, to weed out false positives.

Caleb Hines
  • 20,376
  • 2
  • 50
  • 106