diff --git a/previews/PR36/.documenter-siteinfo.json b/previews/PR36/.documenter-siteinfo.json index 5adf8fb..f4c3c74 100644 --- a/previews/PR36/.documenter-siteinfo.json +++ b/previews/PR36/.documenter-siteinfo.json @@ -1 +1 @@ -{"documenter":{"julia_version":"1.10.5","generation_timestamp":"2024-09-23T09:08:17","documenter_version":"1.7.0"}} \ No newline at end of file +{"documenter":{"julia_version":"1.10.5","generation_timestamp":"2024-09-23T09:20:07","documenter_version":"1.7.0"}} \ No newline at end of file diff --git a/previews/PR36/api/index.html b/previews/PR36/api/index.html index 4105c0a..640d463 100644 --- a/previews/PR36/api/index.html +++ b/previews/PR36/api/index.html @@ -1,6 +1,6 @@ -API · SummaryTables.jl

API

SummaryTables.AnnotatedMethod
Annotated(value, annotation; label = AutoNumbering())

Create an Annotated object which will be given a footnote annotation in the Table where it is used. If the label keyword is AutoNumbering(), annotations will be given number labels from 1 to N in the order of their appearance. If it is nothing, no label will be shown. Any other label will be used directly as the footnote label.

Each unique label must be paired with a unique annotation, but the same combination can exist multiple times in a single table.

source
SummaryTables.CellType
Cell(value, style::CellStyle)
-Cell(value; [bold, italic, underline, halign, valign, border_bottom, indent_pt, merge, mergegroup])

Construct a Cell with value value and CellStyle style, which can also be created implicitly with keyword arguments. For explanations of the styling options, refer to CellStyle. A cell with value nothing is displayed as an empty cell (styles might still apply). The type of value can be anything.

Some types with special behavior are:

  • Multiline for content broken over multiple lines in a cell. This object may not be used nested in other values, only as the top-level value.
  • Concat for stringing together multiple values without having to interpolate them into a String, which keeps their own special behaviors intact.
  • Superscript and Subscript
  • Annotated for a value with an optional superscript label and a footnote annotation.
