• Willkommen im Forum „Archiviertes Lilypond Forum (2017)“.
 

Dies ist das Archiv des alten Forums (bis März 2017). Das aktuelle Forum ist unter lilypondforum.de zu finden.
This is the archive of the old forum (until March 2017). You can find the current forum at lilypondforum.de.

Hauptmenü

Akkord mit GanzenNoten Stimme zuweisen

Begonnen von himatt, Samstag, 5. März 2011, 23:46

Vorheriges Thema - Nächstes Thema

himatt

Liebe Freunde,
Wie schreibe ich das denn???
schönen Sonntag
Matthias

kilgore

Lieber Himatt,

Für solche "simple" Zeichen greife ich nicht mal zum Postscript, sondern direkt zur Zeichentabelle.  Da gibt es viele Möglichkeiten!



[b] ┌ ┘┎ ┚ ⎧ ⎭ ⌈ ⌋ ⌠ ⌡ [/b]


und dann mit markup und #'extra-offset verfeinern...



\version "2.12.3"

upper = \markup { \fontsize #3 ┘ }
lower = \markup { \fontsize #3 ┌ }

\relative c' {
  s1
  <b' d>1-\tweak #'extra-offset #'( 2 . -3 ) ^\upper-\tweak #'extra-offset #'( -2 . 4 ) _\lower
}



Da gibt es wohl auch einen Weg, es so zu bauen (wohl als neue Notenkopf) das die Zeichen immer automatisch richtig platziert werden.  Wenn es aber nur ein paar mal vorkommt dann geht meine Lösung auch....

Gruß
kil

RobUr

Hallo Matthias,

in solchen Fällen schreibe ich immer die Nummer dazu, weil ich solche Symbole eher irritierend finde.


\version "2.12.3"

\include "deutsch.ly"

CantusINoten = \relative c' {
s4*3 cis'4
\once \override TextScript #'extra-offset = #'(-0.4 . 0)
d1^\markup { \smaller "I" }
}

CantusIINoten = \relative c' {
s4*3 fis'4
\once \override TextScript #'extra-offset = #'(-0.75 . 1)
h,1_\markup { \smaller "II" }
}

CantusText = \lyricmode {
la la.
}

\score {
\context Staff = "Cantus"
<<
\context Voice = "Cantus I" {
\key d \major
\voiceOne
\CantusINoten
}
\context Voice = "Cantus II" {
\key d \major
\voiceTwo
\CantusIINoten
}
\context Lyrics = "CantusText" \lyricsto "Cantus II" { \CantusText }
>>
}


Viele Grüße, Robert

himatt

Danke euch beiden,
habe mich mit Kils Hilfe doch für die ursprüngliche Variante entschieden.

GutNacht nun nach langem Lilyieren
Matthias