We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Themes often look better with certain fonts, but they may not be installed, or work without fontspec in TeX.
fontspec
One solution is a general font argument to theme functions. This could give the table font, and the default could be something like
font
if (getOption("huxtable.use_fontspec", TRUE)) "A Nice Font" else NULL
where NULL would mean, don't set a font. That could be hidden by a simple helper function... font_if_available().
NULL
font_if_available()
Which raises the issue, how do we know what fonts the user has installed? Is there an R package to do this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Themes often look better with certain fonts, but they may not be installed, or work without
fontspec
in TeX.One solution is a general
font
argument to theme functions. This could give the table font,and the default could be something like
where
NULL
would mean, don't set a font. That could be hidden by a simple helper function...font_if_available()
.Which raises the issue, how do we know what fonts the user has installed? Is there an R package to do this?
The text was updated successfully, but these errors were encountered: