I saw some issues when using plotmath expressions in powerpoint files. Specifically, if an expression() is composed of multiple elements joined using "*" or "~", separate textboxes are created in PowerPoint, which leads faulty vertical alignment. It would be better if the whole expression were contained in one textbox.
For example, the following code displays buggy vertical alignment of the text:
plot(1:10)
title(expression("foo" "-" "oo"))
Also, using an en dash in plotmath expressions causes a bug where each element of the expression is individually centered and overlaps.
I saw some issues when using plotmath expressions in powerpoint files. Specifically, if an expression() is composed of multiple elements joined using "*" or "~", separate textboxes are created in PowerPoint, which leads faulty vertical alignment. It would be better if the whole expression were contained in one textbox.
For example, the following code displays buggy vertical alignment of the text:
plot(1:10) title(expression("foo" "-" "oo"))
Also, using an en dash in plotmath expressions causes a bug where each element of the expression is individually centered and overlaps.
P.S. thank you for developing this great package!