In a report I have multiple chapters as separate tex files that I include by means of \input{chapter_title}. Furthermore I have a chapter 0 which deals as an introduction. The introduction shall contain a single paragraph for each chapter roughly describing what's written in the chapter. The order in which the chapters appear is not yet fixed and might change a couple of times. Since I'm a sort of lazy fellow I would like to have the short description paragraph in the actual chapter file and have the introduction chapter generate the order of the description paragraphs based on the order of the \input{chapter} calls.
Document class is scrreprt.
The description paragraphs of the chapters as they are defined in the chapter tex-files could look like this:
\<some_reference_to_current_chapter> describes...
or
In \<some_reference_to_current_chapter> ... will be explained.
The references to the current chapter should be generated automatically so that the result is always in the order of the chapters and the chapter numbers in the description paragraphs as it is printed in the introduction chapter will always be consistent.
I assume this might possible by means of something similar to the table of contents, just not using the chapter headlines but the description paragraphs instead.
Is there an easy way to achieve this?
