Čítať v angličtine

Zdieľať cez


#table

Syntax

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

O

Vytvorí hodnotu tabuľky z columns a rows. Hodnotou columns môže byť zoznam názvov stĺpcov, typ tabuľky, počet stĺpcov alebo hodnota null. Hodnota rows je zoznam zoznamov, kde každý prvok obsahuje hodnoty stĺpca pre jeden riadok.

Príklad č. 1

Vytvorte prázdnu tabuľku.

používania

#table({}, {})

výstupu

#table({}, {})

Príklad č. 2

Vytvorte tabuľku odvodením počtu stĺpcov z prvého riadka.

používania

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

výstupu

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

Príklad č. 3

Vytvorte tabuľku zadaním počtu stĺpcov.

používania

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

výstupu

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

Príklad č. 4

Vytvorte tabuľku zadaním zoznamu názvov stĺpcov.

používania

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

výstupu

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

Príklad č. 5

Vytvorte tabuľku s explicitným typom.

používania

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

výstupu

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