Written by Allen Wyatt (last updated March 4, 2021)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365
After you have inserted a picture in your document, you can control how surrounding text flows around it. You can either turn wrapping off or you can cause Word to flow text around the image. To control text wrapping for a graphic, follow these steps
Once you have selected a wrapping method, you can modify the wrapping points using the techniques described in other WordTips. (Modifying the wrapping points allows you to get text very close to your image, including on top of it, if desired.)
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (11840) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Wrapping Text Around a Graphic.
Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!
Need to add a graphic watermark to a document? It's not that hard to do but making the watermark permanent can be a bit ...
Discover MoreWhen processing a document using a macro, you may need for your macro to figure out the sizes of the images in your ...
Discover MoreIf you have some graphics inserted in your document, you may want to adjust the horizontal space between those graphics. ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2017-03-25 09:58:42
Allen, When I was tasked by a publisher to prepare a document for publication, I was asked not to allow hyphenation with less than three letters at the end or the beginning of a line. My method was to create a macro that cancelled checking the offending word, represented by the following macro:
Sub DlRemHyphenation()
' Select word from which to remove hyphenation
' Used to eliminate any part of a hyphenated word with less than 3 letters
' Shortcut = Alt+H
Selection.LanguageID = wdEnglishUS
Selection.NoProofing = True
Application.CheckLanguage = False
End Sub
Example: ad-
vice. or excit-
ed.
This has worked well for over a decade, but the only problem is that I have to visually search for the offending word. I've always wanted to ask you how can I find each hyphen with two only two characters separated by an automatic hyphen so I can run the macro, perhaps combining both operations in one macro. However, I was not able to find the symbol that Word uses for this automatic macro. Is there a way to do that?
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2023 Sharon Parq Associates, Inc.
Comments