If you’re not afraid to get your hands dirty with a little bit of PHP, this can be done with the following slice of code:
<?php
query_posts('cat=' .$catNumber. '&showposts=1');
while (have_posts()) : the_post();
?>
// Use template tags to Do Stuff.
<?php endwhile; ?>
That the most recent post from category number $catNumber.