Latex in Plot Labels
Hi,
I read somewhere that Latex is now possible to label plots, but it does not seem to work for me. I have the following code and would expect the Labels T1_{Al-} and T2_{Al-} to be formatted as subscripts but it shows them as is. Am i doing something wrong here or is there another way to have subscripts?
jaspAnova::AnovaRepeatedMeasures(
version = "0.17.2",
contrasts = list(list(contrast = "none", variable = "Zeit")),
descriptivePlotErrorBar = TRUE,
descriptivePlotHorizontalAxis = "Zeit",
descriptivePlotYAxisLabel = "Gesamtscore",
rainCloudHorizontalAxis = "Zeit",
rainCloudYAxisLabel = "Gesamtscore",
repeatedMeasuresCells = list("sum_r_v1n1", "sum_r_v2n1"),
repeatedMeasuresFactors = list(list(levels = list("T1_{Al-}", "T2_{Al-}"), name = "Zeit")),
withinModelTerms = list("Zeit")
Comments
Hi,
As far as I know, it's only possible to use LaTeX in annotations, e.g., here:
you could try subscripts that are supported by Unicode (see https://en.wikipedia.org/wiki/Unicode_subscripts_and_superscripts#Superscripts_and_subscripts_block).
Cheers,
Don