12

I'm trying to automate the creation of .docx files (WordML) with the help of python-docx (https://github.com/mikemaccana/python-docx). My current script creates the ToC manually with following loop:

for chapter in myChapters:
    body.append(paragraph(chapter.text, style='ListNumber'))

Does anyone know of a way to use the "word built-in" ToC-function, which adds the index automatically and also creates paragraph-links to the individual chapters?

Thanks a lot!

Joseph jun. Melettukunnel
  • 6,267
  • 20
  • 69
  • 90

4 Answers4

20

The key challenge is that a rendered ToC depends on pagination to know what page number to put for each heading. Pagination is a function provided by the layout engine, a very complex piece of software built into the Word client. Writing a page layout engine in Python is probably not a good idea, definitely not a project I'm planning to undertake anytime soon :)

The ToC is composed of two parts:

  1. the element that specifies the ToC placement and things like which heading levels to include.
  2. the actual visible ToC content, headings and page numbers with dotted lines connecting them.

Creating the element is pretty straightforward and relatively low-effort. Creating the actual visible content, at least if you want the page numbers included, requires the Word layout engine.

These are the options:

  1. Just add the tag and a few other bits to signal Word the ToC needs to be updated. When the document is first opened, a dialog box appears saying links need to be refreshed. The user clicks Yes and Bob's your uncle. If the user clicks No, the ToC title appears with no content below it and the ToC can be updated manually.

  2. Add the tag and then engage a Word client, by means of C# or Visual Basic against the Word Automation library, to open and save the file; all the fields (including the ToC field) get updated.

  3. Do the same thing server-side if you have a SharePoint instance or whatever that can do it with Word Automation Services.

  4. Create an AutoOpen macro in the document that automatically runs the field update when the document is opened. Probably won't pass a lot of virus checkers and won't work on locked-down Windows builds common in a corporate setting.

Here's a very nice set of screencasts by Eric White that explain all the hairy details

Mad Physicist
  • 107,652
  • 25
  • 181
  • 264
scanny
  • 26,423
  • 5
  • 54
  • 80
15

Sorry for adding comments to an old post, but I think it may be helpful. This is not my solution, but it has been found there: https://github.com/python-openxml/python-docx/issues/36 Thanks to https://github.com/mustash and https://github.com/scanny

    from docx.oxml.ns import qn
    from docx.oxml import OxmlElement

    paragraph = self.document.add_paragraph()
    run = paragraph.add_run()
    fldChar = OxmlElement('w:fldChar')  # creates a new element
    fldChar.set(qn('w:fldCharType'), 'begin')  # sets attribute on element
    instrText = OxmlElement('w:instrText')
    instrText.set(qn('xml:space'), 'preserve')  # sets attribute on element
    instrText.text = 'TOC \\o "1-3" \\h \\z \\u'   # change 1-3 depending on heading levels you need

    fldChar2 = OxmlElement('w:fldChar')
    fldChar2.set(qn('w:fldCharType'), 'separate')
    fldChar3 = OxmlElement('w:t')
    fldChar3.text = "Right-click to update field."
    fldChar2.append(fldChar3)

    fldChar4 = OxmlElement('w:fldChar')
    fldChar4.set(qn('w:fldCharType'), 'end')

    r_element = run._r
    r_element.append(fldChar)
    r_element.append(instrText)
    r_element.append(fldChar2)
    r_element.append(fldChar4)
    p_element = paragraph._p
