VU Social Sciences APA7 Paper Template
Autor
R Buma
Last Updated
hace 2 años
License
Creative Commons CC BY 4.0
Resumen
Vrije Universiteit Amsterdam
Social Sciences APA7 Paper Template
% This template is based on the apa7 latex class.
% I recommend reading about the class here:
% https://ctan.math.illinois.edu/macros/latex/contrib/apa7/apa7.pdf
% The class includes various useful commands which all format documents in the correct apa7 style.
% Documentlass can be stu (student), doc (document), jou (journal), or man (manuscript)
% Use stu for Course papers
\documentclass[stu, a4paper, 11pt, biblatex, donotrepeattitle]{apa7}
\usepackage[english]{babel}
%%%%% PACKAGES
% subfiles
\usepackage{subfiles}
%hyperlink colors fix
\usepackage{xcolor}
\hypersetup{
colorlinks,
linkcolor={blue!50!black},
citecolor={blue!50!black},
urlcolor={blue!80!black}
}
% Title
\title{Insert Title here}
\shorttitle{Insert short title here}
% Author
\author{Your Name}
\affiliation{Vrije Universiteit Amsterdam}
% for student mode
\course{Course Number: Course Name}
\professor{Professor Names}
\duedate{Due Date}
% Authornote, if desired uncomment:
% \authornote{}
% Abstract, if desired uncomment:
%\abstract{\subfile{0-abstract}}
% biblatex reference file
\addbibresource{references.bib}
\begin{document}
\maketitle
\tableofcontents
\newpage
% Add all section subfiles here. More can be created if needed
\subfile{1-introduction}
\subfile{2-research design}
\subfile{3-analysis}
\subfile{4-conclusion}
% sections are done with \section, \subsection and \subsubsection.
% for more information, see https://ctan.math.illinois.edu/macros/latex/contrib/apa7/apa7.pdf
\printbibliography
% include all sources in references.bib
% cite sources in text with \autocite, or:
% \parencite for "(Author, 2023)"
% \textcite for "Author (2023)"
\end{document}