theme_BioMath.Rd
A ggplot2 theme based on the BioMath corporate design.
theme_BioMath(
base_size = 11,
base_family = "",
base_color = "#001509",
axis_title_bold = FALSE,
axis_title_just = "rt",
ticks = FALSE,
grid_x = FALSE,
grid_y = FALSE,
grid_color = "#C0BCB5",
grid_linetype = "dotted",
facette_distance = 1,
facette_box = FALSE,
facette_box_color = "#C0BCB5",
title_size = 14,
subtitle_size = 10,
axistext_size = 10,
ggtext_axis = TRUE,
whitebg = TRUE,
...
)
Base font size, given in pts.
Base font family
Base color for text and lines
Should axis titles be bold?
Justification of axis titles. rt
translates to "right" (x-axis) "top" (y-axis).
Should ticks be drawn on the axes?
Should there be major grid lines for the x-axis?
Should there be major grid lines for the y-axis?
Color of the grid lines
Linetype of the grid lines
Distance between facettes
Should a rectangle be drawn around each facette?
Color of the rectangle around each facette
Title font size, given in pts.
Subtitle font size, given in pts.
Axis text font size, given in pts.
If FALSE
, axis texts are rendered via ggplot2::element_text()
instead of ggtext::element_markdown()
. This can prevent potential rendering issues.
If TRUE
, plot background is white, otherwise transparent.
Other arguments passed to the underlying ggplot2::theme_minimal()