Re: body text default by Jeff
Jeff
Fri Jul 15 21:00:36 CDT 2005
Thank you very much. Very helpful.
Jeff
In news:eM1ka%23BiFHA.3012@TK2MSFTNGP12.phx.gbl,
Klaus Linke <info@fotosatz-kaufmann.de> posted:
| | Hi Jeff,
| |
| | Using body text instead of normal likely won't help in the long run.
| |
| | Document map can change the outline level (Format > Paragraph, top
| | right corner).
| | It's not supposed to happen if there are headings already... Not
| | sure if you can depend on that.
| |
| | And it will likely happen with any style.
| |
| | You can fix the damage manually (as you did by applying another
| | style, or say by reapplying the style, or Ctrl+Q to remove manual
| | paragraph formatting, or by changing the outline level back).
| | Or you can use a macro that resets the outline level of all
| | paragraphs to that defined in the style:
| |
| | Dim myPara As Paragraph
| | For Each myPara In ActiveDocument.Paragraphs
| | myPara.OutlineLevel = _
| | myPara.style.ParagraphFormat.OutlineLevel
| | Next myPara
| |
| | Regards,
| | Klaus
| |
| |
| |
| | "Jeff" <jeff@phony.com> wrote:
| | | In news:eju%23hpWgFHA.516@TK2MSFTNGP09.phx.gbl,
| | | Luc <notreal@pandora.be> posted:
| | | | | Jeff,
| | | | | Yes that does happen, mostly when there are empty paragraphs
| | | | | above and beyond or when there is not much text in de
| | | | | paragraph. But I have the impression it is not consistent.
| | | | | You can of course change every heading style to let it be
| | | | | followed by the body style. Activate your styles and
| | | | | formatting task pane, click on the arrow next to the heading
| | | | | style, choose change, in the properties section choose body
| | | | | in the "next paragraph list" and hit OK. Be aware that the
| | | | | body text style automatically gives you 6pt space after.
| | | | | Luc
| | |
| | | Thanks.