![]() |
#1
|
|||
|
|||
![]()
My publisher requires that normal text paragraphs begin with no indent and 3 spaces.
Is there any way of defining a paragraph style to do this? Many thanks. |
#2
|
|||
|
|||
![]()
There is no way to do this as a paragraph style. My suggestion would be to simply set the first-line indent for the style to the location you would get with three spaces.
Using spaces for placement is a holdover from using typewriters. 4. Use Tables and Tabs to Arrange Text in Microsoft Word 3. Using Styles to Format Text Would your publisher, instead, accept space between paragraphs, perhaps in a block style? |
#3
|
|||
|
|||
![]()
It might seem old fashioned, but that's what they want - 3 spaces. Apparently it makes it easier when they are feeding it into their desktop publishing program.
|
#4
|
||||
|
||||
![]()
In that case you will have to tap the space bar three times, because text (which is what spaces are) is not included in a style. Or you could ignore the spaces and apply the spaces to text in the normal style with a macro or the replace function e.g.
Code:
Sub Macro1() Dim oPara As Paragraph For Each oPara In ActiveDocument.Paragraphs If oPara.Style = "Normal" Then Do While oPara.Range.Characters(1) = Chr(32) oPara.Range.Characters(1).Delete Loop oPara.Range.InsertBefore " " End If Next oPara lbl_Exit: Set oPara = Nothing Exit Sub End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
#5
|
|||
|
|||
![]()
My word, that's an interesting solution! I'll give it a go.
|
#6
|
|||
|
|||
![]()
A couple of other alternatives:
I like Graham's macro. It can be run repeatedly without adding more spaces where it had already been run. Note, tab is treated as text and will not be replaced by the spaces, you would need to use the Replace function for that. In case you need it, here are his instructions for Installing Macros. |
#7
|
||||
|
||||
![]()
Cross-posted at: https://www.office-forums.com/thread...style.2350214/
For cross-posting etiquette, please read: http://www.excelguru.ca/content.php?184
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
#8
|
|||
|
|||
![]()
Define a multilevel list. For level 1 put the number as three spaces. Ensure that there is no indenting and that the symbol to follow the number is set to nothing. Link the level 1 to the style Normal.
|
#9
|
|||
|
|||
![]() Quote:
In addition, although it may be three spaces in the definition, there are not three editable spaces in the text, just the block of space. I would recommend using Graham's macro instead. It is less likely to result in other issues both with your document and your publisher. Here is the definition dialog which you reach by pressing the "More" button. 00 deleteme 1.png |
#10
|
|||
|
|||
![]()
The real problem here is that the publisher doesn't know how to use their publishing software properly so pushed the problem onto authors.
|
#11
|
|||
|
|||
![]()
I agree, however, this is like the situation of the "boss" who wants things done his/her way. There is a terrific power imbalance.
|
#12
|
||||
|
||||
![]()
There is also no such thing as a standard 'three spaces' definition. Three spaces in what font and at what point size (it's different for every font & point size)?
Moreover, if you're using justification, the 'three spaces' will expand or shrink to accommodate that! Consequently, every paragraph in your document could have a different 'three spaces' interpretation...
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
meileetan | Word | 7 | 06-07-2013 01:09 AM |
![]() |
CTwriter | Word | 3 | 01-25-2013 12:38 AM |
Paragraph Style for Thesis | groxby | Word | 1 | 03-24-2012 04:45 AM |
Huge spaces between words in a justified paragraph! | techdaemon | Word | 2 | 02-22-2010 12:17 AM |
Character style stripped while applying paragraph style | sams_gates | Word | 0 | 08-29-2009 02:03 AM |