Python comments not highlighted with lstlisting The 2019 Stack Overflow Developer Survey Results Are Inuse underscore inside lstlisting with pythonnewenvironment gives error with lstlistingLstlisting format Java codeUseVerbatim equivalent for lstlistingEmphasize hex number in lstlisting using font colorUnderscore and asterisk color in lstlisting stringError to compile lstlistingCustomize keyword lstlistinghow to use accents inside a lstlistinglstlisting and bold keywords
Likelihood that a superbug or lethal virus could come from a landfill
Does adding complexity mean a more secure cipher?
Loose spokes after only a few rides
Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?
Is an up-to-date browser secure on an out-of-date OS?
I am an eight letter word. What am I?
Dropping list elements from nested list after evaluation
Geography at the pixel level
Keeping a retro style to sci-fi spaceships?
How do I free up internal storage if I don't have any apps downloaded?
Output the Arecibo Message
If I score a critical hit on an 18 or higher, what are my chances of getting a critical hit if I roll 3d20?
How did passengers keep warm on sail ships?
What do these terms in Caesar's Gallic Wars mean?
Short story: child made less intelligent and less attractive
RequirePermission not working
What information about me do stores get via my credit card?
Kerning for subscripts of sigma?
How to translate "being like"?
Cooking pasta in a water boiler
Why are there uneven bright areas in this photo of black hole?
A female thief is not sold to make restitution -- so what happens instead?
Ubuntu Server install with full GUI
How do PCB vias affect signal quality?
Python comments not highlighted with lstlisting
The 2019 Stack Overflow Developer Survey Results Are Inuse underscore inside lstlisting with pythonnewenvironment gives error with lstlistingLstlisting format Java codeUseVerbatim equivalent for lstlistingEmphasize hex number in lstlisting using font colorUnderscore and asterisk color in lstlisting stringError to compile lstlistingCustomize keyword lstlistinghow to use accents inside a lstlistinglstlisting and bold keywords
I want to use lstlisting
for some Python code, and I have a code segment that looks like this:
documentclass[11pt]article
usepackagecolor
usepackagelistings
lstloadlanguagesPython
lstset
language=Python,
basicstyle=scriptsizesffamily,
numberstyle=colorgray,
stringstyle=color[HTML]933797
commentstyle=color[HTML]228B22sfffamily,
emph=[2]from,import,pass,return, emphstyle=[2]color[HTML]DD52F0,
emph=[3]range, emphstyle=[3]color[HTML]D17032,
emph=[4]for,in,def, emphstyle=[4]colorblue,
showstringspaces=false,
breaklines=true,
prebreak=mboxcolorgraytiny$searrow$,
numbers=left,
xleftmargin=15pt
begindocument
beginlstlisting[language=Python]
# Function definitions
# Test cases
for _ in range(100):
# Test comment
endlstlisting
enddocument
But the comments that start with #
are not highlight with my specified color, they are just black. Any ideas?
lstlisting
add a comment |
I want to use lstlisting
for some Python code, and I have a code segment that looks like this:
documentclass[11pt]article
usepackagecolor
usepackagelistings
lstloadlanguagesPython
lstset
language=Python,
basicstyle=scriptsizesffamily,
numberstyle=colorgray,
stringstyle=color[HTML]933797
commentstyle=color[HTML]228B22sfffamily,
emph=[2]from,import,pass,return, emphstyle=[2]color[HTML]DD52F0,
emph=[3]range, emphstyle=[3]color[HTML]D17032,
emph=[4]for,in,def, emphstyle=[4]colorblue,
showstringspaces=false,
breaklines=true,
prebreak=mboxcolorgraytiny$searrow$,
numbers=left,
xleftmargin=15pt
begindocument
beginlstlisting[language=Python]
# Function definitions
# Test cases
for _ in range(100):
# Test comment
endlstlisting
enddocument
But the comments that start with #
are not highlight with my specified color, they are just black. Any ideas?
lstlisting
add a comment |
I want to use lstlisting
for some Python code, and I have a code segment that looks like this:
documentclass[11pt]article
usepackagecolor
usepackagelistings
lstloadlanguagesPython
lstset
language=Python,
basicstyle=scriptsizesffamily,
numberstyle=colorgray,
stringstyle=color[HTML]933797
commentstyle=color[HTML]228B22sfffamily,
emph=[2]from,import,pass,return, emphstyle=[2]color[HTML]DD52F0,
emph=[3]range, emphstyle=[3]color[HTML]D17032,
emph=[4]for,in,def, emphstyle=[4]colorblue,
showstringspaces=false,
breaklines=true,
prebreak=mboxcolorgraytiny$searrow$,
numbers=left,
xleftmargin=15pt
begindocument
beginlstlisting[language=Python]
# Function definitions
# Test cases
for _ in range(100):
# Test comment
endlstlisting
enddocument
But the comments that start with #
are not highlight with my specified color, they are just black. Any ideas?
lstlisting
I want to use lstlisting
for some Python code, and I have a code segment that looks like this:
documentclass[11pt]article
usepackagecolor
usepackagelistings
lstloadlanguagesPython
lstset
language=Python,
basicstyle=scriptsizesffamily,
numberstyle=colorgray,
stringstyle=color[HTML]933797
commentstyle=color[HTML]228B22sfffamily,
emph=[2]from,import,pass,return, emphstyle=[2]color[HTML]DD52F0,
emph=[3]range, emphstyle=[3]color[HTML]D17032,
emph=[4]for,in,def, emphstyle=[4]colorblue,
showstringspaces=false,
breaklines=true,
prebreak=mboxcolorgraytiny$searrow$,
numbers=left,
xleftmargin=15pt
begindocument
beginlstlisting[language=Python]
# Function definitions
# Test cases
for _ in range(100):
# Test comment
endlstlisting
enddocument
But the comments that start with #
are not highlight with my specified color, they are just black. Any ideas?
lstlisting
lstlisting
asked 2 days ago
pixelpixel
432413
432413
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
There are three issues here: (1) gray
is not defined by default in color
, generally use xcolor
instead. (2) there is a comma missing after stringstyle=color[HTML]933797
. (3) one too many f's in sfffamily
Then the example works for me
Updated MWE:
documentclass[11pt]article
usepackagexcolor
usepackagelistings
lstloadlanguagesPython
lstset
language=Python,
basicstyle=scriptsizesffamily,
numberstyle=colorgray,
stringstyle=color[HTML]933797,
commentstyle=color[HTML]228B22sffamily,
emph=[2]from,import,pass,return, emphstyle=[2]color[HTML]DD52F0,
emph=[3]range, emphstyle=[3]color[HTML]D17032,
emph=[4]for,in,def, emphstyle=[4]colorblue,
showstringspaces=false,
breaklines=true,
prebreak=mboxcolorgraytiny$searrow$,
numbers=left,
xleftmargin=15pt
begindocument
beginlstlisting[language=Python]
# Function definitions
# Test cases
for _ in range(100):
# Test comment
endlstlisting
enddocument
Thanks, seems to work nicely!
– pixel
2 days ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483971%2fpython-comments-not-highlighted-with-lstlisting%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are three issues here: (1) gray
is not defined by default in color
, generally use xcolor
instead. (2) there is a comma missing after stringstyle=color[HTML]933797
. (3) one too many f's in sfffamily
Then the example works for me
Updated MWE:
documentclass[11pt]article
usepackagexcolor
usepackagelistings
lstloadlanguagesPython
lstset
language=Python,
basicstyle=scriptsizesffamily,
numberstyle=colorgray,
stringstyle=color[HTML]933797,
commentstyle=color[HTML]228B22sffamily,
emph=[2]from,import,pass,return, emphstyle=[2]color[HTML]DD52F0,
emph=[3]range, emphstyle=[3]color[HTML]D17032,
emph=[4]for,in,def, emphstyle=[4]colorblue,
showstringspaces=false,
breaklines=true,
prebreak=mboxcolorgraytiny$searrow$,
numbers=left,
xleftmargin=15pt
begindocument
beginlstlisting[language=Python]
# Function definitions
# Test cases
for _ in range(100):
# Test comment
endlstlisting
enddocument
Thanks, seems to work nicely!
– pixel
2 days ago
add a comment |
There are three issues here: (1) gray
is not defined by default in color
, generally use xcolor
instead. (2) there is a comma missing after stringstyle=color[HTML]933797
. (3) one too many f's in sfffamily
Then the example works for me
Updated MWE:
documentclass[11pt]article
usepackagexcolor
usepackagelistings
lstloadlanguagesPython
lstset
language=Python,
basicstyle=scriptsizesffamily,
numberstyle=colorgray,
stringstyle=color[HTML]933797,
commentstyle=color[HTML]228B22sffamily,
emph=[2]from,import,pass,return, emphstyle=[2]color[HTML]DD52F0,
emph=[3]range, emphstyle=[3]color[HTML]D17032,
emph=[4]for,in,def, emphstyle=[4]colorblue,
showstringspaces=false,
breaklines=true,
prebreak=mboxcolorgraytiny$searrow$,
numbers=left,
xleftmargin=15pt
begindocument
beginlstlisting[language=Python]
# Function definitions
# Test cases
for _ in range(100):
# Test comment
endlstlisting
enddocument
Thanks, seems to work nicely!
– pixel
2 days ago
add a comment |
There are three issues here: (1) gray
is not defined by default in color
, generally use xcolor
instead. (2) there is a comma missing after stringstyle=color[HTML]933797
. (3) one too many f's in sfffamily
Then the example works for me
Updated MWE:
documentclass[11pt]article
usepackagexcolor
usepackagelistings
lstloadlanguagesPython
lstset
language=Python,
basicstyle=scriptsizesffamily,
numberstyle=colorgray,
stringstyle=color[HTML]933797,
commentstyle=color[HTML]228B22sffamily,
emph=[2]from,import,pass,return, emphstyle=[2]color[HTML]DD52F0,
emph=[3]range, emphstyle=[3]color[HTML]D17032,
emph=[4]for,in,def, emphstyle=[4]colorblue,
showstringspaces=false,
breaklines=true,
prebreak=mboxcolorgraytiny$searrow$,
numbers=left,
xleftmargin=15pt
begindocument
beginlstlisting[language=Python]
# Function definitions
# Test cases
for _ in range(100):
# Test comment
endlstlisting
enddocument
There are three issues here: (1) gray
is not defined by default in color
, generally use xcolor
instead. (2) there is a comma missing after stringstyle=color[HTML]933797
. (3) one too many f's in sfffamily
Then the example works for me
Updated MWE:
documentclass[11pt]article
usepackagexcolor
usepackagelistings
lstloadlanguagesPython
lstset
language=Python,
basicstyle=scriptsizesffamily,
numberstyle=colorgray,
stringstyle=color[HTML]933797,
commentstyle=color[HTML]228B22sffamily,
emph=[2]from,import,pass,return, emphstyle=[2]color[HTML]DD52F0,
emph=[3]range, emphstyle=[3]color[HTML]D17032,
emph=[4]for,in,def, emphstyle=[4]colorblue,
showstringspaces=false,
breaklines=true,
prebreak=mboxcolorgraytiny$searrow$,
numbers=left,
xleftmargin=15pt
begindocument
beginlstlisting[language=Python]
# Function definitions
# Test cases
for _ in range(100):
# Test comment
endlstlisting
enddocument
edited 2 days ago
answered 2 days ago
daleifdaleif
33.8k255118
33.8k255118
Thanks, seems to work nicely!
– pixel
2 days ago
add a comment |
Thanks, seems to work nicely!
– pixel
2 days ago
Thanks, seems to work nicely!
– pixel
2 days ago
Thanks, seems to work nicely!
– pixel
2 days ago
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483971%2fpython-comments-not-highlighted-with-lstlisting%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown