5

以下の図を並べて表示するマクロがあります。サブフロートを使用しているため、図になります。

\newcommand{\listbylist}[6][showlines=true]{
   \begin{figure}
      \subfloat[ ]{
        \lstinputlisting[showlines=true,#1]{#2}                                                  
     \label{#4:A}
  }
  \hfill{}
  \subfloat[ ]{                                                                               
     % by setting the frame to leftline, we avoid a box into oblivion                         
     % turn off numbers                                                                       
     \lstinputlisting[showlines=true,frame=leftline,#1,numbers=none]{#3}                      
     \label{#4:B}                                                                             
  }                                                                                           
  \hfill{}
   \caption[#5]{#6}
       \label{#4}                                                                                         
   \end{figure}
}

残念ながら、これは Listings カウンターではなく Figure カウンターを使用しています。また、誤った目次に表示され、キャプションや参照などで「リスト」ではなく「図」という単語が使用されています。これを修正する方法はありますか?

「Listing」という単語をどこかに追加するなど、簡単な方法がいいと思います...

4

3 に答える 3

2

lstlistings の組み込み float を使用する代わりに、それらをカスタム float でラップします。

\begin{mylisting}
\begin{lstlisting}
int x = 1;
\end{lstlisting}
\end{mylisting}

次に、サブフロートの使用に同じフロート (mylisting) を使用します。

\newcommand{\listbylist}[6][showlines=true]{
  \begin{mylisting}
    \subfloat[ ]{
      ...
    }
    \hfill{}
    \subfloat[ ]{
      ...
    }
    \hfill{}
    \caption[#5]{#6}
    \label{#4}
  \end{mylisting}
}

これはすべて、プリアンブルで設定する必要があります。

\newfloat{mylisting}{tbphH}{lopbl}[chapter]
\floatname{mylisting}{Listing}
\newsubfloat{mylisting}
\newcommand{\listofmylistings}{\listof{mylisting}{List of Listings}}
% if you use the hyperref package
\providecommand*\theHmylisting{\themylisting}
于 2009-10-06T17:28:13.117 に答える
0

subfloat のドキュメントを参照してください。「フィギュア」環境でサブフロートをカウントするマクロ呼び出しがあると確信しています。「フィギュア」環境カウンターを「リスト」に再定義してみてください-それがまったく意味がある場合。

于 2009-10-06T00:17:41.653 に答える
0

OK、これは間違った答えですが、ほぼこのようにたどり着きました。右側にキャプションを追加できなかっただけ\listofです。

もうすぐです。おそらくもっとうまくできるかもしれませんが、これはほとんど機能します。あとは、キャプションを .loc ファイルではなく .lol ファイルに表示するだけです。それについて質問してから、この回答を修正します。

基本的に、これは「フィギュア」カウンターをバックアップし、「リスト」カウンターをコピーするだけです。フィギュアの後、それらを元に戻します。

% Need a counter to save the value to
\newcounter{pbsavefigurecounter}

\newcommand{\listbylist}[6][showlines=true]{
{% scope

   % Change ``Figure'' to ``Listing''
   \renewcommand{\figurename}{Listing}

   % save the figure counter
   \setcounter{pbsavefigurecounter}{\value{figure}}

   % copy the listings counter to the figure counter
   \setcounter{figure}{\value{lstlisting}}


   \begin{figure}
  \subfloat[ ]{
     \lstinputlisting[nolol,showlines=true,#1]{#2}
     \label{#4:A}
  }
  \hfill{}
  \subfloat[ ]{
     % by setting the frame to leftline, we avoid a box into oblivion
     % turn off numbers
     \lstinputlisting[nolol,showlines=true,frame=leftline,#1,numbers=none]{#3}
     \label{#4:B}
  }
  \hfill{}

%  \float@caption{lol}[#5]{#6}
   \label{#4}
   \end{figure}

   % Update the listings counter
   \setcounter{lstlisting}{\value{figure}}

   % Restore the figure counter
   \setcounter{figure}{\value{pbsavefigurecounter}}

   % Change ``Listing'' back to ``Figure''
   \renewcommand{\figurename}{Figure}
}
}
于 2009-10-06T14:12:29.100 に答える