The document describes the steps of SLR parsing:
1. Create an augmented grammar by adding a new start symbol S' and the production S' -> S.
2. Generate kernel items by introducing dots in productions.
3. Find the closure of kernel items.
4. Compute the goto table from the closure sets.
5. Construct the parsing table from the goto table and closure sets.
6. Parse input strings using the parsing table and stack.