我正在尝试为我的学生创建一个工作表(其中的文本不是真正的文本,只是为了让读者了解结构而编写的)。不幸的是,我对这个程序的技能非常有限……我想创建一个可以普遍应用的工作表。基本上,只需更改任务,但我不想每次都重新创建它。这就是为什么我认为最好使用 LaTeX。但现在这个程序遇到了很多障碍。
- 我真的很想保留这种字体(类似于 Arial,它不知何故在照片中消失了)。
- 但是,问题是“班级:、老师:、日期:、姓名:”在单独的页面上。并且对齐不太好,但我不知道如何解决这个问题。
- 我想将“第 1 章”命名为“Teil 1”,但我不知道如何在 LaTeX 上重命名 \chapters、\sections 等
- 线条需要分开一点,以便书写
下面的图片
我会很感激任何帮助!谢谢
\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}
答案1
如果您的班级更愿意使用笔记本电脑而不是铅笔,您可以使用以下 PDF。请注意,每个字段必须具有唯一的 ID。
不确定所有\quad
s 的用途,除非作为一种方式\leavevmode
。请注意,\\[2\baselineskip]
将添加 2 个空白行。
\arraystretch
并且\normalbaselineskip
仅适用于表格。
\documentclass[
egregdoesnotlikesansseriftitles,
headings=optiontoheadandtoc
]{scrartcl}
\usepackage{csquotes}
\usepackage{newtxtext}
\addtokomafont{subsubsection}{\normalfont \itshape}
\usepackage{tikz} %circle
\usetikzlibrary{shapes.misc,shadows}
%\usepackage{showframe}% alaignment tool, remove
\usepackage{eforms}% should come last
\begin{document}
\begin{center}
\def\arraystretch{1.5}% increase spacing between lines, local to environment
\begin{tabular}{rl}
Class: & \textField[\inline{y}]{class}{1in}{\normalbaselineskip}\\
Teacher: & \textField[\inline{y}]{teacher}{1in}{\normalbaselineskip}\\
Date: & \textField[\inline{y}]{date}{1in}{\normalbaselineskip}\\
Name: & \textField[\inline{y}]{student}{1in}{\normalbaselineskip}
\end{tabular}
\end{center}
\section{Facts on London}
\subsection{ London past and present}
\subsubsection*{An extract of a tour guide}
\textbf{London: Discover the city ...}
\bigskip
EXTRACT/TEXT ABOUT LONDON\par
\vspace{0.5cm}
\noindent Notes\strut\\
\textField[\Ff\FfMultiline]{london}{\textwidth}{6\baselineskip}
\pagebreak
\section{Culture}
\subsection{The word \enquote{culture}}
\vfill% expand to fill available space
\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}
}
\vfill
\subsection{Extracts of a tour guide}
Exercise: Read the extract and discuss it with your partner in your target language. Summarize the key facts.
\vspace{0.5cm}
\noindent Notes: \strut\\
\textField[\Ff\FfMultiline]{guide}{\textwidth}{5\baselineskip}
\subsection{If-Clause}
Exercise: What would you do if you were in Berlin? \\[2\baselineskip]
Text: \strut\\
\textField[\Ff\FfMultiline]{berlin}{\textwidth}{5\baselineskip}
\subsection{Homework}
Exercise: Write a short extract (tour guide style) on a cultural aspect of your hometown.
\end{document}