scribble
scribble copied to clipboard
acknowledgements section in scribble/acmart gone missing
Running scribble --pdf on following program:
#lang scribble/acmart
@title{Title}
@author["me"]
@section{Introduction}
Welcome to our paper.
@include-section["y.scrbl"]
@acks{Thank you.}
which refers to this y.scrbl:
#lang scribble/base
@title{Of Mice and Cookies}
If you give a mouse a cookie, ....
produces a pdf with no acks in it. If you remove the @include-section, the acks appears.
I don't know what's wrong, but I found that running scribble --pdf on this program produces a pdf with no "the end" in it (neither "this is the end" nor the nested "the end"):
EDIT: same for scribble --html, no "The End".
#lang scribble/manual
@title{Title}
@section{Beginning}
this is the beginning
@include-section{middle.scrbl}
this is the end
@nested{the end}
middle.scrbl
#lang scribble/manual
@title{Middle}
this is the middle