source
SummaryTables.CellStyleType
CellStyle(;
+API · SummaryTables.jl

API

SummaryTables.AnnotatedMethod
Annotated(value, annotation; label = AutoNumbering())

Create an Annotated object which will be given a footnote annotation in the Table where it is used. If the label keyword is AutoNumbering(), annotations will be given number labels from 1 to N in the order of their appearance. If it is nothing, no label will be shown. Any other label will be used directly as the footnote label.

Each unique label must be paired with a unique annotation, but the same combination can exist multiple times in a single table.

source
SummaryTables.CellType
Cell(value, style::CellStyle)
+Cell(value; [bold, italic, underline, halign, valign, border_bottom, indent_pt, merge, mergegroup])

Construct a Cell with value value and CellStyle style, which can also be created implicitly with keyword arguments. For explanations of the styling options, refer to CellStyle. A cell with value nothing is displayed as an empty cell (styles might still apply). The type of value can be anything.

Some types with special behavior are:

  • Multiline for content broken over multiple lines in a cell. This object may not be used nested in other values, only as the top-level value.
  • Concat for stringing together multiple values without having to interpolate them into a String, which keeps their own special behaviors intact.
  • Superscript and Subscript
  • Annotated for a value with an optional superscript label and a footnote annotation.
source
SummaryTables.CellStyleType
CellStyle(;
     bold::Bool = false,
     italic::Bool = false,
     underline::Bool = false,
@@ -10,15 +10,15 @@
     border_bottom::Bool = false,
     merge::Bool = false,
     mergegroup::UInt8 = 0,
-)

Create a CellStyle object which determines the visual appearance of Cells.

Keyword arguments:

  • bold renders text bold if true.
  • italic renders text italic if true.
  • underline underlines text if true.
  • halign determines the horizontal alignment within the cell, either :left, :center or :right.
  • valign determines the vertical alignment within the cell, either :top, :center or :bottom.
  • indent_pt adds left indentation in points to the cell text.
  • border_bottom adds a bottom border to the cell if true.
  • merge causes adjacent cells which are == equal to be rendered as a single merged cell.
  • mergegroup is a number that can be used to differentiate between two otherwise equal adjacent groups of cells that should not be merged together.
source
SummaryTables.ConcatType
Concat(args...)

Create a Concat object which can be used to concatenate the representations of multiple values in a single table cell while keeping the conversion semantics of each arg in args intact.

Example

Concat(
+)

Create a CellStyle object which determines the visual appearance of Cells.

Keyword arguments:

  • bold renders text bold if true.
  • italic renders text italic if true.
  • underline underlines text if true.
  • halign determines the horizontal alignment within the cell, either :left, :center or :right.
  • valign determines the vertical alignment within the cell, either :top, :center or :bottom.
  • indent_pt adds left indentation in points to the cell text.
  • border_bottom adds a bottom border to the cell if true.
  • merge causes adjacent cells which are == equal to be rendered as a single merged cell.
  • mergegroup is a number that can be used to differentiate between two otherwise equal adjacent groups of cells that should not be merged together.
source
SummaryTables.ConcatType
Concat(args...)

Create a Concat object which can be used to concatenate the representations of multiple values in a single table cell while keeping the conversion semantics of each arg in args intact.

Example

Concat(
     "Some text and an ",
     Annotated("annotated", "Some annotation"),
     " value",
 )
-# will be rendered as "Some text and an annotated¹ value"
source
SummaryTables.GroupKeyType
GroupKey

Holds the group column names and values for one group of a dataset. This struct has only one field:

  • entries::Vector{Pair{Symbol,Any}}: A vector of column_name => group_value pairs.
source
SummaryTables.ListingPageMetadataType
ListingPageMetadata

Describes which row and column group sections of a full listing table are included in a given page. There are two fields:

  • rows::Vector{GroupKey}
  • cols::Vector{GroupKey}

Each Vector{GroupKey} holds all group keys that were relevant for pagination along that side of the listing table. A vector is empty if the table was not paginated along that side.

source
SummaryTables.MultilineType
Multiline(args...)

Create a Multiline object which renders each arg on a separate line. A Multiline value may only be used as the top-level value of a cell, so Cell(Multiline(...)) is allowed but Cell(Concat(Multiline(...), ...)) is not.

source
SummaryTables.PageType
Page{M}

Represents one page of a PaginatedTable.

It has two public fields:

  • table::Table: A part of the full table, created according to the chosen Pagination.
  • metadata::M: Information about which part of the full table this page contains. This is different for each table function that takes a Pagination argument because each such function may use its own logic for how to split pages.
source
SummaryTables.PaginatedTableType
PaginatedTable{M}

The return type for all table functions that take a Pagination argument to split the table into pages according to table-specific pagination rules.

This type only has one field:

  • pages::Vector{Page{M}}: Each Page holds a table and metadata of type M which depends on the table function that creates the PaginatedTable.

To get the table of page 2, for a PaginatedTable stored in variable p, access p.pages[2].table.

source
SummaryTables.GroupKeyType
GroupKey

Holds the group column names and values for one group of a dataset. This struct has only one field:

  • entries::Vector{Pair{Symbol,Any}}: A vector of column_name => group_value pairs.
source
SummaryTables.ListingPageMetadataType
ListingPageMetadata

Describes which row and column group sections of a full listing table are included in a given page. There are two fields:

  • rows::Vector{GroupKey}
  • cols::Vector{GroupKey}

Each Vector{GroupKey} holds all group keys that were relevant for pagination along that side of the listing table. A vector is empty if the table was not paginated along that side.

source
SummaryTables.MultilineType
Multiline(args...)

Create a Multiline object which renders each arg on a separate line. A Multiline value may only be used as the top-level value of a cell, so Cell(Multiline(...)) is allowed but Cell(Concat(Multiline(...), ...)) is not.

source
SummaryTables.PageType
Page{M}

Represents one page of a PaginatedTable.

It has two public fields:

  • table::Table: A part of the full table, created according to the chosen Pagination.
  • metadata::M: Information about which part of the full table this page contains. This is different for each table function that takes a Pagination argument because each such function may use its own logic for how to split pages.
source
SummaryTables.PaginatedTableType
PaginatedTable{M}

The return type for all table functions that take a Pagination argument to split the table into pages according to table-specific pagination rules.

This type only has one field:

  • pages::Vector{Page{M}}: Each Page holds a table and metadata of type M which depends on the table function that creates the PaginatedTable.

To get the table of page 2, for a PaginatedTable stored in variable p, access p.pages[2].table.

source
SummaryTables.ReplaceType
Replace(f, with)
 Replace(f; with)

This postprocessor replaces all cell values for which f(value) === true with the value with. If with <: Function then the new value will be with(value), instead.

Examples

Replace(x -> x isa String, "A string was here")
 Replace(x -> x isa String, uppercase)
-Replace(x -> x isa Int && iseven(x), "An even Int was here")
source
SummaryTables.SummaryType

Stores the index of the grouping variable under which the summaries defined in analyses should be run. An index of 0 means that one summary block is appended after all columns or rows, an index of 1 means on summary block after each group from the first grouping key of rows or columns, and so on.

source
SummaryTables.SummaryType

Stores the index of the grouping variable under which the summaries defined in analyses should be run. An index of 0 means that one summary block is appended after all columns or rows, an index of 1 means on summary block after each group from the first grouping key of rows or columns, and so on.

source
SummaryTables.TableMethod
function Table(cells;
     header = nothing,
     footer = nothing,
     round_digits = 3,
@@ -29,7 +29,7 @@
     rowgaps = Pair{Int,Float64}[],
     colgaps = Pair{Int,Float64}[],
     linebreak_footnotes = true,
-)

Create a Table which can be rendered in multiple formats, such as HTML or LaTeX.

Arguments

  • cells::AbstractMatrix{<:Cell}: The matrix of Cells that make up the table.

Keyword arguments

  • header: The index of the last row of the header, nothing if no header is specified.
  • footer: The index of the first row of the footer, nothing if no footer is specified.
  • footnotes: A vector of objects printed as footnotes that are not derived from Annotated values and therefore don't get labels with counterparts inside the table.
  • round_digits = 3: Float values will be rounded to this precision before printing.
  • round_mode = :auto: How the float values are rounded, options are :auto, :digits or :sigdigits. If round_mode === nothing, no rounding will be applied and round_digits and trailing_zeros will have no effect.
  • trailing_zeros = false: Controls if float values keep trailing zeros, for example 4.0 vs 4.
  • postprocess = []: A list of post-processors which will be applied left to right to the table before displaying the table. A post-processor can either work element-wise or on the whole table object. See the postprocess_table and postprocess_cell functions for defining custom postprocessors.
  • rowgaps = Pair{Int,Float64}[]: A list of pairs index => gap_pt. For each pair, a visual gap the size of gap_pt is added between the rows index and index+1.
  • colgaps = Pair{Int,Float64}[]: A list of pairs index => gap_pt. For each pair, a visual gap the size of gap_pt is added between the columns index and index+1.
  • linebreak_footnotes = true: If true, each footnote and annotation starts on a separate line.

Round mode

Consider the numbers 0.006789, 23.4567, 456.789 or 12345.0.

Here is how these numbers are formatted with the different available rounding modes:

  • :auto rounds to n significant digits but doesn't zero out additional digits before the comma unlike :sigdigits. For example, round_digits = 3 would result in 0.00679, 23.5, 457.0 or 12345.0. Numbers at orders of magnitude >= 6 or <= -5 are displayed in exponential notation as in Julia.
  • :digits rounds to n digits after the comma and shows possibly multiple trailing zeros. For example, round_digits = 3 would result in 0.007, 23.457 or 456.789 or 12345.000. Numbers are never shown with exponential notation.
  • :sigdigits rounds to n significant digits and zeros out additional digits before the comma unlike :auto. For example, round_digits = 3 would result in 0.00679, 23.5, 457.0 or 12300.0. Numbers at orders of magnitude >= 6 or <= -5 are displayed in exponential notation as in Julia.
source
SummaryTables.ReplaceMissingMethod
ReplaceMissing(; with = Annotated("-", "- No value"; label = NoLabel()))

This postprocessor replaces all missing cell values with the value in with.

source
SummaryTables.auto_roundMethod
auto_round(number; target_digits)

Rounds a floating point number to a target number of digits that are not leading zeros. For example, with 3 target digits, desirable numbers would be 123.0, 12.3, 1.23, 0.123, 0.0123 etc. Numbers larger than the number of digits are only rounded to the next integer (compare with round(1234, sigdigits = 3) which rounds to 1230.0). Numbers are rounded to target_digits significant digits when the floored base 10 exponent is -5 and lower or 6 and higher, as these numbers print with e notation by default in Julia.

auto_round(        1234567, target_digits = 4) = 1.235e6
+)

