I have many longtable's in my document. Everything is the same across all the tables, except for the caption and the content (of course). How can I avoid duplicating the stuff required to set up longtable? Is this possible?
The code needed to produce one table is below. You can see there is a lot of stuff required to set up the table. I would like to avoid duplicating this stuff multiple times.
\begin{longtable}[h]{M{2.00in}M{0.85in}m{0.55in}m{0.55in}m{0.55in}m{0.55in}}
\caption{First Ministry in Jerusalem} \\
\toprule
Event & Location & Matt. & Mark & Luke & John \\
\midrule
\endfirsthead
\caption{First Ministry in Jerusalem (continued)} \\
\toprule
Event & Location & Matt. & Mark & Luke & John \\
\midrule
\endhead
\bottomrule
\multicolumn{6}{r}{\emph{Continued on next page}}
\endfoot
\bottomrule
\endlastfoot
Content & Goes & Here
\end{longtable}
