The below shows some typical Twig templating examples for field setups.
Field Settings
Template code
{% for row in entry.superTablePlainText.all() %}
{{ row.plainText }}
{% endfor %}
Field Settings
Template code
{{ entry.superTableRichText.richText }}
Field Settings
Template code
{% for row in entry.superTableMatrix.all() %}
{% for block in row.matrix.all() %}
{% if block.type == 'block1' %}
{{ block.plainText }}
{% endif %}
{% endfor %}
{% endfor %}