I am writing my master's thesis on TeXmaker. As for following the APA citation rules, I started using the apa6 document class. But even in the doc-mode, it still puts a short title (in capital letters) on top of every page, but I don't think that is appropriate in a master's thesis.
So my question is: how can I either erase that short title so it doesn't appear at all, or at least change it into normal letters?
I tried \renewcommand{\shorttitle}[1]{} which I found in this forum, it seems to work for suppressing the abstract, but it didn't work for me.
Asked
Active
Viewed 835 times
0
2 Answers
1
I found a nice workaround: just leaving the \shorttitle{} -command empty helped.
My MWE:
\documentclass[12pt,a4paper,doc]{apa6}
\usepackage[english, ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
\title{title}
\author{C.Zet}
\affiliation{master's thesis}
\date{\today}
\shorttitle{ }
\maketitle
\end{document}
C.Zet
- 11
1
Try adding \thispagestyle{empty} in the title section, in addition to \shorttitle{ }. This removes "Running head:" for me.
cuivre
- 11
\documentclass{...}and ending with\end{document}. – egreg Feb 25 '16 at 21:07apa6class at all. See What is the difference between natbib, apacite package and apa6 document class? – Alan Munn Feb 26 '16 at 02:04