What is the best way to insert source code examples into a Microsoft Word document?

前端 未结 15 1489
南笙
南笙 2020-12-22 16:05

I have to write some documents that will include source code examples. Some of the examples will be written from the IDE, and others would be written in place. My examples a

相关标签:
15条回答
  • It kind of depends on the IDE. Both Visual Studio and Eclipse, for example, will allow you to copy as RTF and paste into Word, keeping all your formatting.

    Notepad++ has a plugin called "NppExport" (comes pre-installed) that allows you to copy to RTF, though I don't care much for Notepad++'s syntax highlighting (it'd definitely be passable though). What it does do is support dozens of languages, whereas the aforementioned IDEs are limited to a handful each (without other plug-ins).

    0 讨论(0)
  • 2020-12-22 16:10

    You need to define a style in your Word document and use that for source code. I usually have a style called "Code" which has a monospaced font in a small point size, fixed size tabs, single line spacing, no before/after paragraph spacing, etc. You only need to define this style once and then reuse it. You paste in your source code and apply the "Code" style to it.

    Note that some editors (e.g. Xcode on the Mac) add RTF as well as text to the clipboard when copying/pasting between applications - Word recognises RTF and helpfully retains the formatting, syntax colouring, etc.

    Source code in Xcode:

    Copied and pasted to Word:

    (Note: it's a good idea to disable spell-checking in your "Code" style in Word.)

    0 讨论(0)
  • 2020-12-22 16:11

    I absolutely hate and despise working for free for Microsoft, given how after all those billions of dollars they STILL do not to have proper guides about stuff like this with screenshots on their damn website.

    Anyways, here is a quick guide in Word 2010, using Notepad++ for syntax coloring, and a TextBox which can be captioned:

    1. Choose Insert / Text Box / Simple Text Box
    2. A default text box is inserted
    3. Switch to NPP, choose the language for syntax coloring of your code, go to Plugins / NPPExport / Copy RTF to clipboard
    4. Switch back to word, and paste into the text box - it may be too small ...
    5. ... so you may have to change its size
    6. Having selected the text box, right-click on it, then choose Insert Caption ...
    7. In the Caption menu, if you don't have one already, click New Label, and set the new label to "Code", click OK ...
    8. ... then in the Caption dialog, switch the label to Code, and hit OK
    9. Finally, type your caption in the newly created caption box
    0 讨论(0)
  • 2020-12-22 16:15

    I recently came across this post and found some useful hints. However, I ended up using an entirely different approach which suited my needs. I am sharing the approach and my reasoning of why I chose this approach. The post is longer than I would have liked, but I believe screenshots are always helpful. Hopefully, the answer would be useful to someone.

    My requirements were the following:

    1. Add code snippets to a word document, with syntax highlighting for easier visibility and differentiation of code and other text.
    2. Code snippet shall be inline with other text.
    3. Code snippet shall break across pages smoothly without any extra effort.
    4. Code snippet shall have a nice border.
    5. Code snippet shall have spell-check disabled.

    My Approach is as listed below:

    1. Use external tool to achieve syntax highlighting requirement 1 above. One could use notepad plus plus as described above. However, I use the tool present here - http://www.planetb.ca/syntax-highlight-word. This gives me the option to use line number, as well as very nice syntax highlighting (Please use Google Chrome for this step, because syntax highlight is not copied when using Mozilla Firefox, as also pointed out by couple of user comments). Steps to achieve syntax highlighting are listed below:
      • Open the website provided above in chrome and Copy the code snippet in the text area. I will be using a sample XML to demonstrate this (XML sample from here - http://www.service-architecture.com/articles/object-oriented-databases/xml_file_for_complex_data.html).
      • Select the language from drop down menu.
      • Click "Show Highlighted" button. It will open a new tab, with syntax-highlighted code snippet, in this case the XML sample we chose. See image below for example.
      • To Turn off the line numbers, inspect the page in chrome. Then, under styles, deselect the "margin" property in ".dp-highlighter ol", as shown in the image below. If you want to keep the line numbers, go to next step.
      • Select the syntax-highlighted code and click copy. Now your code is ready to be pasted into Microsoft word. Thanks to this blog for providing this information - http://idratherbewriting.com/2013/04/04/adding-syntax-highlighting-to-code-examples-online-and-in-microsoft-word/.
    2. To achieve requirements 2, 3 and 4 above, use table in Microsoft word, to insert the code snippet. Steps are listed below:

      • Insert a table with single column.
      • Paste the copied text from step 1. in the table column. I have kept the line numbers to show how well this works with Microsoft word.
      • Apply border, as you like. I have used size 1pt. Resulting Microsoft word snippet will appear as shown in screenshot below. Note how nicely it breaks across the page - NO extra effort needed to manage this, which you would face if inserting "OpenDocument Text" object or if using "Simple TextBox".
    3. To achieve requirement 5, follow the steps below:

      • Select the entire table or the text.
      • Go to Review tab. Under Language, choose "Proofing Language". A new pop-up will be presented.
      • Select "Do not check spelling or grammar". Then, click OK.
      • Resulting text has spell-check disabled. Final result is shown in the image below and meets all the requirements.

    Please provide if you have any feedback or improvements or run into any issues with the approach.

    0 讨论(0)
  • 2020-12-22 16:16

    If you are still looking for an simple way to add code snippets.

    you can easily go to [Insert] > [Object] > [Opendocument Text] > paste your code > Save and Close.

    You could also put this into a macro and add it to your easy access bar.

    notes:

    • This will only take up to one page of code.
    • Your Code will not be autocorrected.
    • You can only interact with it by double-clicking it.
    0 讨论(0)
  • 2020-12-22 16:19

    You can use Open Xml Sdk for this. If you have the code in html with color and formatting. You can use altchunks to add it to the word documents. Refer this post Add HTML String to OpenXML (*.docx) Document Hope this helps!

    0 讨论(0)
提交回复
热议问题