Kyūkei Master Hub
SCS2110 Material | Phase 10: Report Writing, LaTeX & Bibliometrics
👁️ -- opens | 0%

Material Phase 10: Report Outlines, LaTeX Formatting & Dissemination Indices

Complete study guide for Course Units 10 & 11 (Direct Dec 2024 Exam Q1, Q3, Q6 focus [60 Marks]). Master the NUST 5-chapter thesis structure, LaTeX compilation, publishing channels, and calculating the h-index.

1. The NUST 5-Chapter Thesis Structure

While standalone journal articles follow the 4-part IMRaD format (Introduction, Methods, Results, and Discussion), final-year CS degree reports at NUST must be structured into 5 distinct chapters:

Chapter 1: Introduction

Background of the study, Empirical Problem Statement, Overarching Aim, SMART Objectives, Research Questions / Hypotheses, Scope & Delimitations, Justification.

Chapter 2: Literature Review

Theoretical framework, Systematic Literature Review (SLR) synthesis, comparative table of prior state-of-the-art models, identification of the knowledge gap.

Chapter 3: System Architecture & Methodology

Detailed research design, Design Science framework (Hevner), System Artifact diagrams (Context, ERD, 3-Tier Architecture), Data Collection & Benchmarking setup.

Chapter 4: Implementation & Evaluation

Artifact construction details, benchmark execution logs, quantitative statistical analysis (t-test / ANOVA graphs), qualitative thematic findings, discussion.

Chapter 5: Conclusion & Recommendations

Summary of contributions mapped directly back to Chapter 1 objectives, critical limitations reflection, ethical disclosures, future research directions.

2. Academic Formatting with LaTeX & Overleaf

LaTeX is the industry standard document preparation system for publishing Computer Science research papers.

Key Benefits of LaTeX over Word

💡 Code Snippet Example (BibTeX Entry):
@article{moyo2024latency,
  author    = {Moyo, Blessing and Ncube, Thabo},
  title     = {Optimizing Memory Serialization in Mobile Frameworks},
  journal   = {IEEE Transactions on Software Engineering},
  year      = {2024},
  volume    = {50},
  number    = {4},
  pages     = {412--425}
}
            
3. Research Dissemination & The h-Index Calculation
Publication Channel Review Mechanism Dissemination Speed & Prestige
Preprint Servers (e.g., arXiv) Minimal moderation, NO formal peer-review. Immediate dissemination; allows rapid timestamping of novel algorithms before journal submission.
Peer-Reviewed Conferences Double-blind peer review by program committee. Fast review cycles (3-6 months). In CS, top-tier conferences (SIGCOMM, USENIX) equal or exceed journal prestige.
Peer-Reviewed Journals Rigorous multi-round peer review. Slower cycle (6-18 months); authoritative permanent archival record.

Calculating the h-Index

A scholar has an h-index of $h$ if they have published $h$ papers, each of which has been cited at least $h$ times in other published works.

📊 Step-by-Step h-Index Calculation Example

Suppose Researcher Dr. Zengeya has published 6 papers with the following citation counts:
Paper 1: 45 citations
Paper 2: 22 citations
Paper 3: 18 citations
Paper 4: 10 citations
Paper 5: 5 citations
Paper 6: 2 citations

Step 1: Order papers in descending citation count: [45, 22, 18, 10, 5, 2].
Step 2: Find the highest rank $h$ where Citation Count $\ge$ Rank Number:
- Rank 1: 45 citations ($\ge 1$) ✅
- Rank 2: 22 citations ($\ge 2$) ✅
- Rank 3: 18 citations ($\ge 3$) ✅
- Rank 4: 10 citations ($\ge 4$) ✅
- Rank 5: 5 citations ($\ge 5$) ✅
- Rank 6: 2 citations ($< 6$) ❌
Final h-Index = 5 (Dr. Zengeya has 5 papers with at least 5 citations each).