vault backup: 2025-11-09 20:26:00
This commit is contained in:
Vendored
+1
-1
@@ -14,5 +14,5 @@
|
||||
"obsidian-latex-suite",
|
||||
"obsidian-pretty-bibtex",
|
||||
"obsidian-tikzjax",
|
||||
"novel-word-count"
|
||||
"lilypond"
|
||||
]
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"path": "lilypond"
|
||||
}
|
||||
Vendored
+3145
File diff suppressed because it is too large
Load Diff
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "lilypond",
|
||||
"name": "Lilypond",
|
||||
"version": "1.0.1",
|
||||
"minAppVersion": "0.12.0",
|
||||
"description": "Lilypond support in Obsidian",
|
||||
"author": "DOT-ASTERISK",
|
||||
"authorUrl": "https://businesscard.dot-asterisk.nl",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,93 @@
|
||||
---
|
||||
id:
|
||||
aliases: []
|
||||
tags: []
|
||||
title: Banjo Tablatures
|
||||
---
|
||||
# Banjo Tablatures
|
||||
|
||||
## Sources
|
||||
|
||||
## Banj'r
|
||||
|
||||
[Banj'r](https://banjr.com/tablatures.htm)
|
||||
|
||||
> 
|
||||
>
|
||||
> Don Borchelt, owner of Banj'r
|
||||
|
||||
## Banjoben
|
||||
|
||||
[Banjoben's Personal Tab Collection ONLINE: 99 Essential Bluegrass Banjo Solos](http://www.banjoben.com/banjobentabs.htm)
|
||||
|
||||
## Engraving
|
||||
|
||||
Don engraves his tabs with [TablEdit](http://www.tabledit.com/).
|
||||
The PDF output is cramped and terribly inconsistent.
|
||||
|
||||
I'd like to rewrite as many of Don's
|
||||
and any other tabs I can find in [[lilypond|LilyPond]].
|
||||
|
||||
This has a few complications:
|
||||
|
||||
[BanjoTab](https://github.com/jeremy9959/BanjoTab)
|
||||
|
||||
[LilyPond Banjo Notation](https://lilypond.org/doc/v2.23/Documentation/notation/banjo)
|
||||
|
||||
[Common Notation for Fretted Strings](https://lilypond.org/doc/v2.24/Documentation/notation/common-notation-for-fretted-strings)
|
||||
|
||||
### Slides
|
||||
|
||||
Strum holding the first position,
|
||||
then slide down the fretboard to the second.
|
||||
Indicated with a diagonal line between notes.
|
||||
|
||||
### Hammer-On and Pull-Off
|
||||
|
||||
Hammer-on -- Strum holding the first position,
|
||||
then quickly press down on the second.
|
||||
|
||||
Pull-off -- Strum holding both positions,
|
||||
then quickly release the first, letting the second ring.
|
||||
|
||||
```lily
|
||||
\new TabStaff {
|
||||
\relative c' {
|
||||
d4( e\2)
|
||||
a( g)
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### String Bending
|
||||
|
||||
Involves pushing/pulling the string
|
||||
perpendicular to the fretboard to change the pitch/timbre.
|
||||
|
||||
```lily
|
||||
mus = {
|
||||
d4\5\^ e\5\^ d2\5
|
||||
c'4\3\^ d'\3\bendHold \^ d'\3\^ c'\3
|
||||
\grace c'4\3\preBendHold \^ d'\3\bendHold \^ d'\3\^ c'2\3
|
||||
\grace c'4\3 \preBend \^ d'1\3
|
||||
}
|
||||
|
||||
\score {
|
||||
\new StaffGroup
|
||||
<<
|
||||
\new Staff { \clef "G_8" \mus }
|
||||
\new TabVoice \mus
|
||||
>>
|
||||
\layout {
|
||||
\context {
|
||||
\Voice
|
||||
\omit StringNumber
|
||||
}
|
||||
\context {
|
||||
\TabVoice
|
||||
\consists Bend_spanner_engraver
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
id:
|
||||
aliases: []
|
||||
tags: []
|
||||
title: LaTeX
|
||||
---
|
||||
# LaTeX
|
||||
|
||||
LaTeX, stylized as $\LaTeX$,
|
||||
is a text-based typesetting system.
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
# LilyPond
|
||||
|
||||
[LilyPond](https://lilypond.org) is a text-based [music engraving system](https://en.wikipedia.org/wiki/Music_engraving#Computer_music_engraving)
|
||||
with syntax similar to [[latex]].
|
||||
|
||||
1. Install the latest version of LilyPond:
|
||||
|
||||
```
|
||||
winget install LilyPond.LilyPond.Unstable
|
||||
```
|
||||
|
||||
2. Restart Obsidian
|
||||
|
||||
```lily
|
||||
\score{
|
||||
\relative c' {a}
|
||||
\layout {}
|
||||
}
|
||||
```
|
||||
|
||||
[Beginner Manual](https://lilypond.org/doc/v2.23/Documentation/learning/index)
|
||||
Reference in New Issue
Block a user