😎 Give your xaringan slides some style
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

29 rindas
872B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/utils.R
  3. \name{google_font}
  4. \alias{google_font}
  5. \title{Specify Google Font}
  6. \usage{
  7. google_font(family, ..., languages = NULL)
  8. }
  9. \arguments{
  10. \item{family}{Font family}
  11. \item{...}{Font weights to include, example "400", "400i"}
  12. \item{languages}{Font languages to include (dependent on the font.) See
  13. \code{\link[=google_language_codes]{google_language_codes()}}.}
  14. }
  15. \value{
  16. A \code{"google_font"} object.
  17. }
  18. \description{
  19. Builds Google Fonts URL from family name. Extra weights are given in the
  20. \code{...} parameters. Languages can be specified in \code{languages} and must one or
  21. more of the language codes as given by \code{google_language_codes()}.
  22. }
  23. \examples{
  24. google_font("Josefin Sans", "400", "400i", "600i", "700")
  25. google_font("Josefin Sans", languages = c("latin-ext", "vietnamese"))
  26. }