1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/themes.R
\name{theme_cowplot}
\alias{theme_cowplot}
\alias{theme_half_open}
\title{Create the default cowplot theme}
\usage{
theme_cowplot(
font_size = 14,
font_family = "",
line_size = 0.5,
rel_small = 12/14,
rel_tiny = 11/14,
rel_large = 16/14
)
theme_half_open(
font_size = 14,
font_family = "",
line_size = 0.5,
rel_small = 12/14,
rel_tiny = 11/14,
rel_large = 16/14
)
}
\arguments{
\item{font_size}{Overall font size.}
\item{font_family}{Font family for plot title, axis titles and labels, legend texts, etc.}
\item{line_size}{Line size for axis lines.}
\item{rel_small}{Relative size of small text (e.g., axis tick labels)}
\item{rel_tiny}{Relative size of tiny text (e.g., caption)}
\item{rel_large}{Relative size of large text (e.g., title)}
}
\value{
The theme.
}
\description{
The default cowplot theme, with a simple half-open frame and no grid. This theme
used to be set by default after loading the cowplot package, but this is no longer
the case.
}
\details{
Both \code{theme_cowplot()} and \code{theme_half_open()} provide exactly the same styling.
}
\examples{
library(ggplot2)
ggplot(mtcars, aes(disp, mpg)) +
geom_point() +
theme_cowplot(font_size = 12)
}
|