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.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
Do you have documents that contain objects? Understanding how Word handles objects and the way they are anchored can make ...
Discover MoreSmartArt provides a way to add classy presentation graphics to your document. Here's a high-level explanation of what you ...
Discover MoreIf you insert a large picture in your document and your text jumps all around and the picture seems to disappear, don't ...
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 © 2022 Sharon Parq Associates, Inc.
Comments