Every article has to have a unique ID.
The two ways to link things are (1) each article has a (possibly null) link to its successor, or (2) each article has a (possibly null) link to its predecessor.
Here's some sample data using #2 schema:
ID PREDECESSOR TITLE ...
1 null This is the first article
2 1 This is the second article
3 2 This is the final article
4 null Beginning article of another series
Note that schema #2 possibly has some advantages if you want to do queries that list only articles that are the beginning of series:
select * from articles where predecessor is null;
The main disadvantage I see with #2 is you have to do a separate query to determine if their is a followup article:
select * from article where id = $target_id;
gets the content, and then
select id, title from article where predecessor = $target_id order
This does have the nice feature that you can list the title of the next article (which would require a separate query even using schema #1--it's just that with #1, if you're willing to tolerate a link that just says "Next Chapter" or something, you don't need an additional query to display the link.)