Kostia Medvid
  • 1,211
  • 13
  • 13
  • `instrText.text = 'TOC \o "1-3" \h \z \u' # change 1-3 depending on heading levels you need ^ SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 19-20: truncated \uXXXX escape` – Mawg says reinstate Monica Dec 20 '18 at 13:50
  • 1
    Aha! See [this page](https://github.com/python-openxml/python-docx/issues/36), where @Sup3rGeo says "I also had to escape \\o \\h \\z \\u for it to work without errors", after which it works for me. I suggest that you update your otherwise excellent answer. Now, if only there were some way to programmatically update the table of contents ;-) – Mawg says reinstate Monica Dec 20 '18 at 13:56
  • 1
    @Mawg Thank you for the suggestion. Will update the comment. – Kostia Medvid Jan 03 '19 at 01:07
  • Great (+1) ! That will certainly help others in future (it certainly helped me, once I figured out the double escaping). Now, if only there were some way to programmatically update the table of contents ;-) – Mawg says reinstate Monica Jan 03 '19 at 07:08
  • 1
    @MawgsaysreinstateMonica or anyone else have you found a way on ubuntu for updating the table of contents? – melutovich Aug 13 '20 at 20:54
  • Is there a way to change the resulting TOC's style? For me it always resets to Arial 9. – Managarm Nov 30 '22 at 16:40
11

Please see explanations in the code comments.

# First set directory where you want to save the file

import os
os.chdir("D:/")

# Now import required packages

import docx
from docx import Document
from docx.oxml.ns import qn
from docx.oxml import OxmlElement

# Initialising document to make word file using python

document = Document()

# Code for making Table of Contents

paragraph = document.add_paragraph()
run = paragraph.add_run()

fldChar = OxmlElement('w:fldChar')  # creates a new element
fldChar.set(qn('w:fldCharType'), 'begin')  # sets attribute on element

instrText = OxmlElement('w:instrText')
instrText.set(qn('xml:space'), 'preserve')  # sets attribute on element
instrText.text = 'TOC \\o "1-3" \\h \\z \\u'   # change 1-3 depending on heading levels you need

fldChar2 = OxmlElement('w:fldChar')
fldChar2.set(qn('w:fldCharType'), 'separate')

fldChar3 = OxmlElement('w:t')
fldChar3.text = "Right-click to update field."

fldChar2.append(fldChar3)

fldChar4 = OxmlElement('w:fldChar')
fldChar4.set(qn('w:fldCharType'), 'end')

r_element = run._r
r_element.append(fldChar)
r_element.append(instrText)
r_element.append(fldChar2)
r_element.append(fldChar4)

p_element = paragraph._p

# Giving headings that need to be included in Table of contents

document.add_heading("Network Connectivity")
document.add_heading("Weather Stations")

# Saving the word file by giving name to the file

name = "mdh2"
document.save(name+".docx")

# Now check word file which got created

# Select "Right-click to update field text"
# Now right click and then select update field option
# and then click on update entire table

# Now,You will find Automatic Table of Contents 
buhtz
  • 10,774
  • 18
  • 76
  • 149
Vardhmaan Jain
  • 111
  • 1
  • 5
  • 2
    Thanks for the code snippet, But why do we have to update the Table of content manually. Is there a way to automate that in python script as well? – rain Apr 08 '21 at 02:29
  • 2
    I think I found out how to auto-update. Add these lines of code for fldChar3. fldChar3 = OxmlElement('w:updateFields') fldChar3.set(qn('w:val'), 'true') – rain Apr 08 '21 at 15:53
  • 2
    When I open word document, it says that the document is linked to another document. What's the reason for that? – hannah montanna Jul 26 '21 at 07:47
  • That's excellent! Nice-to-have: how would you enumerate the headings? – VengaVenga Nov 05 '22 at 15:49
  • @rain Can you please add your approach with autoupdate with full code as a separate answer? I don't get it. ;) – buhtz Dec 06 '22 at 09:58
  • See also https://github.com/elapouya/python-docx-template/issues/151#issuecomment-442722594 – buhtz Dec 06 '22 at 10:20
5

@Mawg // Updating ToC

Had the same issue to update the ToC and googled for it. Not my code, but it works:

word = win32com.client.DispatchEx("Word.Application")
doc = word.Documents.Open(input_file_name)
doc.TablesOfContents(1).Update()
doc.Close(SaveChanges=True)
word.Quit()
sliceoflive
  • 59
  • 1
  • 1
  • 3
    This needs windows environment. https://stackoverflow.com/questions/62158702/how-do-install-pywin32-on-mac-os Will need to explore on how to do this step in Ubuntu/Mac environments. – rain Apr 14 '21 at 19:00