Just to clarify, the tests have already accomplished and how I am doing now.
Currently, I created the page:
team.php
Setting the top:
/*
Template Name: Team
*/
That is, a template file in my WordPress theme.
And I tried to use the tag: wp_list_authors
But does not list all that I want and does not separate the roles.
So I had to manually create the function: get_userdata
Example:
$user_info = get_userdata ($x);
$user_info->display_name;
$user_info->nickname;
$user_info->description;
But as the team is constantly changing, I can no longer be editing this page manually, and it would be essential to be updated automatically using the roles of plugin Capability Manager to separate the members.
Thank you.