Directives: start_of_abc
This directive indicates that the lines that follow define a piece of music written in ABC music notation.
For example
{start_of_abc}
X:1
T:The Gentle Breeze
M:2/4
L:1/8
R:Air
K:Em
E>F G/2E/2-E| {A}B2{^c/2B/2}A>B| G/2E/2-E d2| B/2^c/2d B/2c/2d| e>f d>f|\
e3 B| g>B f>B| ef| eB F>B| E4:|
{end_of_abc}
The result could look like:
This directive may include an optional label, to be printed in the left margin. For example:,
{start_of_abc: Intro}
or (preferred):
{start_of_abc: label="Intro"}
The ChordPro reference implementation prints the label in the left margin, see labels.
General rules for embedding ABC source
-
Always start ABC content with
X:1
as first line and insert an empty line before the{end_of_abc}
directive. Anything before this line will be considered formatting instructions (see below). See also Remarks. -
The song must have a key (
K:
). No output will be generated if there is no key. -
ChordPro transposition using
{transpose}
or--transpose
will transpose the embedded ABC. Adding%%transpose
to the ABC source will affect the ABC notes only. -
If you use transcoding and want the ABC music transcoded as well, please see chordnames in the
abc2svg
documentation. -
You can use ChordPro fonts in the ABC content. For example, if you have defined a specific font for chords in your config, you can set this font for ABC chords with
%%gchordfont pdf.fonts.chord
. -
The ABC content is converted and included as a series of systems (one or more staves), which can be spread over multiple pages if needed.
-
The
abc2svg
tool trims whitespace. If you want some additional space between the systems, seestaffsep
below.
Since the actual rendering is handled by external tools, ChordPro has no control over what and how the output will look like.
Attributes
The ABC directive may contain the same formatting attributes as the image directive, for example:
{start_of_abc label="Alert" align="left"}
See Directives: Image for all possible attributes.
Additionally, the following attributes may be used:
-
split="n"
If set, ChordPro will attempt to split the generated image into individual systems so longer scores can be put onto multiple pages.
As of 6.030 this is enabled by default. Usesplit="0"
to keep the score as a singlee image. -
staffsep="n"
Add extra vertical space between the systems. Only relevant when not splitting.
Formatting instructions (deprecated)
The ABC data may be preceded by formatting instructions:
-
scale=n
Scale the image with the given factor. -
center
Center the image on the page. -
split
If set, ChordPro will attempt to split the generated image into individual systems so longer scores can be put onto multiple pages.
As of 6.030 this is enabled by default. Usesplit=0
to keep the score as a single image. -
staffsep=n
Add extra vertical space between the systems. Only relevant when not splitting.
Directives: end_of_abc
This directive indicates the end of the abc section.
Remarks
To render ABC, ChordPro makes use of external tools to convert the ABC source to an SVG image, and then embeds the image. Depending on the external tools support for embedded ABC may be limited, or absent.
Always include X:1
as the first line of the ABC content, and insert
an empty line before the {end_of_abc}
. This delimits the ABC content
so 3rd party tools can manupulate the ABC content directly from the
ChordPro source.
If you encounter problems with ABC content, run your ChordPro file
through an ABC postprocessor (preferrably abc2svg
) to see if
there are errors in the ABC content.