I have a holder with some tex.files that I want to \input into a main.tex file.
One way would be to write out each file name using separate \input{} commands:
\input{file1}
\input{file2}
\input{file3}
...
Since I want all the separate files input one after the other, it would be great to place the files in a separate folder and then only have one \input{} command:
\input{folder}
Is there any way aroud the "brute force" option?? Thanks
