listingsパッケージのtitleオプションで任意のタイトルを付けようとすると,
タイトルの前に「1zw」という文字が勝手に追加されてしまいます。
どうすれば回避できるでしょうか?
以下は問題が発生するソースです。
\documentclass[a4j,11pt]{jsarticle}
\usepackage{listings,jlisting}
\lstnewenvironment{FILE}[2]{
\lstset{%
title={#1},%
tabsize=4,%
breaklines=true,%
basicstyle=\ttfamily,%
framesep=3pt,%
frame=single,%
frameround=tttt,%
#2,%
}}{}
\begin{document}
test
\begin{FILE}{abc}{}
adlfkjel
ajldkfje
\end{FILE}
\end{document}