From 3e8e2ea55ae43a6463f8f1d793f132e09fa951ce Mon Sep 17 00:00:00 2001 From: Mateusz Kwiatkowski Date: Wed, 25 Jun 2025 11:16:10 +0000 Subject: Update on Overleaf. --- vu-cs-standard-thesis/sections/appendix.tex | 16 ++++++++++++++++ vu-cs-standard-thesis/sections/background.tex | 10 ++++++++++ vu-cs-standard-thesis/sections/conclusion.tex | 11 +++++++++++ vu-cs-standard-thesis/sections/design.tex | 11 +++++++++++ vu-cs-standard-thesis/sections/discussion.tex | 10 ++++++++++ vu-cs-standard-thesis/sections/evaluation.tex | 13 +++++++++++++ vu-cs-standard-thesis/sections/implementation.tex | 13 +++++++++++++ vu-cs-standard-thesis/sections/intro.tex | 12 ++++++++++++ vu-cs-standard-thesis/sections/overview.tex | 13 +++++++++++++ vu-cs-standard-thesis/sections/related.tex | 10 ++++++++++ vu-cs-standard-thesis/sections/threats.tex | 9 +++++++++ 11 files changed, 128 insertions(+) create mode 100644 vu-cs-standard-thesis/sections/appendix.tex create mode 100644 vu-cs-standard-thesis/sections/background.tex create mode 100644 vu-cs-standard-thesis/sections/conclusion.tex create mode 100644 vu-cs-standard-thesis/sections/design.tex create mode 100644 vu-cs-standard-thesis/sections/discussion.tex create mode 100644 vu-cs-standard-thesis/sections/evaluation.tex create mode 100644 vu-cs-standard-thesis/sections/implementation.tex create mode 100644 vu-cs-standard-thesis/sections/intro.tex create mode 100644 vu-cs-standard-thesis/sections/overview.tex create mode 100644 vu-cs-standard-thesis/sections/related.tex create mode 100644 vu-cs-standard-thesis/sections/threats.tex (limited to 'vu-cs-standard-thesis/sections') diff --git a/vu-cs-standard-thesis/sections/appendix.tex b/vu-cs-standard-thesis/sections/appendix.tex new file mode 100644 index 0000000..cc471e5 --- /dev/null +++ b/vu-cs-standard-thesis/sections/appendix.tex @@ -0,0 +1,16 @@ +% this file is called up by thesis.tex +% content in this file will be fed into the main document + +%: ----------------------- name of chapter ------------------------- +\chapter*{Appendix} % top level followed by section, subsection + + + + + + + +% --------------------------------------------------------------------------- +%: ----------------------- end of thesis sub-document ------------------------ +% --------------------------------------------------------------------------- + diff --git a/vu-cs-standard-thesis/sections/background.tex b/vu-cs-standard-thesis/sections/background.tex new file mode 100644 index 0000000..03c924d --- /dev/null +++ b/vu-cs-standard-thesis/sections/background.tex @@ -0,0 +1,10 @@ +\chapter{Background}\label{s:background} + + +\todo{ +This section provides the necessary context to help the reader understand the +remainder of the thesis. +} + +\lipsum[1-8] + diff --git a/vu-cs-standard-thesis/sections/conclusion.tex b/vu-cs-standard-thesis/sections/conclusion.tex new file mode 100644 index 0000000..9ca221f --- /dev/null +++ b/vu-cs-standard-thesis/sections/conclusion.tex @@ -0,0 +1,11 @@ +\chapter{Conclusion}\label{s:conclusion} + + +\todo{ +Briefly summarize your contributions, and share a glimpse of the implications of +this work for future research. +} + + +\lipsum[1-2] + diff --git a/vu-cs-standard-thesis/sections/design.tex b/vu-cs-standard-thesis/sections/design.tex new file mode 100644 index 0000000..175ec1b --- /dev/null +++ b/vu-cs-standard-thesis/sections/design.tex @@ -0,0 +1,11 @@ +\chapter{Design}\label{s:design} + + +\todo{ +In this section, you would provide a high-level description of the system or +solution and explain your design choices. +} + + +\lipsum[1-10] + diff --git a/vu-cs-standard-thesis/sections/discussion.tex b/vu-cs-standard-thesis/sections/discussion.tex new file mode 100644 index 0000000..62129fc --- /dev/null +++ b/vu-cs-standard-thesis/sections/discussion.tex @@ -0,0 +1,10 @@ +\chapter{Discussion}\label{s:discussion} + + +\todo{ +Here you put your results in context (possibly grouped by research question). Usually, this section focuses on analyzing the +implications of the proposed work for current and future research and for practitioners. +} + + +\lipsum[1-8] diff --git a/vu-cs-standard-thesis/sections/evaluation.tex b/vu-cs-standard-thesis/sections/evaluation.tex new file mode 100644 index 0000000..3b65dff --- /dev/null +++ b/vu-cs-standard-thesis/sections/evaluation.tex @@ -0,0 +1,13 @@ +\chapter{Evaluation}\label{s:evaluation} + + +\todo{ +Discuss the design of your experiments, the results you obtained, and how they +help in evaluating the claims you made in the introduction. You may also use the +evaluation results in this section to justify your design choices or assess the +contributions of different aspects of your design towards the overall goals. +} + + +\lipsum[1-16] + diff --git a/vu-cs-standard-thesis/sections/implementation.tex b/vu-cs-standard-thesis/sections/implementation.tex new file mode 100644 index 0000000..84fb7a6 --- /dev/null +++ b/vu-cs-standard-thesis/sections/implementation.tex @@ -0,0 +1,13 @@ +\chapter{Implementation}\label{s:implementation} + + +This section presents important implementation details. + + +\lipsum[1-6] + + +%%% Local Variables: +%%% mode: latex +%%% TeX-master: "../thesis" +%%% End: diff --git a/vu-cs-standard-thesis/sections/intro.tex b/vu-cs-standard-thesis/sections/intro.tex new file mode 100644 index 0000000..3eb6e09 --- /dev/null +++ b/vu-cs-standard-thesis/sections/intro.tex @@ -0,0 +1,12 @@ +\chapter{Introduction}\label{s:intro} + +\todo{ +This section includes some motivations behind the work, explicitly or implicitly +highlights the research question, provides a high-level explanation of the +solution, and describes the contributions. +} + + +\lipsum[1-2] + + diff --git a/vu-cs-standard-thesis/sections/overview.tex b/vu-cs-standard-thesis/sections/overview.tex new file mode 100644 index 0000000..869cea5 --- /dev/null +++ b/vu-cs-standard-thesis/sections/overview.tex @@ -0,0 +1,13 @@ +\chapter{Overview}\label{s:overview} + + +\todo{ +This section provides a high-level outline of the proposed system or solution. +It typically illustrates the system architecture or the interactions between the +different solution components (via a “boxes-and-arrows” diagram) from a user’s +perspective. +} + + +\lipsum[1-6] + diff --git a/vu-cs-standard-thesis/sections/related.tex b/vu-cs-standard-thesis/sections/related.tex new file mode 100644 index 0000000..7a8f517 --- /dev/null +++ b/vu-cs-standard-thesis/sections/related.tex @@ -0,0 +1,10 @@ +\chapter{Related Work}\label{s:related} + + +\todo{ +Describe here scientific papers similar to your experiment, both in terms of goal and methodology. One paragraph for each paper (we expect about 5-8 papers to be discussed). Each paragraph contains: (i) a brief description of the related paper and (ii) a black-on-white description about how your work differs from the related paper. You may place this section immediately after the Background section, if necessary. +} + + +\lipsum[14-17][4-8] + diff --git a/vu-cs-standard-thesis/sections/threats.tex b/vu-cs-standard-thesis/sections/threats.tex new file mode 100644 index 0000000..3025b7f --- /dev/null +++ b/vu-cs-standard-thesis/sections/threats.tex @@ -0,0 +1,9 @@ +\chapter{Threats To Validity}\label{sec:threats} + +\todo{Report about each type of threat to the validity of the experiment, according to the classification framework proposed by Wohlin \etal \cite{wohlin12}. +} + +\section{Internal Validity} +\section{External Validity} +\section{Construct Validity} +\section{Conclusion Validity} \ No newline at end of file -- cgit v1.2.3