Create a Table which can be rendered in multiple formats, such as HTML or LaTeX.

Arguments

  • cells::AbstractMatrix{<:Cell}: The matrix of Cells that make up the table.

Keyword arguments

  • header: The index of the last row of the header, nothing if no header is specified.
  • footer: The index of the first row of the footer, nothing if no footer is specified.
  • footnotes: A vector of objects printed as footnotes that are not derived from Annotated values and therefore don't get labels with counterparts inside the table.
  • round_digits = 3: Float values will be rounded to this precision before printing.
  • round_mode = :auto: How the float values are rounded, options are :auto, :digits or :sigdigits. If round_mode === nothing, no rounding will be applied and round_digits and trailing_zeros will have no effect.
  • trailing_zeros = false: Controls if float values keep trailing zeros, for example 4.0 vs 4.
  • postprocess = []: A list of post-processors which will be applied left to right to the table before displaying the table. A post-processor can either work element-wise or on the whole table object. See the postprocess_table and postprocess_cell functions for defining custom postprocessors.
  • rowgaps = Pair{Int,Float64}[]: A list of pairs index => gap_pt. For each pair, a visual gap the size of gap_pt is added between the rows index and index+1.
  • colgaps = Pair{Int,Float64}[]: A list of pairs index => gap_pt. For each pair, a visual gap the size of gap_pt is added between the columns index and index+1.
  • linebreak_footnotes = true: If true, each footnote and annotation starts on a separate line.

