-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Invalspolicy och Representationspolicy (LP1 2024)
- Loading branch information
1 parent
f3285a2
commit 29ebda5
Showing
10 changed files
with
151 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
|
||
\section{Valberednings- och Invalspolicy} | ||
|
||
Denna policy beskriver hur valberedningens process ska genomföras samt hur inval till sektionens kommittéer ska ske. Alla medlemmar har rätt att söka alla förtroendeposter inom sektionen. | ||
|
||
\subsection{Valberedning} Alla kommittéer har rätt att begära valberedning från styrelsen inför inval av nya kommittemedlemmar. Valberedningens giltighet definieras i sektionens reglemente. Valberedningen har tystnadsplikt gällande diskussioner och detaljer om de sökande. Endast en sammanfattande bedömning av de nominerade ska presenteras vid invalsmötet. | ||
|
||
\subsection{Personinval} Inför inval till en kommitté ska intresserade medlemmar anmäla sitt intresse till sektionsstyrelsen senast 10 dagar före det sektionsmöte där invalet ska ske. Detta gäller även fyllnadsval. Anmälan är dock inte bindande. | ||
|
||
En lista med alla de sökande som är intresserade av en förtroendepost ska publiceras i sektionens lokaler senast 10 dagar innan det aktuella mötet. | ||
|
||
En sektionsmedlem har fortfarande rätt att söka en post även om denne inte anmält sig i förväg. Vid invalsmötet ska sektionsstyrelsen dock tydligt klargöra vilka av de sökande som har anmält sig inom den angivna tidsfristen. | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
all: | ||
latexmk -xelatex -outdir=aux Policy.tex | ||
cp aux/Policy.pdf . | ||
|
||
latexmk -xelatex -outdir=aux sektionsoveraller-kontrakt.tex | ||
cp aux/sektionsoveraller-kontrakt.pdf . | ||
|
||
latexmk -xelatex -outdir=aux sektionsoveraller-policy.tex | ||
cp aux/sektionsoveraller-policy.pdf . |
This file contains 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
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,14 +5,13 @@ | |
|
||
\title{Policys för Datateknologsektionen} | ||
|
||
|
||
\makeheadfoot | ||
|
||
\begin{document} | ||
\maketitle | ||
Dessa policys är satta av Datateknologsektionens styrelse för att komplementera sektionens stadgar och reglemente, samt kårens centrala stadgar, reglemente och policys. | ||
|
||
Frågor gällande policys hänvisas till \mailto{[email protected]} eller via post. | ||
Frågor gällande policys hänvisas till [email protected] eller via post. | ||
|
||
\tableofcontents | ||
|
||
|
@@ -21,6 +20,8 @@ | |
\newpage | ||
\input{Basenpolicy} | ||
\newpage | ||
\input{Invalspolicy} | ||
\newpage | ||
\input{Representationspolicy} | ||
\newpage | ||
\input{Kommunikationspolicy} | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
\NeedsTeXFormat{LaTeX2e} | ||
\ProvidesClass{dtek}[2013/04/07 Datateknologsektionen Chalmers] | ||
|
||
\newif\ifincludeaddress | ||
\includeaddresstrue | ||
\DeclareOption{noincludeaddress}{\includeaddressfalse} | ||
|
||
\ProcessOptions\relax | ||
|
||
\LoadClass[11pt]{article} | ||
|
||
\RequirePackage[quiet]{fontspec} | ||
\RequirePackage{parskip} | ||
\RequirePackage{graphicx} | ||
\RequirePackage{fancyhdr} | ||
\RequirePackage[swedish]{babel} | ||
\RequirePackage{lastpage} | ||
\RequirePackage[unicode]{hyperref} | ||
\RequirePackage[includeheadfoot, top=2.0cm, bottom=4cm]{geometry} | ||
\RequirePackage{xparse} | ||
\RequirePackage{etoolbox} | ||
|
||
\RequirePackage{pdfpages} | ||
|
||
\AtBeginDocument{ | ||
\hypersetup{ | ||
pdftitle = {\@title}, | ||
pdfauthor = {\@author}, | ||
colorlinks=true, | ||
citecolor=black, | ||
filecolor=black, | ||
linkcolor=black, | ||
urlcolor=black | ||
} | ||
} | ||
|
||
\DeclareDocumentCommand \subtitle {m} {% | ||
\DeclareDocumentCommand \@subtitle {}{#1} | ||
} | ||
|
||
\DeclareDocumentCommand \maketitle {} {% | ||
{\centering\bf\LARGE \@title\par} | ||
\ifdef{\@subtitle}{{\centering\Large \@subtitle\par}}{} | ||
} | ||
|
||
% Set up headers | ||
|
||
\DeclareDocumentCommand \makehf {}{% | ||
\pagestyle{fancy} | ||
\fancyhf{} | ||
|
||
\newcommand{\headleft}{% | ||
\raisebox{-3mm}{\includegraphics[width=16mm]{dteklogo}}\hspace{1mm} | ||
\parbox[b]{10cm}{% | ||
\textbf{Datateknologsektionen}\\ | ||
Chalmers studentkår\\ | ||
\@title | ||
} | ||
} | ||
\newcommand{\headright}{% | ||
Sida \thepage\ av \pageref{LastPage}\\ | ||
\@date | ||
} | ||
|
||
% Calculate header height | ||
\settototalheight\headheight{\headleft} | ||
\addtolength\headheight{1.0pt} | ||
|
||
\lhead{\headleft} | ||
\rhead{\headright} | ||
|
||
\renewcommand{\headrule}{ | ||
\nointerlineskip | ||
\hskip 16mm\hrulefill | ||
} | ||
|
||
\renewcommand{\footrulewidth}{\headrulewidth} | ||
|
||
\ifincludeaddress | ||
|
||
\lfoot{% | ||
\flushleft Datateknologsektionen\\ | ||
Rännvägen 8\\ | ||
412 58 Göteborg | ||
} | ||
|
||
\rfoot{% | ||
\begin{flushright} | ||
\href{mailto:[email protected]}{[email protected]}\\ | ||
\href{http://dtek.se}{www.dtek.se} | ||
\end{flushright} | ||
} | ||
\fi | ||
} | ||
|
||
\DeclareDocumentCommand \makeheadfoot {}{\makehf} | ||
|
||
\DeclareDocumentCommand \makesign {m} {% | ||
\parbox{0.47\textwidth}{% | ||
\vspace{2cm} | ||
\rule{0.47\textwidth}{0.5pt}\\ | ||
#1 | ||
} | ||
} | ||
|
||
\endinput |
Binary file not shown.
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
Datateknologsektionens styrdokument finns nu på github. | ||
För de senaste aktuella styrdokumenten se https://dtek.se/styrdokument | ||
|
||
För att bygga reglemente eller stadga använda `make` i dess mapp | ||
För att bygga reglemente, stadgar eller policy använd `make` i dess mapp. | ||
|
||
Följande paket behövs: | ||
latexmk | ||
luatex | ||
xelatex | ||
texlive-lang-european |