Title displaying multiple times

The function wp_title() is supposed to be used to generate the text for the title tag:

<head>
    <title><?php wp_title();?></title>
    ...
</head>

but to display the current post title within the loop, you should instead use the the_title() function.