Hello, I’m sure there are many solutions. You may want to search for a function that could do that. Until then a patch fix would be create a custom category page for each of those categories. Then inside query the post
Category 1.php
<?php query_posts('cat=1.1&showposts=1'); ?>
<?php while (have_posts()) : the_post(); ?>
Display Content
<?php endwhile; ?>
<?php query_posts('cat=1.2&showposts=1'); ?>
<?php while (have_posts()) : the_post(); ?>
Display Content
<?php endwhile; ?>
<?php query_posts('cat=1.3&showposts=1'); ?>
<?php while (have_posts()) : the_post(); ?>
Display Content
<?php endwhile; ?>
hope that help
[sig moderated as per the Forum Rules]