In the python docx quickstart guide (https://python-docx.readthedocs.io/en/latest/) you can see that it is possible to use the add_run-command and add bold text to a sentence.
document = Document()
document.add_heading('Document Title', 0)
p = document.add_paragraph('A plain paragraph having some ')
p.add_run('bold').bold = True
I would to use the same add_run-command but instead add text that is superscripted or subscripted.
Is this possible to achieve?
Any help much appreciated!
/V