Round mode

Consider the numbers 0.006789, 23.4567, 456.789 or 12345.0.

Here is how these numbers are formatted with the different available rounding modes:

  • :auto rounds to n significant digits but doesn't zero out additional digits before the comma unlike :sigdigits. For example, round_digits = 3 would result in 0.00679, 23.5, 457.0 or 12345.0. Numbers at orders of magnitude >= 6 or <= -5 are displayed in exponential notation as in Julia.
  • :digits rounds to n digits after the comma and shows possibly multiple trailing zeros. For example, round_digits = 3 would result in 0.007, 23.457 or 456.789 or 12345.000. Numbers are never shown with exponential notation.
  • :sigdigits rounds to n significant digits and zeros out additional digits before the comma unlike :auto. For example, round_digits = 3 would result in 0.00679, 23.5, 457.0 or 12300.0. Numbers at orders of magnitude >= 6 or <= -5 are displayed in exponential notation as in Julia.
source
SummaryTables.ReplaceMissingMethod
ReplaceMissing(; with = Annotated("-", "- No value"; label = NoLabel()))

This postprocessor replaces all missing cell values with the value in with.

source
SummaryTables.auto_roundMethod
auto_round(number; target_digits)

Rounds a floating point number to a target number of digits that are not leading zeros. For example, with 3 target digits, desirable numbers would be 123.0, 12.3, 1.23, 0.123, 0.0123 etc. Numbers larger than the number of digits are only rounded to the next integer (compare with round(1234, sigdigits = 3) which rounds to 1230.0). Numbers are rounded to target_digits significant digits when the floored base 10 exponent is -5 and lower or 6 and higher, as these numbers print with e notation by default in Julia.

auto_round(        1234567, target_digits = 4) = 1.235e6
 auto_round(       123456.7, target_digits = 4) = 123457.0
 auto_round(       12345.67, target_digits = 4) = 12346.0
 auto_round(       1234.567, target_digits = 4) = 1235.0
@@ -42,7 +42,7 @@
 auto_round(   0.0001234567, target_digits = 4) = 0.0001235
 auto_round(  0.00001234567, target_digits = 4) = 1.235e-5
 auto_round( 0.000001234567, target_digits = 4) = 1.235e-6
-auto_round(0.0000001234567, target_digits = 4) = 1.235e-7
source
SummaryTables.listingtableFunction
listingtable(table, variable, [pagination];
     rows = [],
     cols = [],
     summarize_rows = [],
@@ -65,7 +65,7 @@
     cols = [:Delivery],
     summarize_cols = [sum => "total"],
     summarize_rows = :Batch => [mean => "average", sum]
-)
source
SummaryTables.postprocess_cellFunction
postprocess_cell

Overload postprocess_cell(c::Cell, postprocessor::YourPostProcessor) to enable using YourPostProcessor as a cell postprocessor by passing it to the postprocess keyword argument of Table.

The function must always return a Cell. It will be applied on every cell of the table that is being postprocessed, all other table attributes will be left unmodified.

Use postprocess_table instead if you need to modify table attributes during postprocessing.

source
SummaryTables.postprocess_tableFunction
postprocess_table

Overload postprocess_table(t::Table, postprocessor::YourPostProcessor) to enable using YourPostProcessor as a table postprocessor by passing it to the postprocess keyword argument of Table.

The function must always return a Table.

Use postprocess_cell instead if you do not need to modify table attributes during postprocessing but only individual cells.

source
SummaryTables.postprocess_cellFunction
postprocess_cell

