# This is for converting tex file generated by lyx file using dissertation.cls # This replaces the report class with dissertation.cls s/{report}/{dissertation}/ # This just removes the \makeatletter s/\\makeatletter// # Removes the \makeatother s/\\makeatother// # Removes the \maketitle s/\\maketitle// # Replaces \begin{abstract} ... \end{abstract} with \abstract{...} s/begin{abstract}/abstract{/ s/\\end{abstract}/}/ # This adds the Bibliography to the Table of Contents (toc file) s/begin{thebibliography}{.*}/& \\addcontentsline{toc}{chapter}{Bibliography}/