
Estou tentando corrigir a exibição de uma quebra de linha dentro de um ambiente lstlisting, mas mais especificamente em uma parte da listagem que está dentro de uma área de escape:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[usenames,dvipsnames,table]{xcolor}
\usepackage{listings}
\lstset{}
\definecolor{keywordColor}{HTML}{0033B3}
\definecolor{parameterColor}{HTML}{067D17}
\definecolor{commentColor}{HTML}{8C8C8C}
\definecolor{scenarioColor}{HTML}{871094}
\newcommand{\lstKeyword}[1]{{\textcolor{keywordColor}{#1}}}
\newcommand{\lstParameter}[1]{{\textcolor{parameterColor}{#1}}}
\newcommand{\lstScenario}[1]{{\textcolor{scenarioColor}{\textit{#1}}}}
\lstdefinestyle{bddStory}
{
frame=single,
captionpos=b,
commentstyle=\color{commentColor},
keywordstyle=\color{keywordColor},
morekeywords={Given ,When ,Then ,And ,Narrative,Examples},
escapeinside={<@}{@>},
showspaces=false,
showtabs=false,
showstringspaces=false,
breaklines=true,
postbreak=\mbox{\textcolor{red}{$\hookrightarrow$}\space},
breakatwhitespace=true
}
\title{Example Issue}
\begin{document}
\begin{lstlisting}[style=bddStory]
<@\lstScenario{Scenario: A scenario title is too long and can't fit into a single line which causes issues in the highlighting}@>
Given there is some further content
\end{lstlisting}
\end{document}
O conteúdo é renderizado da seguinte forma - as duas quebras na caixa e a seta ausente na nova linha são o problema:
Responder1
Esta caixa segmentada é um bug conhecido no listings
pacote. Você pode usar o patch tcolorbox
do listings
para consertar isso. Observe que a forma como os argumentos são passados para listings
o pacote é diferente.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[usenames,dvipsnames,table]{xcolor}
\usepackage{tcolorbox}
\tcbuselibrary{skins, breakable, listings}
\definecolor{keywordColor}{HTML}{0033B3}
\definecolor{parameterColor}{HTML}{067D17}
\definecolor{commentColor}{HTML}{8C8C8C}
\definecolor{scenarioColor}{HTML}{871094}
\newcommand{\lstKeyword}[1]{{\textcolor{keywordColor}{#1}}}
\newcommand{\lstParameter}[1]{{\textcolor{parameterColor}{#1}}}
\newcommand{\lstScenario}[1]{{\textcolor{scenarioColor}{\textit{#1}}}}
\lstdefinestyle{bddStory}
{
captionpos=b,
commentstyle=\color{commentColor},
keywordstyle=\color{keywordColor},
morekeywords={Given ,When ,Then ,And ,Narrative,Examples},
escapeinside={<@}{@>},
showspaces=false,
showtabs=false,
showstringspaces=false,
breaklines=true,
postbreak=\mbox{\textcolor{red}{$\hookrightarrow$}\space},
breakatwhitespace=true
}
\title{Example Issue}
\newtcblisting{mylisting}[1]{
enhanced,
breakable,
listing only,
boxrule=0.8pt,
sharp corners,
top=0mm,
bottom=0mm,
left=2mm,
right=2mm,
boxsep=0mm,
colframe=black,
colback=white,
listing options={
style=#1
}
}
\begin{document}
\begin{mylisting}{bddStory}
<@\lstScenario{Scenario: A scenario title is too long and can't fit into a single line which causes issues in the highlighting}@>
Given there is some further content
\end{mylisting}
\end{document}
Quanto à seta que falta, acho que listings
o pacote não tenta adicionar postbreak
conteúdo à região de escape. Veja o exemplo abaixo:
Se vocêrealmentequero implementar esse recurso, encontro estas duas postagens: