#table

语法

#table(columns as any, rows as any) as any

关于

columnsrows 创建表值。 columns 值可以是列名列表、表类型、若干列或 NULL。 rows 值是列表的列表,其中每个元素都包含单行的列值。

示例 1

创建一个空表。

使用情况

#table({}, {})

输出

#table({}, {})

示例 2

通过从第一行推断列数来创建表。

使用情况

#table(null, {{"Betty", 90.3}, {"Carl", 89.5}})

输出

#table({"Column1", "Column2"}, {{"Betty", 90.3}, {"Carl", 89.5}})

示例 3

通过指定列数来创建表。

使用情况

#table(2, {{"Betty", 90.3}, {"Carl", 89.5}})

输出

#table({"Column1", "Column2"}, {{"Betty", 90.3}, {"Carl", 89.5}})

示例 4

通过提供列名称列表来创建表。

使用情况

#table({"Name", "Score"}, {{"Betty", 90.3}, {"Carl", 89.5}})

输出

#table({"Name", "Score"}, {{"Betty", 90.3}, {"Carl", 89.5}})

示例 5

创建具有显式类型的表。

使用情况

#table(type table [Name = text, Score = number], {{"Betty", 90.3}, {"Carl", 89.5}})

输出

#table(type table [Name = text, Score = number], {{"Betty", 90.3}, {"Carl", 89.5}})