我已经使用openxlsx从R输出数据,并且想要在标题字符串的一部分中添加上标

问题描述 投票:0回答:1

我正在使用 openxlsx 包将数据表输出到 Excel 中。我已经给表格起了一个标题。有没有办法让标题的一部分变成上标?

例如,我如何使该字符串的“1,2,3”部分成为上标:

# creates table title
writeData(wb, tab_name,
          'my table title 1,2,3',
          startCol = 1, startRow = 2)
r openxlsx
1个回答
0
投票

使用 Unicode。

paste('my table title', '\U00B9, \U00B2, \U00B3')

© www.soinside.com 2019 - 2024. All rights reserved.