]> Shamusworld >> Repos - ardour-manual/commitdiff
Ruler/Markers rewrite, part 3 of N
authorAlexandre Prokoudine <alexandre.prokoudine@gmail.com>
Wed, 2 Nov 2022 23:41:30 +0000 (02:41 +0300)
committerAlexandre Prokoudine <alexandre.prokoudine@gmail.com>
Wed, 2 Nov 2022 23:41:30 +0000 (02:41 +0300)
Add initial documentation on TS ruler

The "Arranging" part of the manual will need to be adjusted accordingly
or possibly revised entirely.

include/time-signature-ruler.html [new file with mode: 0644]
master-doc.txt
source/images/multiple-time-signatures.png [new file with mode: 0644]
source/images/new-time-signature-marker.png [new file with mode: 0644]

diff --git a/include/time-signature-ruler.html b/include/time-signature-ruler.html
new file mode 100644 (file)
index 0000000..b47a042
--- /dev/null
@@ -0,0 +1,51 @@
+<p>
+  The Time Signature ruler allows changing the time signature within one
+  session. In the example below, the session starts with a time signature of
+  4/4, then switches to 3/4 at bar 5, then to 6/8 at bar 13. The division of the
+  ruler and the bars/beats vertical lines on the canvas updates accordingly.
+</p>
+
+<figure>
+  <img style="width:75%;" width="50%" src="/images/multiple-time-signatures.png"
+  alt="Multiple Time Signatures">
+  <figcaption>Multiple Time Signatures</figcaption>
+</figure>
+
+<p>
+  Ardour also supports using complex time signatures such as 11/8 or 27/32.
+</p>
+
+<p>
+  New time signature markers can be created in two ways:
+</p>
+
+<ul>
+  <li><kbd class="mod1n"></kbd>-clicking on the ruler</li>
+  <li>Right-clicking on the ruler, then selecting the
+       <kbd class="menu">New Time Signature</kbd> menu item</li>
+</ul>
+
+<p>
+  In both cases a new window will open to specify time signature settings:
+</p>
+
+<figure>
+  <img style="width:50%;" width="50%" src="/images/new-time-signature-marker.png"
+  alt="New Time Signature dialog">
+  <figcaption>New Time Signature dialog</figcaption>
+</figure>
+
+<p>
+  The right-click menu for existing time signature markers provides two options:
+</p>
+
+<ul>
+  <li><kbd class="menu">Edit…</kbd> to open the
+       <kbd class="menu">Edit Time Signature</kbd> dialog;</li>
+  <li><kbd class="menu">Remove</kbd> to delete the selected time signature marker.</li>
+</ul>
+
+<p>
+  The <a href="@@time-tempo-and-meter">Time, Tempo and Time Signature</a> section
+  provides more hands-on information on using this ruler in production.
+</p>
index 86c69bbfea78bcb2c4823db1e3443174a6dc3458..82f71d1a45c6c93d5c09c690820199d45ee2a9d1 100644 (file)
@@ -528,12 +528,19 @@ part: subchapter
 ---
 
 ---
-title: BBT markers
+title: Bars:Beats
 include: bbt-markers.html
 link: bbt-markers
 part: subchapter
 ---
 
+---
+title: Time Signature
+include: time-signature-ruler.html
+link: time-signature-ruler
+part: subchapter
+---
+
 ---
 title: Creating Location Markers
 include: creating-location-markers.html
diff --git a/source/images/multiple-time-signatures.png b/source/images/multiple-time-signatures.png
new file mode 100644 (file)
index 0000000..d18dcba
Binary files /dev/null and b/source/images/multiple-time-signatures.png differ
diff --git a/source/images/new-time-signature-marker.png b/source/images/new-time-signature-marker.png
new file mode 100644 (file)
index 0000000..96d69ec
Binary files /dev/null and b/source/images/new-time-signature-marker.png differ