| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- \documentclass{article}
-
- % if you need to pass options to natbib, use, e.g.:
- % \PassOptionsToPackage{numbers, compress}{natbib}
- % before loading neurips_2021
-
- % ready for submission
- \usepackage[preprint]{neurips_2021}
-
- % to compile a preprint version, e.g., for submission to arXiv, add add the
- % [preprint] option:
- % \usepackage[preprint]{neurips_2021}
-
- % to compile a camera-ready version, add the [final] option, e.g.:
- % \usepackage[final]{neurips_2021}
-
- % to avoid loading the natbib package, add option nonatbib:
- % \usepackage[nonatbib]{neurips_2021}
-
- \usepackage[utf8]{inputenc} % allow utf-8 input
- \usepackage[T1]{fontenc} % use 8-bit T1 fonts
- \usepackage[colorlinks=true]{hyperref} % hyperlinks
- \usepackage{url} % simple URL typesetting
- \usepackage{booktabs} % professional-quality tables
- \usepackage{amsfonts} % blackboard math symbols
- \usepackage{nicefrac} % compact symbols for 1/2, etc.
- \usepackage{microtype} % microtypography
- \usepackage{xcolor} % colors
-
- \title{Analyzing Gender Share\\in Casting Actors}
-
- % The \author macro works with any number of authors. There are two commands
- % used to separate the names and addresses of multiple authors: \And and \AND.
- %
- % Using \And between authors leaves it to LaTeX to determine where to break the
- % lines. Using \AND forces a line break at that point. So, if LaTeX puts 3 of 4
- % authors names on the first line, and the last on the second line, try using
- % \AND instead of \And before the third author name.
-
- \author{%
- Sophia Herrmann\\
- Matrikelnummer 5688690\\
- \texttt{so.herrmann@student.uni-tuebingen.de} \\
- \And
- Tobias Stumpp\\
- Matrikelnummer 3798377\\
- \texttt{tobias.stumpp@student.uni-tuebingen.de} \\
- }
-
- \begin{document}
-
- \maketitle
-
- \begin{abstract}
- We are planning to use a dataset on \href{https://datasets.imdbws.com/name.basics.tsv.gz}{film-actors}, \href{https://datasets.imdbws.com/title.basics.tsv.gz}{film-titles}, \href{https://datasets.imdbws.com/title.ratings.tsv.gz}{film-ratings} from the \href{https://imdb.com}{IMDb} to examine how the female share on the cast of actors has changed over years. We want to look at when and in which genres the gender share has changed. We want to see if we can find correlations of film ratings and genres on gender share, and, if applicable, see how well film rating can be predicted.
- \end{abstract}
-
- \end{document}
|