/usr/share/solfege/help/de/nameinterval-module.html is in solfege-doc 3.20.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>The nameinterval module</title><link rel="stylesheet" href="../style.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.75.2"><link rel="home" href="index.html" title="GNU Solfege 3.20.6-Benutzerhandbuch"><link rel="up" href="extending-solfege.html" title="Kapitel 4. Extending GNU Solfege"><link rel="prev" href="melodicinterval-module.html" title="The melodicinterval module"><link rel="next" href="rhythm-module.html" title="The rhythm module"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">The <code class="literal">nameinterval</code> module</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="melodicinterval-module.html">Zurück</a> </td><th width="60%" align="center">Kapitel 4. Extending GNU Solfege</th><td width="20%" align="right"> <a accesskey="n" href="rhythm-module.html">Weiter</a></td></tr></table><hr></div><div class="sect1" title="The nameinterval module"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="nameinterval-module"></a>The <code class="literal">nameinterval</code> module</h2></div></div></div><p>Here is a minimal lesson file:</p><pre class="programlisting">
header {
module = nameinterval
title = _("Fifths")
intervals = p5, a5, d5
}
</pre><div class="variablelist"><dl><dt><span class="term"><code class="literal">intervals</code></span></dt><dd><p>A list of the intervals to ask for. The intervals are written
in a short form, a letter and a number, like <code class="literal">d5</code>
or <code class="literal">m7</code>. The letters are telling the interval quality are
'd' for diminished, 'a' for augmented, 'm' for minor, 'M' for major and
'p' for perfect.
</p></dd><dt><span class="term"><code class="literal">tones</code></span></dt><dd><p>This variable sets the range of tones that can be used when
constructing the intervals. The note names has to be quoted. The
default value is <code class="literal">"b", "g''"</code>. Example:
</p><pre class="programlisting">
tones = "c'", "f''" # valid
tones = c', f'' # not valid</pre></dd><dt><span class="term"><code class="literal">accidentals</code></span></dt><dd><p>This variable defines how many accidentals the tones making
the interval can have. The value 0 means no accidentals, 1 means that
flats and sharps are allowed, and 2 means that double flats and double
sharps are allowed. The default value is 1. Example:
</p><pre class="programlisting">accidentals = 2</pre></dd><dt><span class="term"><code class="literal">clef</code></span></dt><dd><p>Set which clef to use. The default value is <code class="literal">violin</code>.
Possible values: <code class="literal">violin</code>, <code class="literal">treble</code>,
<code class="literal">subbass</code>, <code class="literal">bass</code>,
<code class="literal">baritone</code>, <code class="literal">varbaritone</code>,
<code class="literal">tenor</code>, <code class="literal">alto</code>,
<code class="literal">mezzosoprano</code> and <code class="literal">french</code>.
Example:
</p><pre class="programlisting">clef = bass</pre></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="melodicinterval-module.html">Zurück</a> </td><td width="20%" align="center"><a accesskey="u" href="extending-solfege.html">Nach oben</a></td><td width="40%" align="right"> <a accesskey="n" href="rhythm-module.html">Weiter</a></td></tr><tr><td width="40%" align="left" valign="top">The <code class="literal">melodicinterval</code> module </td><td width="20%" align="center"><a accesskey="h" href="index.html">Zum Anfang</a></td><td width="40%" align="right" valign="top"> The <code class="literal">rhythm</code> module</td></tr></table></div></body></html>
|