How can I embed programming source code in Powerpoint slide and keep code highlighting?
Is it possible to embed programming source code to Powerpoint slide, and keep code highlighting/coloring?
microsoft-powerpoint source-code
add a comment |
Is it possible to embed programming source code to Powerpoint slide, and keep code highlighting/coloring?
microsoft-powerpoint source-code
what application are you copying from?
– John T
Dec 21 '09 at 4:26
I use textmate, e-texteditor and eclipse the most.
– Yousui
Dec 21 '09 at 4:58
add a comment |
Is it possible to embed programming source code to Powerpoint slide, and keep code highlighting/coloring?
microsoft-powerpoint source-code
Is it possible to embed programming source code to Powerpoint slide, and keep code highlighting/coloring?
microsoft-powerpoint source-code
microsoft-powerpoint source-code
edited Apr 27 '16 at 9:17
anderas
1054
1054
asked Dec 21 '09 at 4:21
YousuiYousui
6224912
6224912
what application are you copying from?
– John T
Dec 21 '09 at 4:26
I use textmate, e-texteditor and eclipse the most.
– Yousui
Dec 21 '09 at 4:58
add a comment |
what application are you copying from?
– John T
Dec 21 '09 at 4:26
I use textmate, e-texteditor and eclipse the most.
– Yousui
Dec 21 '09 at 4:58
what application are you copying from?
– John T
Dec 21 '09 at 4:26
what application are you copying from?
– John T
Dec 21 '09 at 4:26
I use textmate, e-texteditor and eclipse the most.
– Yousui
Dec 21 '09 at 4:58
I use textmate, e-texteditor and eclipse the most.
– Yousui
Dec 21 '09 at 4:58
add a comment |
10 Answers
10
active
oldest
votes
After pasting, a small "Paste Options" icon appears below the pasted text.
Click this icon and choose "Keep Source Formatting" :

2
I don't see such aPaste Optionsicon. I don't see a button to give me these options. I'm using PowerPoint:mac 2011. I think I have seen it in Windows versions, however.
– A-B-B
Jul 19 '13 at 21:49
I tried different suggested methods and tools to copy from, but was actually missing that word/powerpoint was messing up the format by using "Destination Theme". Thanks!
– Tim Büthe
Jan 22 '14 at 11:23
add a comment |
Use Notepad++ with add-on NppExport.
Select the source code
Use Copy RTF to clipboard of NppExport
Paste into empty PPT slide (do not select any textfiled)
YES I wish I knew about this years ago
– Ken Bellows
Mar 9 '15 at 13:59
2
With version 6.9.2 or higher it's working without NppExport plugin. Just make right-click on the selected text -> Plugin commands -> Copy Text with Syntax Highlighting.
– Ivan Kochurkin
Aug 7 '16 at 19:00
Current version of Notepad++ already comes with this plugin :)
– fabriciorissetto
Nov 27 '16 at 17:53
This is the most amazing solution ever...
– BlaB
Jan 11 '17 at 18:08
add a comment |
Pygments can format almost every format to rtf:
pygmentize -f rtf -o code.rtf code.py
An online translator is available at pygments.org/demo
– koppor
Nov 25 '15 at 11:48
1
Same idea, straight to the OS X clipboardpygmentize -f rtf code.py | pbcopy.
– Christian Long
Mar 14 '16 at 14:28
add a comment |
If the source code does not need to be copied and pasted out of the presentation, a quick and dirty solution could be to simply take screenshots of the source code.
6
Image can be fuzzy when zoom in.
– Yousui
Dec 21 '09 at 4:58
Use the magnifier and then take a screenshot of that.
– wbeard52
May 17 '15 at 0:57
1
Doing so can increase the size of the presentation file significantly.
– Rufflewind
Nov 10 '16 at 17:39
add a comment |
- Click on Insert → Object → OpenDocument Text
- Paste on opened panel
- Click outside.
Note: Copying from Notepad++ will preserve colors and styling.
Doesn't work for power point 2010. I copied text from Notepad++ to Power point presentation but it looses colors and styling.
– AnkurTank
Jan 4 '16 at 5:11
1
If I use NPPExport pluging and use "copy RTF to clipboard" and then paste it works.
– AnkurTank
Jan 4 '16 at 5:13
add a comment |
Online syntax highlighter like TextMate seems good as well, http://markup.su/highlighter/
But after pasting into PowerPoint presentation new lines and line spacing is lost, so we can take a screen shot of the preview and paste it in our PowerPoint presentation
Pasting into ppt does not quite work here on Windows 10: The new lines are not pasted.
– koppor
Nov 24 '15 at 15:22
add a comment |
Pasting from Eclipse should retain formatting if the app supports it. I know Word does... not sure about PPT.
1
Works from Eclipse Juno to Word 2010, but not to Powerpoint 2010 - it loses the colours and converts some of them to bold text
– DNA
Sep 4 '13 at 17:21
add a comment |
I've had no success pasting into Powerpoint 2010 on Windows.
However, pasting from Eclipse into Word 2010 works.
You can then save this formatted text as an RTF file, then embed the RTF into a Powerpoint 2010 slide using Insert Object (and optionally select 'link' so you can edit and update the text in Word).
add a comment |
Using Notepad++ and Npp Export works great, but your text will end up with a white background.
To remove it, paste first the text in word with the "preserve source formatting" option. Then, select the text and in Home > Font, remove the background with the Text Highlight Color option.
Then, copy again the text from word, and paste it in powerpoint with the "preserve source formatting" option.
add a comment |
Copy the code and first paste that code into Microsoft word