Overload postprocess_cell(c::Cell, postprocessor::YourPostProcessor) to enable using YourPostProcessor as a cell postprocessor by passing it to the postprocess keyword argument of Table.

The function must always return a Cell. It will be applied on every cell of the table that is being postprocessed, all other table attributes will be left unmodified.

Use postprocess_table instead if you need to modify table attributes during postprocessing.

source
SummaryTables.postprocess_tableFunction
postprocess_table

Overload postprocess_table(t::Table, postprocessor::YourPostProcessor) to enable using YourPostProcessor as a table postprocessor by passing it to the postprocess keyword argument of Table.

The function must always return a Table.

Use postprocess_cell instead if you do not need to modify table attributes during postprocessing but only individual cells.

source
SummaryTables.summarytableMethod
summarytable(table, variable;
     rows = [],
     cols = [],
     summary = [],
@@ -85,4 +85,4 @@
     rows = [:Batch],
     cols = [:Delivery],
     summary = [length => "N", mean => "average", sum]
-)
source
SummaryTables.table_oneMethod
table_one(table, analyses; keywords...)

Construct a "Table 1" which summarises the patient baseline characteristics from the provided table dataset. This table is commonly used in biomedical research papers.

It can handle both continuous and categorical columns in table and summary statistics and hypothesis testing are able to be customised by the user. Tables can be stratified by one, or more, variables using the groupby keyword.

Keywords

  • groupby: Which columns to stratify the dataset with, as a Vector{Symbol}.
  • nonnormal: A vector of column names where hypothesis tests for the :nonnormal type are chosen.
  • minmax: A vector of column names where hypothesis tests for the :minmax type are chosen.
  • tests: A NamedTuple of hypothesis test types to use for categorical, nonnormal, minmax, and normal variables.
  • combine: An object from MultipleTesting to use when combining p-values.
  • show_total: Display the total column summary. Default is true.
  • group_totals: A group Symbol or vector of symbols specifying for which group levels totals should be added. Any group levels but the topmost can be chosen (the topmost being already handled by the show_total option). Default is Symbol[].
  • total_name: The name for all total columns. Default is "Total".
  • show_n: Display the number of rows for each group key next to its label.
  • show_pvalues: Display the P-Value column. Default is false.
  • show_testnames: Display the Test column. Default is false.
  • show_confints: Display the CI column. Default is false.
  • sort: Sort the input table before grouping. Default is true. Pre-sort as desired and set to false when you want to maintain a specific group order or are using non-sortable objects as group keys.

Deprecated keywords

  • show_overall: Use show_total instead

All other keywords are forwarded to the Table constructor, refer to its docstring for details.

source
SummaryTables.to_docxMethod
to_docx(ct::Table)

Creates a WriteDocx.Table node for Table ct which can be inserted into a WriteDocx document.

source
+)
source
SummaryTables.table_oneMethod
table_one(table, analyses; keywords...)

Construct a "Table 1" which summarises the patient baseline characteristics from the provided table dataset. This table is commonly used in biomedical research papers.

It can handle both continuous and categorical columns in table and summary statistics and hypothesis testing are able to be customised by the user. Tables can be stratified by one, or more, variables using the groupby keyword.

Keywords

  • groupby: Which columns to stratify the dataset with, as a Vector{Symbol}.
  • nonnormal: A vector of column names where hypothesis tests for the :nonnormal type are chosen.
  • minmax: A vector of column names where hypothesis tests for the :minmax type are chosen.
  • tests: A NamedTuple of hypothesis test types to use for categorical, nonnormal, minmax, and normal variables.
  • combine: An object from MultipleTesting to use when combining p-values.
  • show_total: Display the total column summary. Default is true.
  • group_totals: A group Symbol or vector of symbols specifying for which group levels totals should be added. Any group levels but the topmost can be chosen (the topmost being already handled by the show_total option). Default is Symbol[].
  • total_name: The name for all total columns. Default is "Total".
  • show_n: Display the number of rows for each group key next to its label.
  • show_pvalues: Display the P-Value column. Default is false.
  • show_testnames: Display the Test column. Default is false.
  • show_confints: Display the CI column. Default is false.
  • sort: Sort the input table before grouping. Default is true. Pre-sort as desired and set to false when you want to maintain a specific group order or are using non-sortable objects as group keys.

Deprecated keywords

  • show_overall: Use show_total instead

All other keywords are forwarded to the Table constructor, refer to its docstring for details.

source
SummaryTables.to_docxMethod
to_docx(ct::Table)

