I am currently building a web application with associates various questions and answers to a specific page in a book. Without going into too much detail, a question can be associated to multiple pages in multiple books; likewise with answers.
When viewing both questions and answers from one portion of a book, all of the questions and answers are listed which apply to that portion.
Example:
PAGE 34
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eget libero in mauris suscipit semper a ullamcorper purus. Integer rutrum tempor semper. Nam scelerisque, libero a adipiscing auctor, dolor tellus dignissim ante, ut lobortis sem erat vitae massa. Maecenas ligula augue, dignissim vitae adipiscing non, auctor consectetur dui.
(Question) tellus dignissim ante, ut lobortis?
(Answer 1) mcorper purus integer.
(Answer 2) mcorper purus integer.
(Question 2) tellus dignissim ante, ut lobortis?
(Answer 3) mcorper purus integer.
(Answer 4) mcorper purus integer.
So the question is:
I would like to indicate that each of the questions and answers, when clicked, navigate to a page which allows the user to see all of the places in the book where that question or answer applies.
What method can I use for showing "more of a similar" item?
It seems that a plus would hint at adding a new item, and a magnifying glass would hint at searching for something.

