-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper.tex
79 lines (63 loc) · 1.94 KB
/
paper.tex
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
\documentclass[sigconf]{acmart}
% ------------------------------------------------------------------------------
% Pacakges
% ------------------------------------------------------------------------------
% math
\usepackage{amssymb, amsmath}
% images
\usepackage{caption}
\usepackage{subcaption}
\usepackage{tikz}
\usepackage[export]{adjustbox}
\usepackage{float}
\usepackage{pdflscape}
% tables
\usepackage{booktabs}
\usepackage{tabularx}
% url
\usepackage{hyperref}
% ------------------------------------------------------------------------------
% acm art settings
% ------------------------------------------------------------------------------
\title{Forward and Deferred Hashed Shading for Real-time Rendering of Many Lights}
\author{Martinus Wilhelmus Tegelaers}
\affiliation{\institution{KULeuven}}
\email{mwtegelaers@gmail.com}
\keywords{real-time graphics, light assignment, shading}
\begin{CCSXML}
<ccs2012>
<concept>
<concept_id>10010147.10010371.10010372.10010373</concept_id>
<concept_desc>Computing methodologies~Rasterization</concept_desc>
<concept_significance>500</concept_significance>
</concept>
</ccs2012>
\end{CCSXML}
\setcopyright{rightsretained}
\copyrightyear{2017}
\acmDOI{}
\makeatletter
\renewcommand\@formatdoi[1]{\ignorespaces}
\makeatother
\settopmatter{printacmref=false}
\renewcommand\footnotetextcopyrightpermission[1]{}
\pagestyle{empty}
% ------------------------------------------------------------------------------
% Document
% ------------------------------------------------------------------------------
\begin{document}
\input{./img/tex/teaser_img.tex}
\input{./content/abstract.tex}
\maketitle
\input{./content/introduction.tex}
\input{./content/related_work.tex}
\input{./content/algorithm.tex}
\input{./content/implementation.tex}
\input{./content/results.tex}
\input{./content/conclusion.tex}
\bibliographystyle{alpha}
\bibliography{paper}
\appendix
\onecolumn
\input{./content/appendix.tex}
\end{document}