tags:

views:

50

answers:

1

Hi,

The following latex code:

\subsection{Classification Performance}

is shown something like

5.3.3 Classifi cation Performance

There seems to be some gap beteen "Classifi" and "cation". Is it a problem?

Thanks!

+1  A: 

Does:

% test.tex
\documentclass{article}

\usepackage{listings}

\begin{document}

  \subsection{Classification Performance}

\end{document}

produce something different than:

alt text

When generating a PDF of it like this:

latex test.tex && dvipdf test.dvi 

on your system?

Bart Kiers
no, it doesn't. Thanks! Why dvipdf makes a difference than dvips and ps2pdf?
Tim
Bart Kiers