View Single Post
 
Old 09-04-2024, 12:44 AM
Guessed's Avatar
Guessed Guessed is offline Windows 10 Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,158
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

After you've updated the TOC you can select it and press Ctrl-Q to reset the TOC paragraphs to their style definitions. This should be sufficient to remove the Jason tabs.

I use a macro to update the TOCs in order not to worry about the Jason tab issue.
Code:
  'remove the jason tabs (local formatting tabs inserted in toc with hanging text)
  Dim aTOC as TableOfContents
  For Each aTOC In ActiveDocument.TablesOfContents
    aTOC.Update
    aTOC.Range.ParagraphFormat.Reset
  Next aTOC
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote