I am trying to create a worksheet for my students (the text in there is not the real one, just written to give the reader an overview of the structure). Unfortunately, my skills with this program are very limited ... and I would like to create a worksheet that I can apply universally. Basically, just change the tasks but I don't want to re-create it every single time. That's why I thought it is best to use LaTeX. But now there are so many hurdles coming up with this program.
- I would really like to keep the font (similar to Arial, it somehow disappeared in the photo).
- However, a problem is that "Class:, Teacher:, Date:, Name: are on a separate page. And are not nicely aligned but I don't know how to solve this issue.
- I would "Chapter 1" to be called "Teil 1" but I don't know how to rename \chapters, \sections, etc. on LaTeX
- The lines need to be further apart, for handwriting
The picture below
I would appreciate any help! Thank you
\documentclass[
egregdoesnotlikesansseriftitles,
headings=optiontoheadandtoc,
chapterprefix=true
]{scrreprt}
\usepackage{csquotes}
\usepackage{newtxtext}
\addtokomafont{chapter}{\LARGE}
\addtokomafont{subsection}{\normalfont \itshape}
\usepackage{tikz} %circle
\usetikzlibrary{shapes.misc,shadows}
\begin{document}
\begin{center}Class: Name \end{center}
\begin{center}Teacher: Name \end{center}
\begin{center} Date: \line(1,0){100} \end{center}
\begin{center}Name: \line(1,0){275} \end{center}
\chapter{Facts on London}
\section{ London past and present}
\subsection*{An extract of a tour guide}
\textbf{London: Discover the city ...} \quad\\
\quad\\\quad\\
EXTRACT/TEXT ABOUT LONDON \quad\\\quad\\
\vspace{0.5cm}
Notes: \quad\\ %Student notes - lines need to be further apart
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\pagebreak
\chapter{Culture}
\section{The word \enquote{culture}}
\vspace{2.5cm}
\centerline{
\begin{tikzpicture}[baseline=(char.base)]
\node(char)[draw,fill=white,
shape=rounded rectangle,
drop shadow={opacity=.5,shadow xshift=0pt},
minimum width=1.8cm]
{\Large Culture}; %puts a circle around the word /mind-map
\end{tikzpicture}
}
\vspace{2.5cm}
\section{Extracts of a tour guide}
Exercise: Read the extract and discuss it with your partner in your target language. Summarize the key facts. \quad\\\quad\\
\vspace{0.5cm}
Notes: \quad\\
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\section{If-Clause}
Exercise: What would you do if you were in Berlin? \quad\\\quad\\
Text: \quad\\
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\noindent\rule{\textwidth}{0.4pt}
\section{Homework}
Exercise: Write a short extract (tour guide style) on a cultural aspect of your hometown.
\end{document}
