Skip to content
This repository has been archived by the owner on Nov 19, 2023. It is now read-only.

add the option to sophomorix-print to generate custom classlists using L... #5

Open
wants to merge 1 commit into
base: precise
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions sophomorix-base/config/sophomorix.conf
Original file line number Diff line number Diff line change
Expand Up @@ -226,3 +226,51 @@ $moodle_url="https://moodle.bszleo.de/moodl/e";
# admins (Statt @ -> \@, Umlaut ae -> \"a usw. scharf S -> \ss)
#$admins_print="Richard Strauss (richard.strauss\@wien.de)";

###############################################################################
# Daten fuer Klassenlistendruck
# You can use these variables to customize your classlist
# You have to escape a backslash with a backslash and use single quotes.
###############################################################################

## Any latex code before the table starts
#$print_cl_pretab='\section{Erklärung zur Nutzungsordnung}
#Ich wurde heute in die Nutzungsordnung zur Computer- und
#Internet-Nutzung eingewiesen. Mit den festgelegten Regeln bin ich
#einverstanden. Mir ist bekannt, dass die Schule den Datenverkehr
#protokolliert und durch Stichproben überprüft. Sollte ich gegen die
#Nutzungsregeln verstoßen, verliere ich meine Nutzungsberechtigung. Bei
#Verstoß gegen gesetzliche Bestimmungen sind weitere zivil- oder
#strafrechtliche Folgen nicht auszuschließen.';
#
## start of the table, e.g. a longtable, tabular,etc.
#$print_cl_header='\begin{longtable}{|r|p{55mm}|p{76mm}|p{40mm}|}
#\hline
#\rule[-2mm]{0mm}{7mm}\textbf{Nr}& \textbf{Name, Vorname} & \textbf{Unterschrift} & \textbf{Datum} \\\\
#\hline\hline
#\endhead';
#
## routine to be printed in each row
#sub print_cl_row {
# my $LATEX=$_[0];
# my $count=$_[1];
# my $protokoll_zeile=$_[2];
# ($klasse_protokoll,
# $name_protokoll,
# $loginname_protokoll,
# $passwort_protokoll,
# $geburtsdatum_protokoll
# )=split(/;/,$protokoll_zeile);
#
# my ($firstname,$surname)=split(/\s/,$name_protokoll);
# my $name=$surname.", ".$firstname;
#
# print $LATEX "\\rule[-2mm]{0mm}{10.7mm} $count & $name & & \\\\ \\hline \n";
#}
#
## end of the table
#$print_cl_footer='\end{longtable}';
#
## any latex code after the table
#$print_cl_posttab='
#gez. die Schulleitung, Karlsruhe, den 18.11.2014
#';
Loading