HI Philip,
I know this is an old post now, but if you still need it here's the code you need to add:
{% for item in line_items %}
{{ item.sku }}
{% endfor %}
So there is a loop which loops through each of your products in the order (which is most likely already in your document code). Inside the loop anywhere you can use the {{ item.sku }} code.
Hope this helps!