[vox-tech] latex help: fancyverb
Peter Jay Salzman
vox-tech@lists.lugod.org
Thu, 5 Sep 2002 11:31:09 -0700
hi lugod,
i' have a fancyverb environment:
\begin{Verbatim}[numbers=left,commandchars=\\\{\}]
#include <stdio.h>
void swap(int a, int b);
int main(void)
{
int i = 4;
int j = 6;
print("i: %d, j: %d\n", i, j);
swap(i, j);\label{flawedswap:break1}
print("i: %d, j: %d\n", i, j);
return 0;
}
void swap(int a, int b)
{
int c = a; \label{flawedswap:break2}
a = b;
b = c;
}
\end{Verbatim}
the commandchars option to Verbatim lets me use labels so i can make
reference to the line numbers defined within the environment.
unfortunately, it's also screwing up the output because of the { and }
used in functions. in other words, { and } are being used in two
contexts: as text to be printed and as syntax for the \label command.
anyone know a solution to this problem?
pete
--
Fingerprint: B9F1 6CF3 47C4 7CD8 D33E 70A9 A3B9 1945 67EA 951D