I think this possible by limiting posts to 1 and the order of the posts.
I am trying this:
function my_cat_archive_post_limit() {
$post_limit = '1';
query_posts($query_string . "&order=ASC" . 'cat=' . get_cat_ID() . '&showposts=' . $post_limit);
}
add_action('thematic_above_categoryloop','my_cat_archive_post_limit');
Currently it does not work properly. Now it is only showing my last post for all my categories.