Creates a WriteDocx.Table node for Table ct which can be inserted into a WriteDocx document.

source
diff --git a/previews/PR36/custom_tables/cell/index.html b/previews/PR36/custom_tables/cell/index.html index 350f6f9..714c9a2 100644 --- a/previews/PR36/custom_tables/cell/index.html +++ b/previews/PR36/custom_tables/cell/index.html @@ -373,4 +373,4 @@ B2 - + diff --git a/previews/PR36/custom_tables/cellstyle/index.html b/previews/PR36/custom_tables/cellstyle/index.html index c0823bd..12ed86c 100644 --- a/previews/PR36/custom_tables/cellstyle/index.html +++ b/previews/PR36/custom_tables/cellstyle/index.html @@ -451,4 +451,4 @@ D4 - + diff --git a/previews/PR36/custom_tables/table/index.html b/previews/PR36/custom_tables/table/index.html index fe9335a..b9e7618 100644 --- a/previews/PR36/custom_tables/table/index.html +++ b/previews/PR36/custom_tables/table/index.html @@ -469,4 +469,4 @@ I5 -

Types of cell values

TODO: List the different options here

+

Types of cell values

TODO: List the different options here

diff --git a/previews/PR36/index.html b/previews/PR36/index.html index 324aadb..1af8c6c 100644 --- a/previews/PR36/index.html +++ b/previews/PR36/index.html @@ -316,4 +316,4 @@ 0.0707 - + diff --git a/previews/PR36/output/index.html b/previews/PR36/output/index.html index 2856e77..1b017b5 100644 --- a/previews/PR36/output/index.html +++ b/previews/PR36/output/index.html @@ -302,7 +302,7 @@ note: downloading texglyphlist.txt note: downloading pdfglyphlist.txt note: downloading glyphlist.txt -note: Writing `/tmp/jl_0gy3gr/main.pdf` (10.0048828125 KiB) +note: Writing `/tmp/jl_L2I3cW/main.pdf` (10.0048828125 KiB) note: Skipped writing 1 intermediate files (use --keep-intermediates to keep them)

Download example.pdf:

docx

To get docx output, you need to use the WriteDocx.jl package because this format is not plain-text like LaTeX or HTML. The table node you get out of the to_docx function can be placed into sections on the same level as paragraphs.

using SummaryTables
 using DataFrames
 import WriteDocx as W
@@ -368,4 +368,4 @@
     end
 
     cp(joinpath(dir, "example.pdf"), joinpath(@__DIR__, "outputs", "example_typst.pdf"))
-end

Download example_typst.pdf:

+end

Download example_typst.pdf:

diff --git a/previews/PR36/outputs/example.docx b/previews/PR36/outputs/example.docx index 69773b4..ba56844 100644 Binary files a/previews/PR36/outputs/example.docx and b/previews/PR36/outputs/example.docx differ diff --git a/previews/PR36/outputs/example.pdf b/previews/PR36/outputs/example.pdf index bf1cd28..8eac8fb 100644 Binary files a/previews/PR36/outputs/example.pdf and b/previews/PR36/outputs/example.pdf differ diff --git a/previews/PR36/outputs/example_typst.pdf b/previews/PR36/outputs/example_typst.pdf index 38db373..8b88147 100644 Binary files a/previews/PR36/outputs/example_typst.pdf and b/previews/PR36/outputs/example_typst.pdf differ diff --git a/previews/PR36/predefined_tables/listingtable/index.html b/previews/PR36/predefined_tables/listingtable/index.html index 6cd4ddf..13e5c49 100644 --- a/previews/PR36/predefined_tables/listingtable/index.html +++ b/previews/PR36/predefined_tables/listingtable/index.html @@ -2668,4 +2668,4 @@

Keyw 4 - + diff --git a/previews/PR36/predefined_tables/summarytable/index.html b/previews/PR36/predefined_tables/summarytable/index.html index 93e158d..f16e053 100644 --- a/previews/PR36/predefined_tables/summarytable/index.html +++ b/previews/PR36/predefined_tables/summarytable/index.html @@ -1651,4 +1651,4 @@ 4 - + diff --git a/previews/PR36/predefined_tables/table_one/index.html b/previews/PR36/predefined_tables/table_one/index.html index 8bc30e2..d9e61a1 100644 --- a/previews/PR36/predefined_tables/table_one/index.html +++ b/previews/PR36/predefined_tables/table_one/index.html @@ -1567,4 +1567,4 @@ 6 [6, 6] - +