I think you can do something like this:
<?php _e('Latest Posts'); ?>
<?php query_posts('showposts=5'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<linkage="<?php the_permalink() ?>"><?php the_title() ?> </linkage>
<?php endwhile; endif; ?>
replace “linkage” with anchor tags.