-
-
Save robingarcia/3b706dbd8ab5eee27a4380e662ee756b to your computer and use it in GitHub Desktop.
LaTeX Formular
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[a4paper]{article} | |
\usepackage[latin1]{inputenc} | |
\usepackage[T1]{fontenc} | |
\usepackage[left=2.5cm,right=2.5cm,top=3cm,bottom=3cm]{geometry} | |
\usepackage[english, ngerman]{babel} | |
\usepackage{textcomp} | |
\usepackage{hyperref} | |
\usepackage{longtable} | |
%\usepackage{selinput} | |
\usepackage{fancyhdr} | |
\pagestyle{fancy} | |
\fancyhead[L]{Bewertung Belegarbeiten} | |
\begin{document} | |
\noindent | |
Bitte tragen Sie ihre Bewertungen in die dafür vorgesehenen Felder ein und wählen Sie eine Punktzahl aus. Danach das PDF-Dokument bei ILIAS hochladen im Bewertungsmodul. | |
\begin{Form} | |
\begin{longtable}{p{0.25\textwidth}p{0.7\textwidth}} | |
\textbf{Kategorie} & \textbf{Bewertung} \\ | |
\hline | |
& \\ | |
\textbf{Fakten} & \ChoiceMenu[radio, width=0.5cm]{ a) }{0,1,2,3,4,5,6,7,8,9,10} \\ | |
& \\ | |
\multicolumn{2}{l}{Wurden Fakten korrekt wiedergegeben?} \\ | |
\multicolumn{2}{l}{\TextField[multiline, name=a,width=\textwidth,height=2cm,borderstyle=D,value={}]{}} \\ | |
& \\ | |
\hline | |
& \\ | |
\textbf{Literatur} & \ChoiceMenu[radio, width=0.5cm]{ b) }{0,1,2,3,4,5,6,7,8,9,10} \\ | |
& \\ | |
\multicolumn{2}{l}{Wurde hochwertige Literatur genutzt?} \\ | |
\multicolumn{2}{l}{\TextField[multiline, name=b,width=\textwidth,height=2cm,borderstyle=D,value={}]{}} \\ | |
& \\ | |
\hline | |
& \\ | |
\textbf{Lesbarkeit},\newline \textbf{Nachvollziehbarkeit} & \ChoiceMenu[radio, width=0.5cm]{ c) }{0,1,2,3,4,5,6,7,8,9,10} \\ | |
& \\ | |
\multicolumn{2}{l}{Sind die Inhalte nachvollziehbar und die Schwierigkeit angemessen?} \\ | |
\multicolumn{2}{l}{\TextField[multiline, name=c,width=\textwidth,height=2cm,borderstyle=D,value={}]{}} \\ | |
& \\ | |
\hline | |
& \\ | |
\textbf{Eigene Leistung} & \TextField[width=0.8cm, validate = { | |
if(event.value > 20){ | |
app.alert("Fehler: Eingetragener Wert muss zwischen 0 und 20 sein!"); | |
event.rc=false; | |
} | |
}]{ d) } \hspace{0.3cm}von 20\\ | |
& \\ | |
\multicolumn{2}{l}{Enthält die Arbeit einen Anteil, welcher selbst erarbeitet wurde?} \\ | |
& \\ | |
\hline | |
& \\ | |
\textbf{Vollständigkeit} & \ChoiceMenu[radio, width=0.5cm]{ e) }{0,1,2,3,4,5,6,7,8,9,10} \\ | |
& \\ | |
\multicolumn{2}{l}{Wurde das Thema vollständig bearbeitet?} \\ | |
\multicolumn{2}{l}{\TextField[multiline, name=e,width=\textwidth,height=2cm,borderstyle=D,value={}]{}} \\ | |
& \\ | |
\hline | |
& \\ | |
\newpage | |
\textbf{Layout} & \ChoiceMenu[radio, width=0.5cm]{ f) }{0,1,2,3,4,5} \\ | |
& \\ | |
\multicolumn{2}{l}{Ist das Layout der Arbeit ansprechend und angemessen?} \\ | |
\multicolumn{2}{l}{\TextField[multiline, name=f,width=\textwidth,height=2cm,borderstyle=D,value={}]{}} \\ | |
& \\ | |
\hline | |
& \\ | |
\textbf{Formulierungen} & \ChoiceMenu[radio, width=0.5cm]{ g) }{0,1,2,3,4,5} \\ | |
& \\ | |
\multicolumn{2}{l}{Sind Formulierungen und Grammatik richtig?} \\ | |
\multicolumn{2}{l}{\TextField[multiline, name=g,width=\textwidth,height=2cm,borderstyle=D,value={}]{}} \\ | |
& \\ | |
\hline | |
& \\ | |
\textbf{Zitate} & \ChoiceMenu[radio, width=0.5cm]{ h) }{0,1,2,3,4,5} \\ | |
& \\ | |
\multicolumn{2}{l}{Wurden Zitate richtig gekennzeichnet?} \\ | |
\multicolumn{2}{l}{\TextField[multiline, name=h,width=\textwidth,height=2cm,borderstyle=D,value={}]{}} \\ | |
& \\ | |
\hline | |
& \\ | |
\textbf{Abbildungen} & \ChoiceMenu[radio, width=0.5cm]{ i) }{0,1,2,3,4,5} \\ | |
& \\ | |
\multicolumn{2}{l}{Sind Abbildungen vorhanden, die die Inhalte unterstützen und auf die sich der Autor im Text bezieht?} \\ | |
\multicolumn{2}{l}{\TextField[multiline, name=i,width=\textwidth,height=2cm,borderstyle=D,value={}]{}} \\ | |
\end{longtable} | |
\end{Form} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment