gkaran487 0 Newbie Poster

I need to extract ONLY those publications from the web page http://www.informatik.uni-trier.de/~ley/pers/hd/r/Rao:Rahul.html, where the first author is Rahul Rao.

I have tried the following code ,but it doesn't give me any output.

for( Element element : doc.select("table span.this-person.title") ){
System.out.println(element.text());
}

What do I need to get the preferred output? Thank you in advance.