My purspose was to obtain more related articles from the author.
So, I did some modifications into rt.tpl template (located at templates/rt/rt.tpl).
After de main block, where you can find the default reading tools, i added the following div block:
<div class="rtBlock">
<span class="rtSubtitle">Google Scholar</span>
<ul>
{foreach from=$article->getAuthors() item=author name=authors}
<li><a href="http://scholar.google.com/scholar?q= "author:{$author->getFullName()|escape}"" target="_blank">{$author->getFullName()|escape}<a/></li>
{/foreach}
</ul>
</div>
The result looks like that:

