From 0bdff67fcd08c1ebb19e47f6875aed4f72673103 Mon Sep 17 00:00:00 2001 From: Alex Mitrevski Date: Sat, 15 Sep 2018 16:01:04 +0200 Subject: [PATCH] Modified the chapters so that they are independent subfiles --- README.md | 10 +++++- chapters/abstract.tex | 7 +++++ chapters/acknowledgment.tex | 16 +++++----- chapters/appendix.tex | 13 +++++--- chapters/ch01_introduction.tex | 34 +++++++++++---------- chapters/ch02_stateoftheart.tex | 12 +++++--- chapters/ch03_methodology.tex | 13 +++++--- chapters/ch04_solution.tex | 11 ++++--- chapters/ch05_evaluation.tex | 6 ++-- chapters/ch06_results.tex | 13 ++++---- chapters/ch07_conclusion.tex | 12 ++++---- LastNameI-[RnD-MT]Report.pdf => report.pdf | Bin 165647 -> 165632 bytes LastNameI-[RnD-MT]Report.tex => report.tex | 22 +++---------- 13 files changed, 92 insertions(+), 77 deletions(-) create mode 100644 chapters/abstract.tex rename LastNameI-[RnD-MT]Report.pdf => report.pdf (99%) rename LastNameI-[RnD-MT]Report.tex => report.tex (93%) diff --git a/README.md b/README.md index bf43715..de2ebc1 100755 --- a/README.md +++ b/README.md @@ -10,6 +10,14 @@ The logo of an external institution can be added with the command `\thirdpartylo ## Usage -The main file of the report is `LastNameI-[RnD-MT]Report.tex`; this should be changed to match the naming convention specified by the wiki, e.g. for an R&D, John Doe would name his file `DoeJ-RnDReport.tex`. +The main file of the report is `report.tex`; chapters, appendices, and the abstract are given in separate files in the `chapters` directory. + +When submitting a report, the name of the pdf should be changed to match the naming convention specified in the MAS wiki, namely + +``` +LastNameI-[RnD-MT]Report +``` + +Examples: For an R&D, John Doe would name his file `DoeJ-RnDReport.pdf`; for a thesis, John Doe would name the file `DoeJ-MTReport.pdf`. If there are any problems, don't hesitate to let us know! You can open an issue [here](https://github.com/mas-group/project-report/issues/new). diff --git a/chapters/abstract.tex b/chapters/abstract.tex new file mode 100644 index 0000000..e8f1d90 --- /dev/null +++ b/chapters/abstract.tex @@ -0,0 +1,7 @@ +%!TEX root = ../report.tex + +\begin{document} + \begin{abstract} + Your abstract + \end{abstract} +\end{document} diff --git a/chapters/acknowledgment.tex b/chapters/acknowledgment.tex index bb4177c..dafb5ed 100755 --- a/chapters/acknowledgment.tex +++ b/chapters/acknowledgment.tex @@ -1,9 +1,7 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% % -% ACKNOWLEDGEMENT % -% % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -\specialhead{ACKNOWLEDGMENTS} - -ACK. ACK. ACK. here you can write your acknowledgements. +%!TEX root = ../report.tex + +\begin{document} + \begin{acknowledgements} + Thanks to .... + \end{acknowledgements} +\end{document} diff --git a/chapters/appendix.tex b/chapters/appendix.tex index a4002a1..0d55b24 100755 --- a/chapters/appendix.tex +++ b/chapters/appendix.tex @@ -1,6 +1,11 @@ %!TEX root = ../report.tex -\chapter{Design Details} -Your first appendix -\chapter{Parameters} -Your second chapter appendix +\begin{document} + + \chapter{Design Details} + Your first appendix + + \chapter{Parameters} + Your second chapter appendix + +\end{document} diff --git a/chapters/ch01_introduction.tex b/chapters/ch01_introduction.tex index bf8b5bc..8d75625 100755 --- a/chapters/ch01_introduction.tex +++ b/chapters/ch01_introduction.tex @@ -1,33 +1,35 @@ %!TEX root = ../report.tex -\chapter{Introduction} +\begin{document} + \chapter{Introduction} -\lipsum[1-5] -\section{Motivation} -\subsection{...} + \lipsum[1-5] + \section{Motivation} + \subsection{...} -\lipsum[6-10] + \lipsum[6-10] -\subsection{...} + \subsection{...} -\section{Challenges and Difficulties} -\subsection{...} + \section{Challenges and Difficulties} + \subsection{...} -\lipsum[11-15] + \lipsum[11-15] -\subsection{...} + \subsection{...} -\subsection{...} + \subsection{...} -\section{Problem Statement} -\subsection{...} + \section{Problem Statement} + \subsection{...} -\lipsum[21-30] + \lipsum[21-30] -\subsection{...} + \subsection{...} -\subsection{...} + \subsection{...} +\end{document} diff --git a/chapters/ch02_stateoftheart.tex b/chapters/ch02_stateoftheart.tex index 007a781..aa5f07f 100755 --- a/chapters/ch02_stateoftheart.tex +++ b/chapters/ch02_stateoftheart.tex @@ -1,9 +1,11 @@ %!TEX root = ../report.tex -\chapter{State of the Art} +\begin{document} + \chapter{State of the Art} -\section{....} -Use as many sections as you need in your related work to group content into logical groups + \section{....} + Use as many sections as you need in your related work to group content into logical groups -Don't forget to correctly cite your sources \cite{art1}. -\section{Limitations of previous work} + Don't forget to correctly cite your sources \cite{art1}. + \section{Limitations of previous work} +\end{document} diff --git a/chapters/ch03_methodology.tex b/chapters/ch03_methodology.tex index e50e51d..84f07f7 100755 --- a/chapters/ch03_methodology.tex +++ b/chapters/ch03_methodology.tex @@ -1,9 +1,12 @@ %!TEX root = ../report.tex -\chapter{Methodology} -How you are planning to test/compare/evaluate your research. -Criteria used. +\begin{document} + \chapter{Methodology} -\section{Setup} + How you are planning to test/compare/evaluate your research. + Criteria used. -\section{Experimental Design} + \section{Setup} + + \section{Experimental Design} +\end{document} diff --git a/chapters/ch04_solution.tex b/chapters/ch04_solution.tex index 8617941..75fe278 100644 --- a/chapters/ch04_solution.tex +++ b/chapters/ch04_solution.tex @@ -1,10 +1,11 @@ %!TEX root = ../report.tex -\chapter{Solution} +\begin{document} + \chapter{Solution} -Your main contributions go here + Your main contributions go here -\section{Proposed algorithm} + \section{Proposed algorithm} - -\section{Implementation details} + \section{Implementation details} +\end{document} diff --git a/chapters/ch05_evaluation.tex b/chapters/ch05_evaluation.tex index f4e0a9f..ac2f819 100755 --- a/chapters/ch05_evaluation.tex +++ b/chapters/ch05_evaluation.tex @@ -1,5 +1,7 @@ %!TEX root = ../report.tex -\chapter{Evaluation} +\begin{document} + \chapter{Evaluation} -Implementation and measurements. + Implementation and measurements. +\end{document} diff --git a/chapters/ch06_results.tex b/chapters/ch06_results.tex index 48ca591..1236a4f 100644 --- a/chapters/ch06_results.tex +++ b/chapters/ch06_results.tex @@ -1,12 +1,13 @@ %!TEX root = ../report.tex -\chapter{Results} +\begin{document} + \chapter{Results} -\section{Use case 1} -Describe results and analyse them + \section{Use case 1} + Describe results and analyse them + \section{Use case 2} -\section{Use case 2} - -\section{Use case 3} + \section{Use case 3} +\end{document} diff --git a/chapters/ch07_conclusion.tex b/chapters/ch07_conclusion.tex index 88bfc44..91eb316 100755 --- a/chapters/ch07_conclusion.tex +++ b/chapters/ch07_conclusion.tex @@ -1,11 +1,11 @@ %!TEX root = ../report.tex -\chapter{Conclusions} +\begin{document} + \chapter{Conclusions} -\section{Contributions} + \section{Contributions} + \section{Lessons learned} -\section{Lessons learned} - - -\section{Future work} + \section{Future work} +\end{document} diff --git a/LastNameI-[RnD-MT]Report.pdf b/report.pdf similarity index 99% rename from LastNameI-[RnD-MT]Report.pdf rename to report.pdf index aa956ad8c9bd9cc62b507620b10cd8f0353cda86..2238af9900a2c23da52ad8c24a71d41981b0dfee 100644 GIT binary patch delta 607 zcmeD0<7(*R+K@X{F(H?u^)peR2pHMv9=Bve$=Ja_8$xlq8yKk@7^rJ<>HFrVxFnXODrmS^85tN_7$7Uz&eP0vlF`-3$j#Ey z#n8;zz|hp(*vZ1h&Dhz<#nr{q#Kg(P)X~^Z!G@rc*y+{QjHdOfmn{9K1TwTf{2gb` z!s1%!%2@8=;2suvlvQ?mp=)5k1()27Muv(H8af!Ad-@c&{bS4KZPo4E_>?{3=EaOJ z*6Fj1g;TW zt!VnByEG|x(*C)xT^UX4^{l#G6ivQbn|CB-yepm7HA$u3s{M%CM!~4MirYG;7JS{f zIVPv^o8WV^jiOeU&&eiPmt3_f@0{ydS9(u;w<~K&{kJg9Zw~&mH%Emy#`hM_zrj7T z{~U9YJb{44V;Eu&sOYhgXv~2bUc9BA&keMbq`i=L8GAz8pBS zY5V0x;`ekc&vzLcM8A6@{5)aZjY`Kk?b}Pwbt}z%()D@a4jsLNHA}bm?3naK|9NPk zZ;ZJ4gV=wU^9}`d`fu+L{V9Ii|I8D4sS~*$H58YhaXj;@{F&0nr!ES9cAWni^a}0Pv3c@Bjb+ delta 622 zcmZqZb=9 z7beo&H+6g8R7Qul`o@N)hUNywMi$xzhUx|e>Y7~ozWFIGKwSzNE>=bch870MO1A%P zVmis_YGGz!>11YU>FR7`>E>o)=4@{2=Imx_Y2jq)=4@f)W~X37P)Y3c9BW3?deuvw z-cth^j(z-WzjSKUt(bGO&Za)C2!0>B`O>l3XSd%};>Z$oQe+9rRGuYNl6lduBja{@ z$26~ahmLJ^4PoEx`e(~O|3ByK>C>EwEv`;;I9mKm725)~_^3#F&Aomkv@rHbhjQ`0 z9gY(Jo(d~REYCHFI_Rl}#~;!dwMEz|1npGyj4S^ItNYFExJyjI>vXQ}+R%J15` zi09V-ifH|7j;}h47vEr*+dp^qQ8ka}bE1!mohY%;cB!1S`CRlOuMns2{Q0Jfq^j8F zlr9qc6?`stk=&;Exwl=JpH$7YKFTMdRd!Eo_ffqHgO|DMZ!jNLJ@+?B-lqD6je=C- zm+sFKEb2MV+gs0e72Y$W@Sfn>MXbjz-Mi%~-IG42-IXh@wz#Z|uj23BnPRaYo-N-T zo$}!AlwyxBU2+xMAFTD4Y5e~AT=F9g9}|n;M+;}HDVQg~{9)ngO0PLBE1jOl7P`%8 zd+C-RS!i~${#6aTV{+aw?mp|stJN