i’ve resolved this trouble using this code:
query_posts( 'posts_per_page=1&cat=CATEGORYID' );
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2><?php the_title();?></h2>
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>"><strong>Read more »</strong></a>
<?php endwhile; endif; ?>