You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tiger example and the chessboard example give an error message of 'expected semicolon or line break':
// We use `rect` to emphasize the
// area of cells.
#set rect(
inset: 8pt,
fill: rgb("e4e5ea"),
width: 100%,
)
#grid(
columns: (60pt, 1fr, 2fr),
rows: (auto, 60pt),
gutter: 3pt,
rect[Fixed width, auto height],
rect[1/3 of the remains],
rect[2/3 of the remains],
rect(height: 100%)[Fixed height],
grid.cell(
colspan: 2,
image("tiger.jpg", width: 100%),
),
)
removing the first three lines (#set... #show...) gives an error of 'type color has no method transparentize'.
Removing .transparentize(60%) then gives an error of 'function grid does not contain field cell`'.
Perhaps a separate ticket but none of the table examples in table documentation seem to work, either.
Thank you!
The text was updated successfully, but these errors were encountered:
None of the examples from Typst documentation work.
A simple example generates nothing and produces no error messages:
The tiger example and the chessboard example give an error message of 'expected semicolon or line break':
removing the first three lines (#set... #show...) gives an error of 'type color has no method
transparentize
'.Removing
.transparentize(60%)
then gives an error of 'functiongrid does not contain field
cell`'.Perhaps a separate ticket but none of the table examples in table documentation seem to work, either.
Thank you!
The text was updated successfully, but these errors were encountered: