Are there any plugins for Microsoft Word to format source code samples inside a regular document?

I need to write a technical document in Microsoft Word, with source code samples sprinkled throughout the text.

Is there any way, without leaving Microsoft Word (maybe a plugin?), to format the source code snippets within the document in the same easy way that SuperUser.com provides - a little button that defines everything as code and formats it appropriately?


You can create a "code style" using the Format / Styles and Formatting option. From the "Styles and Formatting" sidebar, create a new style to use for code. You can specify the font, size, tabs, borders, shading, shortcut keys, etc...

Once you have a new code style, select your code in the document and apply your new style. You can select multiple locations in text by holding the button while selecting the text.

Another advantage of using styles is that you can easily change the format of any text that uses that style. You just change the properties of the style, and any text that uses that style is automatically updated.


I know you asked for a solution without leaving Word. But still I hope you realize that if you copy code from within Visual Studio and past it into Word, it will retain all formating (including the color scheme).

When copy-pasting from other locations, at the very minimum you will retain space and newlines information which will serve as the basis for code formating when you then apply the advise on this thread by Chrisbux, you can change the font style to a fixed width like courier, terminal, etc.

Word will not recognize differences between identifiers, keywords, operators, literals, etc. And neither there is a plugin to my knowledge that can do it. Most code samples on Word documents I've seen (and I've seen many as a software developer working for a company that documents the development process every step of the way), are simply done by using a style to place the code into a well delineated box and define a fixed-width font.