419 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
87
views
Superscript/Subscript Font Size Appears Smaller in Old Outlook Versions Despite Correct HTML/CSS
I'm using the Tiptap editor to create email templates, which are converted from MJML to plain HTML for use in marketing emails.
Recently, I added the ability for users to customize font sizes for ...
0
votes
0
answers
115
views
How to keep compact gtsummary theme while having superscripts in labels?
I have created a gtsummary table using the theme_gtsummary_compact() and would like to show a superscript in one of my variable labels. This last part works with the fmt_markdown() function but I then ...
3
votes
2
answers
141
views
How to display superscript in C# console application?
I am unable to print numbers in superscript when the string contains variables.
This works:
Console.OutputEncoding = System.Text.Encoding.Unicode;
Console.Write("2\xB3");
This does not:
...
0
votes
2
answers
134
views
Word Macro - Superscripting all footnote numbers at the footnote-section at the bottom of the page
I'd like a macro in Office Word which superscripts all footnote numbers at the footnote-section at the bottom of the page.
Note: It's the footnote numbers at the bottom of the page I want ...
0
votes
0
answers
23
views
How to use superscript in ggplot2 title using a vector [duplicate]
I want to make a ggplot title with a superscript using a vector. A simple example would be like this:
df <- data.frame(x= rnorm(100)); df$y <- df$x**2
plot_title <- "Formula: y= x^2&...
0
votes
1
answer
54
views
Matlab Superscripts in fitlm figure title
I am conducting some linear modelling and plotting the output. I wish to include the r^2 value in the title title doc, but with the 2 as a superscript.
For some reason, the line of code from the ...
0
votes
1
answer
39
views
output ggplot figure has unadjusted y axis label because of superscript of power of 10
I used the code below in my ggplot code because I would like to have the label "Content" and the power of 10^-3 (μg/mg DW) in two different lines of the y axis label.
labs(y=expression(paste(...
0
votes
1
answer
46
views
Adding a superscript in ggplot2 facet_grid() in joint plots [duplicate]
I have two datasets where I am plotting using ggplot2. In the facet_grid() I would like to add a superscript of "0" after the 30 and 60 in their title. And then I would like to merge the ...
0
votes
0
answers
53
views
Word VBA Macro for linearizing tables is removing superscript
I am currently working with a macro that grabs text from a two column header table and takes it out of the cell basically stacks it. The issue I am having is that when it does that it removes the ...
0
votes
0
answers
73
views
How to add superscript and subscript in correlation matrix using metan library in r studio
I have used the following code in correlation matrix using metan library in r studio,
library(metan)
View(CorrawpomF)
All <- corr_coef(CorrawpomF)
all
plot(All)
and the output of the code is like ...
-1
votes
1
answer
122
views
Unicode superscript encoding rule [duplicate]
The following UTF-8 sequence \x6D\xE1\xB5\x90 creates a 'm' with a superscript 'm': 'mm'.
What is the Unicode encoding rule for this? How to create a 'xx' or any other arbitrary superscript?
0
votes
1
answer
171
views
How to add superscripts to each circle of a venn diagram using ggvenn?
I am trying to add superscripts to each circle of one venn diagram. I am using the R package ggvenn and these have been my attempts.
#Normal situation
set.seed(20190708)
genes <- paste("gene&...
0
votes
1
answer
457
views
Change row names in kable (RMarkdown)
I have produced the following table with kable package, in RMarkdown.
Here's the dataframe:
structure(list(...1 = c("Catalunya", "PIB", "Demanda interna1",
"Demanda ...
1
vote
1
answer
107
views
Getting Superscripts in Plot Axis Labels Using Character String Columns From a Data Frame
I have a data frame of variable names and units.
df1 <- data.frame(Variable = paste('Variable', 1:4), Unit = c('mm', 'cm ^ 2', 'cm ^ 2 * hr ^ -1', 'cm ^ 3 * cm ^ -2 * hr ^ -1'))
# > df1
# ...
0
votes
1
answer
294
views
how can I use math expressions in ggplot2 facet labels
In the following plot, I would like to replace "d" by delta, include a per mil symbol at the end, and use superscripts in: d13C, d15N and d34S.I got it when I use a biplot (e.g. plot + ylab(...