Then do the formatting if necessary and then copy from word and paste back to powerpoint by right clicking and choosing use destination theme

Either way, what does “Then do the formatting if necessary” mean?
– Scott
Apr 26 '17 at 19:10
It means if you want to do some changes of your own like aligning or indentation of code
– selftaught91
Apr 26 '17 at 19:17
add a comment |
protected by Community♦ Feb 1 at 23:04
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
10 Answers
10
active
oldest
votes
10 Answers
10
active
oldest
votes
active
oldest
votes
active
oldest
votes
After pasting, a small "Paste Options" icon appears below the pasted text.
Click this icon and choose "Keep Source Formatting" :

2
I don't see such aPaste Optionsicon. I don't see a button to give me these options. I'm using PowerPoint:mac 2011. I think I have seen it in Windows versions, however.
– A-B-B
Jul 19 '13 at 21:49
I tried different suggested methods and tools to copy from, but was actually missing that word/powerpoint was messing up the format by using "Destination Theme". Thanks!
– Tim Büthe
Jan 22 '14 at 11:23
add a comment |
After pasting, a small "Paste Options" icon appears below the pasted text.
Click this icon and choose "Keep Source Formatting" :

2
I don't see such aPaste Optionsicon. I don't see a button to give me these options. I'm using PowerPoint:mac 2011. I think I have seen it in Windows versions, however.
– A-B-B
Jul 19 '13 at 21:49
I tried different suggested methods and tools to copy from, but was actually missing that word/powerpoint was messing up the format by using "Destination Theme". Thanks!
– Tim Büthe
Jan 22 '14 at 11:23
add a comment |
After pasting, a small "Paste Options" icon appears below the pasted text.
Click this icon and choose "Keep Source Formatting" :

After pasting, a small "Paste Options" icon appears below the pasted text.
Click this icon and choose "Keep Source Formatting" :

