Thanks, again, for the response -- I think I may be starting to get the hang of this thing. What I've created (using your suggestions) seems to be very close to what I want to have on my site.
For my Author Archive template (archive type is set to individual and it is not set up as the default) I have the following direction to my Archive File Template:
CODE
auth_<$MTEntryAuthor dirify="1"$>.html
(I wanted the Author URL to look like the default Category URL)
In my Main Index I have the following code pointing to the Author Archives:
CODE
<div class="side">
<a href="<$MTBlogArchiveURL$>auth_name1.html">Name1's Stuff</a><br />
<a href="<$MTBlogArchiveURL$>auth_name2.html">Name2's Stuff</a><br />
<a href="<$MTBlogArchiveURL$>auth_name3.html">Name3's Stuff</a><br />
<a href="<$MTBlogArchiveURL$>auth_name4.html">Name4's Stuff</a><br />
</div>
Within the header on the Author Archive template I've edited the following line:
CODE
<title><$MTBlogName$>: <$MTEntryAuthorNickname$>'s Archive</title>
Otherwise it's essentially the default Category template.
Here's the problem: while the title works fine (shows Name1, Name2, etc. appropriately), the archive only displays the work submitted by Name4. No idea why this is happening.
To test if it would make sense to create one archive per author I changed the code for
CODE
<MTEntries>
to read
CODE
<MTEntries author="<$MTEntryAuthor$>">
This fixed the Name1, 2, 3, and 4 all displaying only Name4's work, but it limited the number of entries displayed to one.
Confused? Oh yeah, I'm confused.