Diferencia entre revisiones de «Teoría musical/Introducción a la notación y el solfeo/El fa sostenido»

Contenido eliminado Contenido añadido
Yayopoint (discusión | contribs.)
Yayopoint (discusión | contribs.)
Línea 180:
* Encierra en un círculo '''rojo''' los fa sostenidos.
* Encierra en un círculo '''azul''' los fa naturales.
 
<score>\relative c' {
\time 2/4
e4 a8 f |
c'4 g |
g4 g8 fis |
e d e f |
g4 b |
c2
\bar "|."
}</score>
 
<score>\relative c' {
\clef bass
\time 3/4
a4 f8 f a4 |
g8 a g fis e fis |
g4 e8 d c4 |
d8 e f g a b |
g4 d b |
c2.
\bar "|."
}</score>
 
<score>\relative c' {
Línea 194 ⟶ 217:
! colspan="2" | Soluciones
|-
! Ejercicio 4
|-
| <score raw="1">\version "2.18.2"
\header {
tagline = ##f
}
 
circle = #(define-music-function (parser location color) (string?)
#{
 
\once \override NoteHead.stencil = #(lambda (grob)
(let* ((note (ly:note-head::print grob))
(combo-stencil (ly:stencil-add
note
(circle-stencil note .5 1))))
(ly:make-stencil (list 'color (eval-string color) (ly:stencil-expr combo-stencil))
(ly:stencil-extent note X)
(ly:stencil-extent note Y))))
#})
 
\relative c' {
\time 2/4
e4 a8 \circle "blue" f |
c'4 g |
g4 g8 \circle "red" fis |
e d e \circle "blue" f |
g4 b |
c2
\bar "|."
}</score>
|-
| <score raw="1">\version "2.18.2"
\header {
tagline = ##f
}
 
circle = #(define-music-function (parser location color) (string?)
#{
 
\once \override NoteHead.stencil = #(lambda (grob)
(let* ((note (ly:note-head::print grob))
(combo-stencil (ly:stencil-add
note
(circle-stencil note .5 1))))
(ly:make-stencil (list 'color (eval-string color) (ly:stencil-expr combo-stencil))
(ly:stencil-extent note X)
(ly:stencil-extent note Y))))
#})
 
\relative c' {
\clef bass
\time 3/4
a4 \circle "blue" f8 \circle "blue" f a4 |
g8 a g \circle "red" fis e \circle "red" fis |
g4 e8 d c4 |
d8 e \circle "blue" f g a b |
g4 d b |
c2.
\bar "|."
}</score>
|-
| <score raw="1">\version "2.18.2"
\header {