edited Aug 11 '11 at 6:54
3498DB
15.8k114862
15.8k114862
answered Dec 21 '09 at 8:03
harrymcharrymc
264k14272581
264k14272581
2
I don't see such aPaste Optionsicon. I don't see a button to give me these options. I'm using PowerPoint:mac 2011. I think I have seen it in Windows versions, however.
– A-B-B
Jul 19 '13 at 21:49
I tried different suggested methods and tools to copy from, but was actually missing that word/powerpoint was messing up the format by using "Destination Theme". Thanks!
– Tim Büthe
Jan 22 '14 at 11:23
add a comment |
2
I don't see such aPaste Optionsicon. I don't see a button to give me these options. I'm using PowerPoint:mac 2011. I think I have seen it in Windows versions, however.
– A-B-B
Jul 19 '13 at 21:49
I tried different suggested methods and tools to copy from, but was actually missing that word/powerpoint was messing up the format by using "Destination Theme". Thanks!
– Tim Büthe
Jan 22 '14 at 11:23
2
2
I don't see such a
Paste Options icon. I don't see a button to give me these options. I'm using PowerPoint:mac 2011. I think I have seen it in Windows versions, however.– A-B-B
Jul 19 '13 at 21:49
I don't see such a
Paste Options icon. I don't see a button to give me these options. I'm using PowerPoint:mac 2011. I think I have seen it in Windows versions, however.– A-B-B
Jul 19 '13 at 21:49
I tried different suggested methods and tools to copy from, but was actually missing that word/powerpoint was messing up the format by using "Destination Theme". Thanks!
– Tim Büthe
Jan 22 '14 at 11:23
I tried different suggested methods and tools to copy from, but was actually missing that word/powerpoint was messing up the format by using "Destination Theme". Thanks!
– Tim Büthe
Jan 22 '14 at 11:23
add a comment |
Use Notepad++ with add-on NppExport.
Select the source code
Use Copy RTF to clipboard of NppExport
Paste into empty PPT slide (do not select any textfiled)
YES I wish I knew about this years ago
– Ken Bellows
Mar 9 '15 at 13:59
2
With version 6.9.2 or higher it's working without NppExport plugin. Just make right-click on the selected text -> Plugin commands -> Copy Text with Syntax Highlighting.
– Ivan Kochurkin
Aug 7 '16 at 19:00
Current version of Notepad++ already comes with this plugin :)
– fabriciorissetto
Nov 27 '16 at 17:53
This is the most amazing solution ever...
– BlaB
Jan 11 '17 at 18:08
add a comment |
Use Notepad++ with add-on NppExport.
Select the source code
Use Copy RTF to clipboard of NppExport
Paste into empty PPT slide (do not select any textfiled)
YES I wish I knew about this years ago
– Ken Bellows
Mar 9 '15 at 13:59
2
With version 6.9.2 or higher it's working without NppExport plugin. Just make right-click on the selected text -> Plugin commands -> Copy Text with Syntax Highlighting.
– Ivan Kochurkin
Aug 7 '16 at 19:00
Current version of Notepad++ already comes with this plugin :)
– fabriciorissetto
Nov 27 '16 at 17:53
This is the most amazing solution ever...
– BlaB
Jan 11 '17 at 18:08
add a comment |
Use Notepad++ with add-on NppExport.
Select the source code
Use Copy RTF to clipboard of NppExport
Paste into empty PPT slide (do not select any textfiled)
Use Notepad++ with add-on NppExport.
Select the source code
Use Copy RTF to clipboard of NppExport
Paste into empty PPT slide (do not select any textfiled)
edited Sep 19 '13 at 10:38
Jawa
3,15982435
3,15982435
answered Sep 19 '13 at 9:31
votervoter
50143
50143
YES I wish I knew about this years ago
– Ken Bellows
Mar 9 '15 at 13:59
2
With version 6.9.2 or higher it's working without NppExport plugin. Just make right-click on the selected text -> Plugin commands -> Copy Text with Syntax Highlighting.
– Ivan Kochurkin
Aug 7 '16 at 19:00
Current version of Notepad++ already comes with this plugin :)
– fabriciorissetto
Nov 27 '16 at 17:53
This is the most amazing solution ever...
– BlaB
Jan 11 '17 at 18:08
add a comment |
YES I wish I knew about this years ago
– Ken Bellows
Mar 9 '15 at 13:59
2
With version 6.9.2 or higher it's working without NppExport plugin. Just make right-click on the selected text -> Plugin commands -> Copy Text with Syntax Highlighting.
– Ivan Kochurkin
Aug 7 '16 at 19:00
Current version of Notepad++ already comes with this plugin :)
– fabriciorissetto
Nov 27 '16 at 17:53
This is the most amazing solution ever...
– BlaB
Jan 11 '17 at 18:08
YES I wish I knew about this years ago
– Ken Bellows
Mar 9 '15 at 13:59
YES I wish I knew about this years ago
– Ken Bellows
Mar 9 '15 at 13:59
2
2
With version 6.9.2 or higher it's working without NppExport plugin. Just make right-click on the selected text -> Plugin commands -> Copy Text with Syntax Highlighting.
– Ivan Kochurkin
Aug 7 '16 at 19:00
With version 6.9.2 or higher it's working without NppExport plugin. Just make right-click on the selected text -> Plugin commands -> Copy Text with Syntax Highlighting.
– Ivan Kochurkin
Aug 7 '16 at 19:00
Current version of Notepad++ already comes with this plugin :)
– fabriciorissetto
Nov 27 '16 at 17:53
Current version of Notepad++ already comes with this plugin :)
– fabriciorissetto
Nov 27 '16 at 17:53
This is the most amazing solution ever...
– BlaB
Jan 11 '17 at 18:08
This is the most amazing solution ever...
– BlaB
Jan 11 '17 at 18:08
add a comment |
Pygments can format almost every format to rtf:
pygmentize -f rtf -o code.rtf code.py
An online translator is available at pygments.org/demo
– koppor
Nov 25 '15 at 11:48
1
Same idea, straight to the OS X clipboardpygmentize -f rtf code.py | pbcopy.
– Christian Long
Mar 14 '16 at 14:28
add a comment |
Pygments can format almost every format to rtf:
pygmentize -f rtf -o code.rtf code.py
An online translator is available at pygments.org/demo
– koppor
Nov 25 '15 at 11:48
1
Same idea, straight to the OS X clipboardpygmentize -f rtf code.py | pbcopy.
– Christian Long
Mar 14 '16 at 14:28
add a comment |
Pygments can format almost every format to rtf:
pygmentize -f rtf -o code.rtf code.py
Pygments can format almost every format to rtf:
pygmentize -f rtf -o code.rtf code.py
answered Apr 18 '12 at 7:28
schlamarschlamar
29127
29127
An online translator is available at pygments.org/demo
– koppor
Nov 25 '15 at 11:48
1
Same idea, straight to the OS X clipboardpygmentize -f rtf code.py | pbcopy.
– Christian Long
Mar 14 '16 at 14:28
add a comment |
An online translator is available at pygments.org/demo
– koppor
Nov 25 '15 at 11:48
1
Same idea, straight to the OS X clipboardpygmentize -f rtf code.py | pbcopy.
– Christian Long
Mar 14 '16 at 14:28
An online translator is available at pygments.org/demo
– koppor
Nov 25 '15 at 11:48
An online translator is available at pygments.org/demo
– koppor
Nov 25 '15 at 11:48
1
1
Same idea, straight to the OS X clipboard
pygmentize -f rtf code.py | pbcopy.– Christian Long
Mar 14 '16 at 14:28
Same idea, straight to the OS X clipboard
pygmentize -f rtf code.py | pbcopy.– Christian Long
Mar 14 '16 at 14:28
add a comment |
If the source code does not need to be copied and pasted out of the presentation, a quick and dirty solution could be to simply take screenshots of the source code.
6
Image can be fuzzy when zoom in.
– Yousui
Dec 21 '09 at 4:58
Use the magnifier and then take a screenshot of that.
– wbeard52
May 17 '15 at 0:57
1
Doing so can increase the size of the presentation file significantly.
– Rufflewind
Nov 10 '16 at 17:39
add a comment |
If the source code does not need to be copied and pasted out of the presentation, a quick and dirty solution could be to simply take screenshots of the source code.
6
Image can be fuzzy when zoom in.
– Yousui
Dec 21 '09 at 4:58
Use the magnifier and then take a screenshot of that.
– wbeard52
May 17 '15 at 0:57
1
Doing so can increase the size of the presentation file significantly.
– Rufflewind
Nov 10 '16 at 17:39
add a comment |
If the source code does not need to be copied and pasted out of the presentation, a quick and dirty solution could be to simply take screenshots of the source code.
If the source code does not need to be copied and pasted out of the presentation, a quick and dirty solution could be to simply take screenshots of the source code.
answered Dec 21 '09 at 4:37
Emory BellEmory Bell
1,261811
1,261811
6
Image can be fuzzy when zoom in.
– Yousui
Dec 21 '09 at 4:58
Use the magnifier and then take a screenshot of that.
– wbeard52
May 17 '15 at 0:57
1
Doing so can increase the size of the presentation file significantly.
– Rufflewind
Nov 10 '16 at 17:39
add a comment |
6
Image can be fuzzy when zoom in.
– Yousui
Dec 21 '09 at 4:58
Use the magnifier and then take a screenshot of that.
– wbeard52
May 17 '15 at 0:57
1
Doing so can increase the size of the presentation file significantly.
– Rufflewind
Nov 10 '16 at 17:39
6
6
Image can be fuzzy when zoom in.
– Yousui
Dec 21 '09 at 4:58
Image can be fuzzy when zoom in.
– Yousui
Dec 21 '09 at 4:58
Use the magnifier and then take a screenshot of that.
– wbeard52
May 17 '15 at 0:57
Use the magnifier and then take a screenshot of that.
– wbeard52
May 17 '15 at 0:57
1
1
Doing so can increase the size of the presentation file significantly.
– Rufflewind
Nov 10 '16 at 17:39
Doing so can increase the size of the presentation file significantly.
– Rufflewind
Nov 10 '16 at 17:39
add a comment |
- Click on Insert → Object → OpenDocument Text
- Paste on opened panel
- Click outside.
Note: Copying from Notepad++ will preserve colors and styling.
Doesn't work for power point 2010. I copied text from Notepad++ to Power point presentation but it looses colors and styling.
– AnkurTank
Jan 4 '16 at 5:11
1
If I use NPPExport pluging and use "copy RTF to clipboard" and then paste it works.
– AnkurTank
Jan 4 '16 at 5:13
add a comment |
- Click on Insert → Object → OpenDocument Text
- Paste on opened panel
- Click outside.
Note: Copying from Notepad++ will preserve colors and styling.
Doesn't work for power point 2010. I copied text from Notepad++ to Power point presentation but it looses colors and styling.
– AnkurTank
Jan 4 '16 at 5:11
1
If I use NPPExport pluging and use "copy RTF to clipboard" and then paste it works.
– AnkurTank
Jan 4 '16 at 5:13
add a comment |
- Click on Insert → Object → OpenDocument Text
- Paste on opened panel
- Click outside.
Note: Copying from Notepad++ will preserve colors and styling.
- Click on Insert → Object → OpenDocument Text
- Paste on opened panel
- Click outside.
Note: Copying from Notepad++ will preserve colors and styling.
edited May 16 '15 at 22:47
random♦
12.9k84757
12.9k84757
answered May 16 '15 at 21:29
samad montazerisamad montazeri
1313
1313
Doesn't work for power point 2010. I copied text from Notepad++ to Power point presentation but it looses colors and styling.
– AnkurTank
Jan 4 '16 at 5:11
1
If I use NPPExport pluging and use "copy RTF to clipboard" and then paste it works.
– AnkurTank
Jan 4 '16 at 5:13
add a comment |
Doesn't work for power point 2010. I copied text from Notepad++ to Power point presentation but it looses colors and styling.
– AnkurTank
Jan 4 '16 at 5:11
1
If I use NPPExport pluging and use "copy RTF to clipboard" and then paste it works.
– AnkurTank
Jan 4 '16 at 5:13
Doesn't work for power point 2010. I copied text from Notepad++ to Power point presentation but it looses colors and styling.
– AnkurTank
Jan 4 '16 at 5:11
Doesn't work for power point 2010. I copied text from Notepad++ to Power point presentation but it looses colors and styling.
– AnkurTank
Jan 4 '16 at 5:11
1
1
If I use NPPExport pluging and use "copy RTF to clipboard" and then paste it works.
– AnkurTank
Jan 4 '16 at 5:13
If I use NPPExport pluging and use "copy RTF to clipboard" and then paste it works.
– AnkurTank
Jan 4 '16 at 5:13
add a comment |
Online syntax highlighter like TextMate seems good as well, http://markup.su/highlighter/
But after pasting into PowerPoint presentation new lines and line spacing is lost, so we can take a screen shot of the preview and paste it in our PowerPoint presentation
Pasting into ppt does not quite work here on Windows 10: The new lines are not pasted.
– koppor
Nov 24 '15 at 15:22
add a comment |
Online syntax highlighter like TextMate seems good as well, http://markup.su/highlighter/
But after pasting into PowerPoint presentation new lines and line spacing is lost, so we can take a screen shot of the preview and paste it in our PowerPoint presentation
Pasting into ppt does not quite work here on Windows 10: The new lines are not pasted.
– koppor
Nov 24 '15 at 15:22
add a comment |
Online syntax highlighter like TextMate seems good as well, http://markup.su/highlighter/
But after pasting into PowerPoint presentation new lines and line spacing is lost, so we can take a screen shot of the preview and paste it in our PowerPoint presentation
Online syntax highlighter like TextMate seems good as well, http://markup.su/highlighter/
But after pasting into PowerPoint presentation new lines and line spacing is lost, so we can take a screen shot of the preview and paste it in our PowerPoint presentation
answered Aug 12 '15 at 14:05
Mohammed Abdul MateenMohammed Abdul Mateen
111
111
Pasting into ppt does not quite work here on Windows 10: The new lines are not pasted.
– koppor
Nov 24 '15 at 15:22
add a comment |
Pasting into ppt does not quite work here on Windows 10: The new lines are not pasted.
– koppor
Nov 24 '15 at 15:22
Pasting into ppt does not quite work here on Windows 10: The new lines are not pasted.
– koppor
Nov 24 '15 at 15:22
Pasting into ppt does not quite work here on Windows 10: The new lines are not pasted.
– koppor
Nov 24 '15 at 15:22
add a comment |
Pasting from Eclipse should retain formatting if the app supports it. I know Word does... not sure about PPT.
1
Works from Eclipse Juno to Word 2010, but not to Powerpoint 2010 - it loses the colours and converts some of them to bold text
– DNA
Sep 4 '13 at 17:21
add a comment |
Pasting from Eclipse should retain formatting if the app supports it. I know Word does... not sure about PPT.
1
Works from Eclipse Juno to Word 2010, but not to Powerpoint 2010 - it loses the colours and converts some of them to bold text
– DNA
Sep 4 '13 at 17:21
add a comment |
Pasting from Eclipse should retain formatting if the app supports it. I know Word does... not sure about PPT.
Pasting from Eclipse should retain formatting if the app supports it. I know Word does... not sure about PPT.
answered Dec 21 '09 at 5:24
Chris NavaChris Nava
6,84912029
6,84912029
1
Works from Eclipse Juno to Word 2010, but not to Powerpoint 2010 - it loses the colours and converts some of them to bold text
– DNA
Sep 4 '13 at 17:21
add a comment |
1
Works from Eclipse Juno to Word 2010, but not to Powerpoint 2010 - it loses the colours and converts some of them to bold text
– DNA
Sep 4 '13 at 17:21
1
1
Works from Eclipse Juno to Word 2010, but not to Powerpoint 2010 - it loses the colours and converts some of them to bold text
– DNA
Sep 4 '13 at 17:21
Works from Eclipse Juno to Word 2010, but not to Powerpoint 2010 - it loses the colours and converts some of them to bold text
– DNA
Sep 4 '13 at 17:21
add a comment |
I've had no success pasting into Powerpoint 2010 on Windows.
However, pasting from Eclipse into Word 2010 works.
You can then save this formatted text as an RTF file, then embed the RTF into a Powerpoint 2010 slide using Insert Object (and optionally select 'link' so you can edit and update the text in Word).
add a comment |
I've had no success pasting into Powerpoint 2010 on Windows.
However, pasting from Eclipse into Word 2010 works.
You can then save this formatted text as an RTF file, then embed the RTF into a Powerpoint 2010 slide using Insert Object (and optionally select 'link' so you can edit and update the text in Word).
add a comment |
I've had no success pasting into Powerpoint 2010 on Windows.
However, pasting from Eclipse into Word 2010 works.
You can then save this formatted text as an RTF file, then embed the RTF into a Powerpoint 2010 slide using Insert Object (and optionally select 'link' so you can edit and update the text in Word).
I've had no success pasting into Powerpoint 2010 on Windows.
However, pasting from Eclipse into Word 2010 works.
You can then save this formatted text as an RTF file, then embed the RTF into a Powerpoint 2010 slide using Insert Object (and optionally select 'link' so you can edit and update the text in Word).
answered Sep 4 '13 at 17:27
DNADNA
19625
19625
add a comment |
add a comment |
Using Notepad++ and Npp Export works great, but your text will end up with a white background.
To remove it, paste first the text in word with the "preserve source formatting" option. Then, select the text and in Home > Font, remove the background with the Text Highlight Color option.
Then, copy again the text from word, and paste it in powerpoint with the "preserve source formatting" option.
add a comment |
Using Notepad++ and Npp Export works great, but your text will end up with a white background.
To remove it, paste first the text in word with the "preserve source formatting" option. Then, select the text and in Home > Font, remove the background with the Text Highlight Color option.
Then, copy again the text from word, and paste it in powerpoint with the "preserve source formatting" option.
add a comment |
Using Notepad++ and Npp Export works great, but your text will end up with a white background.
To remove it, paste first the text in word with the "preserve source formatting" option. Then, select the text and in Home > Font, remove the background with the Text Highlight Color option.
Then, copy again the text from word, and paste it in powerpoint with the "preserve source formatting" option.
Using Notepad++ and Npp Export works great, but your text will end up with a white background.
To remove it, paste first the text in word with the "preserve source formatting" option. Then, select the text and in Home > Font, remove the background with the Text Highlight Color option.
Then, copy again the text from word, and paste it in powerpoint with the "preserve source formatting" option.
answered Nov 13 '15 at 17:56
JohnJohn
1
1
add a comment |
add a comment |
Copy the code and first paste that code into Microsoft word

