Title says it all, but here's an example: the KOMA-Script classes provide the option toc which can have multiple values that don't interfere with each other, like values that enable the Bibliography in the TOC and others that just influence the layout of the TOC. When I need several of these values for the class option toc, how can I pass them all together to toc without having to repeat toc= all the time?
What I have currently:
\documentclass[toc=listof, toc=bibliography, toc=flat]{scrbook}
Idea of what I'd like to have (but what does not work)
\documentclass[toc={listof, bibliography, flat}]{scrbook}
Is this somehow possible? If yes, how?
