blop
2006-02-22 14:04:17 UTC
I have this in my .tex file:
\begin{center}
\scriptsize
\begin{verbatim}
void quicksort'(A,p,r)
{
while (p < r)
{
q = partition(A,p,r);
new_q = q/2;
quicksort'(A,p,new_q -1);
p = new_q + 1;
}
}
\end{verbatim}
\normalsize
\end{center}
But it does not get centered. What am I missing?
\begin{center}
\scriptsize
\begin{verbatim}
void quicksort'(A,p,r)
{
while (p < r)
{
q = partition(A,p,r);
new_q = q/2;
quicksort'(A,p,new_q -1);
p = new_q + 1;
}
}
\end{verbatim}
\normalsize
\end{center}
But it does not get centered. What am I missing?