scribble icon indicating copy to clipboard operation
scribble copied to clipboard

acknowledgements section in scribble/acmart gone missing

Open rfindler opened this issue 8 years ago • 1 comments

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.

rfindler avatar Jul 08 '17 15:07 rfindler

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

bennn avatar Jul 13 '17 05:07 bennn