blob: 76586a67a5da0c4a5ce8e9f2ad1d6a5dcdd072cf (
plain)
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
|
\documentclass[centeredchapter]{thesis-ekf}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\PassOptionsToPackage{defaults=hu-min}{magyar.ldf}
\usepackage[magyar]{babel}
\usepackage{graphicx,amsmath,amssymb,amsthm}
\graphicspath{{./images/}}
\footnotestyle{rule=fourth}
\newtheorem{tetel}{Tétel}[chapter]
\newtheorem{lemma}[tetel]{Lemma}
\theoremstyle{definition}
\newtheorem{definicio}[tetel]{Definíció}
\newtheorem{feladat}[tetel]{Feladat}
\theoremstyle{remark}
\newtheorem{megjegyzes}[tetel]{Megjegyzés}
\newtheorem*{megoldas}{Megoldás}
\logo{\includegraphics[width=9cm]{ekf-logo3}}
\institute{Matematikai és Informatikai Intézet}
\title{A szakdolgozat címe}
\authorcaption{Készítette:}
\author{Szerző neve\\ szak}
\supervisorcaption{Témavezető:}
\supervisor{Tanár neve\\ beosztás}
\city{Eger}
\date{2015}
\begin{document}
\maketitle
\tableofcontents
\chapter*{Bevezetés}
\chapter{Fejezet címe}
\section{Szakasz címe}
\subsection{Alszakasz címe}
\begin{thebibliography}{1}
\bibitem{cimke} \textsc{Szerző}: Cím, Kiadó, Hely, évszám.
\end{thebibliography}
\end{document}
|