Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Formatting Footnote and Endnote References.
Written by Allen Wyatt (last updated January 2, 2021)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365
David writes for journals, and those journals require that footnote or endnote references be placed within parentheses and separate multiple sequential references by commas, as in (1,3,4,5,9). He wondered if there was a way to modify how Word inserts these references so that they automatically meet the criteria of the journals for which he writes.
The answer, David, is yes and no. Yes, you can modify some of the default characteristics of the footnote or endnote reference. For instance, you can make it so that they are not superscripted, or you can modify them so they are bold or a different typeface. All you have to do is modify the style that Word uses to define how footnote and endnote references appear. In the case of footnote references, you would modify the built-in style called "Footnote Reference." Likewise, for the endnote references, you would modify the "Endnote Reference" style.
Now for the bad news: You cannot modify anything about how Word inserts references other than what you can modify in the above-mentioned styles. This means that you cannot instruct Word to automatically place parentheses around the references, nor to separate them by commas. You can, however, create a macro to insert the first reference with its attendant parentheses. The following macro inserts parentheses at the insertion point, and then inserts a footnote between them:
Sub FootNt() Selection.TypeText Text:="()" Selection.MoveLeft Unit:=wdCharacter, _ Count:=1 ActiveDocument.Footnotes.Add _ Range:=Selection.Range, Reference:="" End Sub
Between the style changes and the macro, most of the work of correctly formatting your references is completed. The only thing you need to do is manually insert a comma and the next references if you have multiple sequential references.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (9720) 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: Formatting Footnote and Endnote References.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
Adding footnotes to a document is essential for some types of writing. How you view those footnotes depends on the ...
Discover MoreWhen you add hyperlinks to a document, Word makes them active, meaning you can click them to open the target of the ...
Discover MoreFootnote references normally appear as superscripted digits, both in the main body of your document and in the footnotes ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2024-08-03 10:43:26
David E. Hoffman
Has anyone developed a macro that would create trailing endnotes? These are endnotes from text in the body of a manuscript in which the pointer is not a subscript digit but rather the page number on which the words appear followed by an italic quotation of the words at issue. Such as:
00 [ital]the ice was black[endital] Winter Author, "The Ice Was Black," History of Ice, June 1817, p. 12.
The macro would work off a current selection on a page of text to determine the italic; it would then enter the endnote, first the page number then the italic, and stop at a cursor position for the user to add the reference material.
Publishers of trade nonfiction are increasing asking for such trailing endnotes. Doing it by hand is difficult. Is there a macro?
2021-01-02 17:08:23
Tomek Dluzniewski
Is there a way to have different reference formatting in the document text and in the endnote (or footnote). I would like to have numeric references in text as superscripts, and in the list of references in the endnotes as regular numbers, preferably as a number followed by a period and then a space or tab.
In the past I used a macro to reformat the reference numbers after the document was finished, but may be there is an easier way;-)
Tomek
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 © 2024 Sharon Parq Associates, Inc.
Comments