Texmaker and TeXstudioapa6 revise title page

Information and discussion about Texmaker, an integrated LaTeX environment for several platforms, and the related TeXstudio
Post Reply
dsears1
Posts: 2
Joined: Fri Apr 24, 2015 6:14 am

apa6 revise title page

Post by dsears1 »

Using the apa6 style class, the title is too far down the title page so that the Author Note begins on page 2. How do I remove the vertical space before the title so I can fit the Author Note on the title page? Any help would be greatly appreciated.

Here's the MWE:

Code: Select all

\documentclass [man]{apa6}

\title{TITLE GOES HERE}
\shorttitle{SHORT TITLE GOES HERE}
\threeauthors{Author Name 1}{Author Name 2}{Author Names 3 and 4}
\threeaffiliations{Centre for Interdisciplinary Research in Music Media and Technology (CIRMMT),\linebreak Schulich School of Music, McGill University, Montreal, Canada}{Music Cognition Research Group, School of Electronic Engineering and Computer Science, \linebreak Queen Mary University of London, London, UK}{Centre for Interdisciplinary Research in Music, Media, and Technology (CIRMMT),\linebreak Schulich School of Music, McGill University, Montreal, Canada}
\abstract{TEXT GOES HERE.}
\keywords{cadence, expectation, schema, statistical learning}
\authornote{Funding was provided by a NAME H. NAME fellowship and a NAME doctoral fellowship from the Programme de bourses d'excellence pour étudiants étrangers awarded to AUTHOR 1, FUNDING SOURCES FOR AUTHOR 2, a Canadian Social Sciences and Humanities Research Council grant and NAME Professorship awarded to AUTHOR 3, and Canadian Natural Sciences and Engineering Research Council and Social Sciences and Humanities Research Council grants and NAMED Research Chair awarded to AUTHOR 4. \linebreak *Corresponding author. Email: \texttt{email@institution.edu}}

\begin{document}
	\maketitle
	\setcounter{secnumdepth}{3}
	\section{Model}
	\subsection{Probability Estimation}
	\subsubsection{Maximum Likelihood}
	TEXT GOES HERE.
\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

apa6 revise title page

Post by Johannes_B »

This is a bug in the class and should be reported.

Code: Select all

\usepackage{etoolbox}
\patchcmd{\maketitle}{\vspace*{1in}}{}{}{}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
dsears1
Posts: 2
Joined: Fri Apr 24, 2015 6:14 am

Re: apa6 revise title page

Post by dsears1 »

Works like a dream. Thanks Johannes_B. I don't know how to report the bug. What steps must I take?
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

apa6 revise title page

Post by Johannes_B »

I contacted the author, and it seems the input is wrong. The following should be the correct input.

Code: Select all

\documentclass[man]{apa6}

\usepackage{blindtext}
\title{Wombat}
\threeauthors{Author Name 1}{Author Name 2}{Author Names 3 and 4}
\threeaffiliations{McGill University, Montreal, Canada}{Queen Mary University of London}{McGill University, Montreal, Canada}

\authornote{Author Name 1, Centre for Interdisciplinary Research in
  Music Media and Technology (CIRMMT), Schulich School of Music,
  McGill University; Author Name 2, Music Cognition Research Group,
  School of Electronic Engineering and Computer Science, Queen Mary
  University of London; Author Names 3 and 4, Centre for
  Interdisciplinary Research in Music, Media, and Technology (CIRMMT),
  Schulich School of Music, McGill University.

  Correspondence concerning this article should be addressed to Author
  Name 1, Centre for Interdisciplinary Research in Music Media and
  Technology (CIRMMT), Schulich School of Music, McGill University,
  Montreal, Canada.  E-mail: email@institution.edu}

%\usepackage{etoolbox}
%\patchcmd{\maketitle}{\vspace*{1in}}{}{}{}
\begin{document}
\maketitle
\end{document}
You can find the requirements for title-page formatting beginning on page 23 of the Manual.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply