If you assume that the article will have 1 or 0 authors, then use a pointer. If there can be several authors, use an array.
When you have a one-to-many relationship, you have the choice of using arrays or PFRelations. Arrays are much easier to handle if the maximum number of records is small, say 100 or less. Perhaps the most important benefit is that you can use includeKey in your query to enter all related objects with a single query.
If the number of related objects is large, you should use PFRelation.
LostInTheTrees
source share