Assignment 9

LaTeX Practice - Creating a Professional Document

Objective

In this assignment, you will learn how to create a structured and professional presentation evaluation form using LaTeX. You will follow the given instructions to produce a PDF file and submit it as your final deliverable.


Instructions

Folder Structure


Steps

\documentclass[a4paper,12pt]{article}
\usepackage{geometry}
\usepackage{array}
\usepackage{booktabs}
\usepackage{ragged2e}
\usepackage{parskip}
\usepackage{graphicx} % Grafik eklemek için gerekli paket

\geometry{left=2.5cm,right=2.5cm,top=0.5cm,bottom=2cm}

\setlength{\parindent}{0pt} % Paragraf başında girinti olmaması için

\begin{document}

% Logo yerleştirme
\noindent
\begin{center}
\includegraphics[scale=0.5]{figure/btu_logo.pdf} % Logoyu ekler
\end{center}
% Belge başlığı
\begin{center}
    {\Large\textbf{ Final \\ \vspace{.5cm}
    Presentation Evaluation Form}} % Belge başlığı
\end{center}

\vspace{0.1cm} % Başlık ve öğrenci bilgileri arasında boşluk

\section*{Student Information}
\begin{tabular}{p{3.8cm} p{0.1cm} p{10cm}}
\textbf{Name Surname} & : & \underline{\hspace{5cm}} \\
\textbf{Student Number} & : & \underline{\hspace{5cm}} \\
%\textbf{Group Number} & : & \underline{\hspace{1.5cm}} \\ 
\end{tabular}

\vspace{0.1cm}

\section*{Evaluation Criteria}

\begin{tabular}{|>{\arraybackslash}m{12cm}|>{\centering\arraybackslash}m{1.4cm}|>{\centering\arraybackslash}m{1.4cm}|}
\hline
\noindent \textbf{Criteria} & \textbf{Range} & \textbf{Score} \\
\hline \hline
\noindent \textbf{1. Topic Selection and Problem Definition:} Is the project topic clearly defined? Is the problem described accurately and appropriately? The clarity and relevance of the topic and problem definition are assessed in this section. & 0 - 15 & \underline{\hspace{1cm}} \\
\hline
\noindent \textbf{2. Methodology and Tools Used:} Are the chosen methods and tools (e.g., Python, Gnuplot, LaTeX) appropriate and effectively applied? Are the reasons for their selection well-explained and logical? & 0 - 20 & \underline{\hspace{1cm}} \\
\hline
\noindent \textbf{3. Implementation and Functionality:} Is the project successfully implemented? Does the code work correctly without errors? Does the project achieve its stated objectives and produce the expected results? & 0 - 20 & \underline{\hspace{1cm}} \\
\hline
\noindent \textbf{4. Visualization and Presentation Quality:} Are the visuals (e.g., graphs, images, etc.) sufficient and explanatory? Is the presentation clear, well-structured, and visually engaging? & 0 - 15 & \underline{\hspace{1cm}} \\
\hline
\noindent \textbf{5. Originality and Creativity:} Does the project include a unique and creative idea? Has the student applied their knowledge in an innovative way? & 0 - 10 & \underline{\hspace{1cm}} \\
\hline
\noindent \textbf{6. Delivery and Time Management:} Is the presentation delivered fluently and clearly? Was the allocated time used effectively? Are the speaking pace and tone appropriate for the audience? & 0 - 10 & \underline{\hspace{1cm}} \\
\hline
\noindent \textbf{7. Team Collaboration and Contribution:} Did all group members contribute equally to the project? Was teamwork and communication within the group effective? & 0 - 10 & \underline{\hspace{1cm}} \\
\hline
%\noindent \textbf{8. Q\&A Session and Communication:} Did the student(s) demonstrate sufficient knowledge and confidence while answering questions? Were the answers clear and satisfactory? & 0 - 5 & \underline{\hspace{1cm}} \\
%\hline
\end{tabular}

\vspace{0.7cm}

\begin{minipage}[t]{0.45\textwidth}
\section*{Total Score}
\Large{\underline{\hspace{1.5cm}} / 100}
\end{minipage}
\hspace{-.8cm}
\begin{minipage}[t]{0.45\textwidth}
\section*{Evaluator}
\begin{tabular}{p{3.5cm} p{0.1cm} p{4.2cm}}
\textbf{Name Surname} & : & Asst. Prof. Dr. Levent AYDINBAKAR \\ \\
\textbf{Signature} & : & \underline{\hspace{3.5cm}} \\ \\
\textbf{Date} & : & \underline{\hspace{3.5cm}} \\
\end{tabular}
\end{minipage}

\end{document}


Final Steps

# Assignment 9: LaTeX Practice - Creating a Professional Document

## Overview

The Assignment9 folder contains:

1. **`presentationEvaluationForm.pdf`**: A professional evaluation form created using LaTeX and compiled into PDF format.

2. **`README.md`**: This file provides a summary of the contents and instructions for completing the assignment.

---

## Objectives

- Learn how to use LaTeX to create structured and professional documents.
- Gain experience in document compilation using LaTeX tools.
- Understand the importance of formatting and layout in official forms.

---

## Learning Outcomes

- Acquired skills in using LaTeX for creating formal documents.
- Learned how to integrate images (logos) into LaTeX documents.
- Developed a better understanding of LaTeX compilation processes and debugging.
- Gained an appreciation for professional document design and layout consistency.

Save and exit the README.md file. (:wq)


Submit the Output:

Ensure that your Assignment9 folder contains only the following files:

Assignment9/
│
├─ presentationEvaluationForm.pdf   # The final PDF output file to be submitted.
│
└─ README.md                        # A brief summary of Assignment 9 and its content.

Submit your Assignment 9

Before running the submitAssignment.sh file, make sure you are in the "Assignment 9" folder. Running this script in any other folder or subfolder may result in missing files being uploaded. When executed in the correct folder, all files in the "Assignment 9" directory will be included in the submission.

submitAssignment.sh