Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

Is there any useful style of MS Word for code?

Writer Matthew Harrington

I need to use MS Word to make some documentation for Python code. Line number, or boxing around the code, or anything would be better than just use normal format.

Is there any good/useful style/method for code documentation purposes?

5 Answers

Do you have an editor that formats python code for you? I ask because Visual Studio will copy code onto the clipboard with formatting intact so that when pasted into word it looks identical (give or take line lengths).

Visual Studio itself supports python now. The Community Edition doesn't have the somewhat restrictive licensing limitations of the old Express edition; meaning it's likely to be an - admittedly heavyweight - option to get formatted code into other documents even if your preferred editor doesn't put syntax highligfhed code onto the clipboard.

At the most basic you can select a monospaced font - usually Courier New - as your code font. You won't get all the syntax highlighting, but it will stand out from the rest of your document.

You need to add Office-addin calledEasy Syntax Highlighter

from Insert tabclick ... > Add-ins >

search for Easy Syntax Highlighter > Add

It will show as a new tab

Setting > choose your prefered Theme

Personally I like Solarized Light

If you manage to copy code style from your IDE, you'll find that the font used for Eclipse IDE (for example) is "Consolas". I find that it looks pretty good in MS Word.

If you require 100% of the formatting you might be able to find an online tool that will do the highlighting for you.

0

If you have Notepad++ then just select the code then select menu Plugins > NppExport > Copy RTF to clipboard and paste to Word

Notepad copy with format


In VS Code there's a similar feature. Just press Ctrl+Shift+P then search for the "Copy With Syntax Highlighting" command

VS Code copy with syntax highlighting

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy