lvjr

Results 55 issues of lvjr

The `stretch` option of `tabularray` is an analogue of `\arraystretch` parameter of `tabular` environment. It gives every row a minimal height by adding struts to it. This option has several...

enhancement
next

At present we can use `*{N}{Q[red]Q[green]Q[blue]}` to repeat `Q[red]Q[green]Q[blue]` in `rowspec` or `colspec` N times. It would be nice if we can also use `*{-N}{Q[red]Q[green]Q[blue]}` to repeat `Q[red]Q[green]Q[blue]` to the...

enhancement

At this time we only have `X` columns. But `X` rows is also useful if we need to make full page tables. For a short table with `X` rows, we...

enhancement

At this time we only use `\pagetotal` in splitting long tables. Should we need to use `\pageshrink` too? Need decision.

enhancement
next

Although I haven't done enough tests, I think floats will interfere with `longtblr` in some situations. Also floats in the middle of a long tables look weird. Maybe it is...

enhancement
help

```latex \documentclass[12pt]{article} \usepackage[a6paper,margin=15mm]{geometry} \pagestyle{empty} \usepackage{tabularray} \begin{document} Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text. \begin{longtblr}[ caption = {Talks}, ]{ colspec = {lll}, rowhead...

bug report

We need to add a new option `rulewidth` for setting default width for all hlines and vlines. It corresponds to `\arrayrulewidth` in `tabular`.

enhancement

```latex \documentclass{article} \usepackage[a6paper,margin=15mm]{geometry} \usepackage{tabularray} \begin{document} \begin{longtblr}[caption = {Talks}]{ccc} Talk A&Place A&Date A\\ Talk B&Place B&Date B\\ Talk C&Place C&Date C\\ \pagebreak Talk D&Place D&Date D\\ Talk E&Place E&Date E\\ Talk...

bug report

When some cells are omitted in the table, such as the following code, the results of `tabular` and `tblr` are different. ```latex \documentclass{article} \usepackage{array} \usepackage{tabularray} \begin{document} \begin{tabular}{|l|c|r|} \hline Alpha \\...

enhancement
next

At this time we don't have something like ``` \begin{tabu} spread 0pt{XXX} One & Two & Three \end{tabu} ``` It is useful to make all columns have a width equal...

enhancement