1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
\documentclass{scrartcl}
\usepackage[latin1]{inputenc}
\usepackage{tabularx}
\usepackage[letterpaper,top=2cm,bottom=-3cm,left=1.1cm,right=1.5cm]{geometry}
\usepackage{graphicx}
\begin{document}
\pagestyle{myheadings}
\thispagestyle{empty}
\fontfamily{cmss}\fontsize{10pt}{12pt}\selectfont
<%include letterhead.tex%>
\centerline{\textbf{� A S O V �}\hspace{0.5cm}\textbf{K A R T A}}
\vspace*{0.5cm}
\begin{tabular}[t]{ll}
\textbf{Zamestnanec} & <%employee%> \\
\textbf{ID} & <%employee_id%> \\
\end{tabular}
\hfill
\begin{tabular}[t]{ll}
\textbf{ID karty} & <%id%> \\
\textbf{D�tum} & <%transdate%> \\
\textbf{Vstup} & <%checkedin%> \\
\textbf{V�stup} & <%checkedout%> \\
\textbf{Hodiny} & <%qty%> \\
\end{tabular}
\vspace{1cm}
\begin{tabular}[b]{ll}
\textbf{Pr�ca/Projekt} & <%projectnumber%> \\
\textbf{Popis} & <%projectdescription%> \\
\textbf{Pr�ca/Servis k�d} & <%partnumber%> \\
\textbf{Popis} & <%description%> \\
\end{tabular}
\hfill
\begin{tabular}[b]{lr}
\textbf{Kurz} & <%sellprice%> \\
\textbf{Celkom} & <%total%> \\
\end{tabular}
\vspace{0.3cm}
<%notes%>
\end{document}
|