In most of the books I've read on HTML5, they use <section> as a main container, and that then may have <article>'s inside it. I have also seen other tutorials that will show <article> as a main container for an article, or even a book, and then have <section> used as sections of the book (or sub sections). Anyone care to discuss the way they use them?
Example of the way I have used:
<body>
<section>
<article>
<p></p>
</article>
<article>
<p></p>
</article>
</section>
</body>