default_fonts | R Documentation |
The vector of fonts given by default_fonts()
can be safely used with a
gt table rendered as HTML since the font stack is expected to be
available across a wide set of systems. We can always specify additional
fonts to use and place them higher in precedence order, done through
prepending to this vector (i.e., this font stack should be placed after that
to act as a set of fallbacks).
This vector of fonts is useful when specifying font
values inside
cell_text()
(itself usable in tab_style()
or tab_style_body()
). If
using opt_table_font()
(which also has a font
argument), we probably
don't need to specify this vector of fonts since that function prepends font
names (this is handled by its add
option, which is TRUE
by default).
default_fonts()
A character vector of font names.
Let's use the exibble
dataset to create a simple, two-column gt table
(keeping only the char
and time
columns). Attempting to modify the fonts
used for the time
column is much safer if default_fonts()
is appended to
the end of the font
listing inside cell_text()
. What will happen, since
the "Comic Sansa"
and "Menloa"
fonts shouldn't exist, is that we'll get
exibble |> dplyr::select(char, time) |> gt() |> tab_style( style = cell_text( font = c("Comic Sansa", "Menloa", default_fonts()) ), locations = cells_body(columns = time) )
8-32
v0.2.2
(August 5, 2020)
Other helper functions:
adjust_luminance()
,
cell_borders()
,
cell_fill()
,
cell_text()
,
currency()
,
escape_latex()
,
from_column()
,
google_font()
,
gt_latex_dependencies()
,
html()
,
md()
,
nanoplot_options()
,
pct()
,
px()
,
random_id()
,
row_group()
,
stub()
,
system_fonts()
,
unit_conversion()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.