Я использую ` в качестве короткого разделителя встроенного списка. Это прекрасно компилируется:
\documentclass{article}
\usepackage{listings, pgfplots}
\pgfplotsset{compat=1.14}
\tikzset{every picture/.style={execute at begin picture={\lstDeleteShortInline{`}}, execute at end picture={\lstMakeShortInline{`}}}}
\AtBeginDocument{\lstMakeShortInline{`}}
\begin{document}
\begin{tikzpicture}
\draw node{Hello};
\end{tikzpicture}
\end{document}
но это выдает ошибку:
\documentclass{article}
\usepackage{listings, pgfplots}
\pgfplotsset{compat=1.14}
\tikzset{every picture/.style={execute at begin picture={\lstDeleteShortInline{`}}, execute at end picture={\lstMakeShortInline{`}}}}
\AtBeginDocument{\lstMakeShortInline{`}}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot coordinates {(1,1) (2,2)};
\end{axis}
\end{tikzpicture}
\end{document}
и ошибка вот в чем:
Package Listings Error: ` is not a short reference for \lstinline.
Есть ли способ использовать в документе как pgfplots, так и фрагменты встроенного кода, разделенные обратными кавычками?
решение1
Проблема в том, что listings не хочет деактивировать ярлык, который уже деактивирован. И поскольку pgfplots вкладывает картинки, вы получаете ошибку. Вы можете написать свой собственный деактивированный макрос, который избежит двойной настройки:
\documentclass{article}
\usepackage{listings}
\usepackage{pgfplots}
\newcommand\deactivemyshortinline{%
\expandafter\ifx\csname lst@ShortInlineOldCatcode\string`\endcsname\relax
\else
\lstDeleteShortInline{`}%
\fi}
\pgfplotsset{compat=1.14}
\tikzset{every picture/.style={execute at begin picture={\deactivemyshortinline}}, execute at end picture={\lstMakeShortInline{`}}}
\AtBeginDocument{\lstMakeShortInline{`}}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot coordinates {(1,1) (2,2)};
\end{axis}
\end{tikzpicture}
\end{document}