Pedal ohne Bezeichnung

Begonnen von chf, Sonntag, 30. August 2020, 13:13

« vorheriges - nächstes »

chf

Liebe Freunde,

ist es möglich, das Klavierpedal nur als Linie, ohne die anfängliche Bezeichnung (und vielleicht auch das Häkchen), zu notieren?

Gruß
Christa

harm6


chf

#2
Hallo harm,

pardon - mir war allzu klar, was ich meine...

[code
\version "2.20.0"
\relative c' {
\set Staff.pedalSustainStyle = #'bracket
c4\sustainOn c c c\sustainOff\sustainOn c c c c}]


Mein Idealbild käme also "aus dem Nichts" und hätte dann noch ein Pfeilspitze, weil die Anweisung auch ins Nichts geht...

chf

Vielleicht hilft das Bildchen?
Etwas in dieser Art ist im Manuskript (handschriftlich) eingezeichnet...
chf

Schneider

Hallo Christa,
Warum nicht eine Grafiklösung?
(https://lilypond.org/doc/v2.20/Documentation/notation/graphic#index-drawing-paths)
E.g.:
\version "2.20.0"

\relative c' {
  c4
  -\markup \concat {
    \path #.1 #'(
      (moveto 0 0)
      (lineto 0 -1)
      (rlineto 10 0))
    \hspace #3
    \path #.1 #'(
      (moveto 0 -1)
      (rlineto 2.5 0)
      (rlineto .5 1)
      (rlineto .5 -1)
      (rlineto 5 0))
    \hspace #-.5
    \override #'(filled . #t)
    \path #.1 #'(
      (moveto 0 -1)
      (rlineto -.5 .4)
      (rlineto 2 -.4)
      (rlineto -2 -.4)
      (rlineto .5 .4))
  }
  -\markup \concat {
    \path #.1 #'(
      (moveto 0 0)
      (lineto 0 -1)
      (rlineto 37 0))
    \hspace #3
    \path #.1 #'(
      (moveto 0 -1)
      (rlineto 2.5 0)
      (rlineto .5 1)
      (rlineto .5 -1)
      (rlineto 3 0))
     \hspace #3
    \path #.1 #'(
      (moveto 0 -1)
      (rlineto 4 0))
    \hspace #-.5
    \override #'(filled . #t)
    \path #.1 #'(
      (moveto 0 -1)
      (rlineto -.5 .4)
      (rlineto 2 -.4)
      (rlineto -2 -.4)
      (rlineto .5 .4))
  }
  \repeat unfold 19 { c }
}


Gruß,
Pierre

chf

Hallo Pierre,

das ist fantastisch! Nun muss ich nur noch lernen, nach den Vorgaben des Komponisten damit umzugehen...

Danke! Christa

chf

Hallo Pierre,

kannst du das Häkchen am Anfang vielleicht noch wegzaubern? Ich brauche diese Linie in Abständen immer wieder, aber ohne konkreten Anfang, den das Häkchen ja bezeichnet.
Ich bin in diesen Dingen völlig unbeleckt, sehe nur die Vorgabe des Komponisten. Der hat das alles mit der Hand geschrieben...

Christa

Schneider

Ok:
\version "2.20.0"

\relative c' {
  c4
  -\markup \concat {
    \path #.1 #'(
      (moveto 0 -1)
      ;(lineto 0 -1) ; <= Häkchen
      (rlineto 10 0))
    \hspace #3
    \path #.1 #'(
      (moveto 0 -1)
      (rlineto 2.5 0)
      (rlineto .5 1)
      (rlineto .5 -1)
      (rlineto 5 0))
    \hspace #-.5
    \override #'(filled . #t)
    \path #.1 #'(
      (moveto 0 -1)
      (rlineto -.5 .4)
      (rlineto 2 -.4)
      (rlineto -2 -.4)
      (rlineto .5 .4))
  }
  -\markup \concat {
    \path #.1 #'(
      (moveto 0 -1)
      ;(lineto 0 -1) ; <= Häkchen
      (rlineto 37 0))
    \hspace #3
    \path #.1 #'(
      (moveto 0 -1)
      (rlineto 2.5 0)
      (rlineto .5 1)
      (rlineto .5 -1)
      (rlineto 3 0))
     \hspace #3
    \path #.1 #'(
      (moveto 0 -1)
      (rlineto 4 0))
    \hspace #-.5
    \override #'(filled . #t)
    \path #.1 #'(
      (moveto 0 -1)
      (rlineto -.5 .4)
      (rlineto 2 -.4)
      (rlineto -2 -.4)
      (rlineto .5 .4))
  }
  \repeat unfold 19 { c }
}


Gruß,
Pierre

chf

#8
DANKE!!!


chf

Hallo Pierre,

wenn du mir noch zeigst, wie ich die Teile in alle Richtungen verschieben kann (wie ich sie "ansprechen" muss),
bin ich überglücklich!

Sonntagsgruß
Christa

Manuela

Die Grafiken sind als Text implementiert, sind daher mit TextScript anzusprechen
\once \override TextScript.X-offset = #5

Internals: 3.1.122 TextScript
Notation: 4.4.3 Objekte außerhalb des Notensystems
Danke für eure Hilfe
viele Grüße
-- Manuela

chf