Hi Philip,

There's nothing like rowspan currently.

If you want to try adding something, I think you'll end up changing the
"scribble-lib" package in several places: in "core.rkt" to adjust the
contract for tables, in "base.rkt" to adjust the contract for
`tabular`, and in "html-render.rkt", "latex-render.rkt",
"markdown-render.rkt", and "text-render.rkt" to adjust the various
renderers. The rendering part is the main work, naturally.

If you decide not to try, I can take a look in a few days.

Matthew

At Tue, 29 Nov 2016 21:47:03 -0600, Philip McGrath wrote:
> A very rookie question: I am trying to figure out how to specify the
> equivalent of HTML's rowspan attribute for tabular from scribble/base: that
> is, to have a cell which spans more than one row. In LaTeX, I think I would
> use "multirow" (but I'm no LaTeX expert).
> 
> I know so know about 'cont, but I believe that only lets a cell span
> multiple columns: I'm looking for the a vertical version. Is there a
> built-in way to do this? Or otherwise, if it's not too daunting to
> implement myself, could someone point me in the right direction?
> 
> Here's some ASCII art of what I'm going for, if that's clearer:
> 
> -----------------------------------------
> |         | Date:     | Nov 29 | Dec 30 |
> |         |-----------|--------|--------|
> |         | Time:     | 12:18  |  3:06  |
> |---------------------------------------|
> |         | Expected: |   3    |   1    |
> | Apples  |-----------|--------|--------|
> |         | Actual:   |   2    |   1    |
> |---------------------------------------|
> | Pears & | Expected: |   4    |   9    |
> |         |-----------|--------|--------|
> |  Plums  | Actual:   |   6    |   3    |
> -----------------------------------------
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to racket-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to