Then do the formatting if necessary and then copy from word and paste back to powerpoint by right clicking and choosing use destination theme

Either way, what does “Then do the formatting if necessary” mean?
– Scott
Apr 26 '17 at 19:10
It means if you want to do some changes of your own like aligning or indentation of code
– selftaught91
Apr 26 '17 at 19:17
add a comment |
Copy the code and first paste that code into Microsoft word

Then do the formatting if necessary and then copy from word and paste back to powerpoint by right clicking and choosing use destination theme

Either way, what does “Then do the formatting if necessary” mean?
– Scott
Apr 26 '17 at 19:10
It means if you want to do some changes of your own like aligning or indentation of code
– selftaught91
Apr 26 '17 at 19:17
add a comment |
Copy the code and first paste that code into Microsoft word

Then do the formatting if necessary and then copy from word and paste back to powerpoint by right clicking and choosing use destination theme

Copy the code and first paste that code into Microsoft word

Then do the formatting if necessary and then copy from word and paste back to powerpoint by right clicking and choosing use destination theme

answered Apr 26 '17 at 18:50
selftaught91selftaught91
1011
1011
Either way, what does “Then do the formatting if necessary” mean?
– Scott
Apr 26 '17 at 19:10
It means if you want to do some changes of your own like aligning or indentation of code
– selftaught91
Apr 26 '17 at 19:17
add a comment |
Either way, what does “Then do the formatting if necessary” mean?
– Scott
Apr 26 '17 at 19:10
It means if you want to do some changes of your own like aligning or indentation of code
– selftaught91
Apr 26 '17 at 19:17
Either way, what does “Then do the formatting if necessary” mean?
– Scott
Apr 26 '17 at 19:10
Either way, what does “Then do the formatting if necessary” mean?
– Scott
Apr 26 '17 at 19:10
It means if you want to do some changes of your own like aligning or indentation of code
– selftaught91
Apr 26 '17 at 19:17
It means if you want to do some changes of your own like aligning or indentation of code
– selftaught91
Apr 26 '17 at 19:17
add a comment |
protected by Community♦ Feb 1 at 23:04
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
what application are you copying from?
– John T
Dec 21 '09 at 4:26
I use textmate, e-texteditor and eclipse the most.
– Yousui
Dec 21 '09 at 4:58