Estou tentando definir uma nova interface semelhante a um idioma, mas não consigo descobrir como usar o delimitador para corresponder ao meu prompt.
Quero aplicar diferentes estilos de árvore ao texto. No exemplo abaixo sublinhei cada caractere com um ~
, -
ou =
para sinalizar a qual grupo de estilos eles deveriam pertencer.
# configure terminal
~ ==================
(config)# json notification host a
--------~ ========================
(something-something)# url http://10.99.10.1:8000/path
---------------------~ ===============================
Eu tenho experimentado isso:
\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}
Mas não destaca #
como palavra-chave
Responder1
É necessário um pouco de hacking; Veja abaixo.
\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}