User talk:Johnrdorazio: Difference between revisions
Content deleted Content added
Johnrdorazio (talk | contribs) |
Johnrdorazio (talk | contribs) |
||
Line 34: | Line 34: | ||
maintainerEmail = "chris@mutopiaproject.org" |
maintainerEmail = "chris@mutopiaproject.org" |
||
maintainerWeb = "http://cjsawer.whitewillow.co.uk/" |
maintainerWeb = "http://cjsawer.whitewillow.co.uk/" |
||
footer = "Mutopia-2011/11/13-23" |
|||
tagline = \markup { \override #'(box-padding . 1.0) \override #'(baseline-skip . 2.7) \box \center-column { \small \line { Sheet music from \with-url "http://www.MutopiaProject.org" \line { \teeny www. \hspace #-0.5 MutopiaProject \hspace #-0.5 \teeny .org \hspace #0.5 } • \hspace #0.5 \italic Free to download, with the \italic freedom to distribute, modify and perform. } \line { \small \line { Typeset using \with-url "http://www.LilyPond.org" \line { \teeny www. \hspace #-0.5 LilyPond \hspace #-0.5 \teeny .org } by \maintainer \hspace #-0.6 . \hspace #0.5 Reference: \footer } } \line { \teeny \line { This sheet music has been placed in the public domain by the typesetter, for details see: \hspace #-0.5 \with-url "http://creativecommons.org/licenses/publicdomain" http://creativecommons.org/licenses/publicdomain } } } } |
|||
} |
} |
||
Line 48: | Line 45: | ||
top = \relative c' { |
top = \relative c' { |
||
\override TextScript.padding = #2 |
|||
\key as \major |
\key as \major |
||
\time 2/4 |
\time 2/4 |
Revision as of 23:24, August 23, 2024
Here's a place to discuss this online encyclopedia with me
If you have any questions or need help when creating or editing an article, please feel free to contact me and we can try to work out any issues. Just click on Add topic here on top.
Test audio player
Test Score tag
Test Score tag in raw lilypond format, with title
Test syntax highlighting
Javascript:
let jsV = "Javascript variable";
let jsObj = {
item: "First item"
}
PHP
$myVar = "PHP variable";
$myVarUpper = strtoupper($myVar);
LUA
-- defines a factorial function
function fact (n)
if n == 0 then
return 1
else
return n * fact(n-1)
end
end
print("enter a number:")
a = io.read("*number") -- read a number
print(fact(a))