I'm writing a technical paper with Scribble. The paper contains a table. I'm making the table with tabular. So far so good.
tabular
I want to center the table, but wrapping my tabular with centered has no effect. Help!
centered
You should wrap your table in a centered and also supply 'block as a style argument:
'block
#lang scribble/acmart @title{Centered Table Below} @centered[ @tabular[ #:sep (hspace 2) #:style 'block '(("hello" "world"))]]
Why?
Copyright © 2021 Jogjafile Inc.
You should wrap your table in a
centered
and also supply'block
as a style argument:Why?
tabular
makes a table that can contain page breaks'block
style prevents page breaks (documentation)