listings-package カスタム言語区切り文字の左側一致

listings-package カスタム言語区切り文字の左側一致

新しい言語の CLI のようなインターフェースを定義しようとしていますが、プロンプトに一致するように区切り文字を使用する方法がわかりません。

テキストに 3 つの異なるスタイルを適用したいと思います。以下の例では、各文字に 、 または で下線を付けて、~どの-スタイル=グループに属するかを示しています。

# configure terminal
~ ==================
(config)# json notification host a
--------~ ========================
(something-something)# url http://10.99.10.1:8000/path
---------------------~ ===============================

私はこれについて実験してきました:

\documentclass{article}
\usepackage{listings}
\lstdefinelanguage{iCli}
{
  comment=[l]{\%},
  basicstyle=\small,
  keywords={\#},
  keywordstyle=\textbf,
  delim=[s][keywordstyle]{(}{\#}
}

\begin{document}
\begin{lstlisting}[language=iCli]
% This is a comment
# configure terminal
(config)# json notification host a
\end{lstlisting}
\end{document}

#しかし、キーワードとしてハイライトされない

答え1

少しのハッキングが必要です。以下を参照してください。

ここに画像の説明を入力してください

\documentclass{article}

% the following two packages are for bold typewriter font
\usepackage[T1]{fontenc}
\usepackage{beramono}

\usepackage{listings}
\usepackage{xcolor}

\lstdefinelanguage{iCli}{
  comment    = [l]{\%},
  literate   = \#{{\processhash}}1,              %<-- required for bold prompt
  moredelim  = **[is][\processmydelims]{(}{)\#}, %<-- for highlighting (...)#
  basicstyle = \ttfamily,                        %<-- for a nice typewriter font
}

% helper macros
\newcommand\processmydelimsend{}
\newcommand\processmydelims{%
  \renewcommand\processmydelimsend{\textcolor{red}{)}\textbf{\#}\egroup}%
  \bgroup\color{red}(\aftergroup\processmydelimsend%
}
\makeatletter
\newcommand\processhash{%
  \ifnum\lst@mode=\lst@Pmode%
    \bfseries%
  \fi
  \#%
}
\makeatother

\begin{document}

\begin{lstlisting}[language=iCli]
# configure terminal
(config)# json notification host a
(something-something)# url http://10.99.10.1:8000/path
\end{lstlisting}

\end{document}

関連情報