28 lines
454 B
Plaintext
28 lines
454 B
Plaintext
#let poem(content) = {
|
|
set par(first-line-indent: 0em)
|
|
|
|
align(center, block[
|
|
#set align(center)
|
|
#set block(breakable: false)
|
|
#content
|
|
])
|
|
}
|
|
|
|
#poem[
|
|
#block[
|
|
#set align(left)
|
|
#emph[
|
|
“I speak severely to my boy, \
|
|
#h(1em)I beat him when he sneezes; \
|
|
For he can thoroughly enjoy \
|
|
#h(1em)The pepper when he pleases!”
|
|
]
|
|
]
|
|
|
|
#block[
|
|
#smallcaps[Chorus] \
|
|
#emph[“Wow! wow! wow!”]
|
|
]
|
|
]
|
|
|