4

I almost have it figured out. I am just not sure about one final thing. My annotation after the citation is indented way to far to the right. I would like to be able to move the indent of just the annotation.

Here is my main.tex file

\documentclass[man,donotrepeattitle]{apa6}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\geometry{letterpaper, margin=1in}

\usepackage[natbibapa]{apacite}
\usepackage{mathptmx}% http://ctan.org/pkg/mathptmx
\bibliographystyle{apacannx}


\usepackage{fancyhdr}  
\pagestyle{fancy}

\title{Your APA6-Style Manuscript}
\shorttitle{Your APA6-Style Manuscript}
\author{Me} 
\affiliation{University}
%\abstract{Your abstract here} 

\begin{document} 
\maketitle
\renewcommand{\refname}{Annotated bibliography}
\nocite{carlson1984s} 
\bibliography{sample}
\end{document}
}

Here is my sample.bib file

@article{carlson1984s,
title={},
author={},
journal={},
volume={},
number={},
pages={},
year={},
publisher={},
doi={},
annote={},
annotate={}
}

1 Answers1

1

You asked,

How to I get it to say annotated bibliography instead o[f] references?

Issue the instruction

\renewcommand{\refname}{Annotated bibliography}

somewhere before the \bibliography{example} directive. Placing the instruction in the preamble is best.

You also asked,

How do I basically get rid of the second page?

Based on @Johannes_B's very helpful explanatory comment :-), I assume that what you want is not so much get rid of the entire second page but the repeated title on the second page. This may be achieved by providing the document class option donotrepeattitle.

A full MWE:

\documentclass[12pt,letterpaper,man, 
       margin=1in,natbibapa,donotrepeattitle]{apa6}

\bibliographystyle{apacannx}
\renewcommand{\refname}{Annotated bibliography}

\usepackage{fancyhdr}  
\pagestyle{fancy}

\title{Your APA6-Style Manuscript}
\shorttitle{Your APA6-Style Manuscript}
\author{Me} 
\affiliation{University}
%\abstract{Your abstract here} 

\begin{document} 
\maketitle

\nocite{carlson1984s} 
\bibliography{example}
\end{document}
Mico
  • 506,678
  • 1
    Considering how much the quesion improved, i can overlook that the example is not fully compilable. Helpers here definitely have the knowledge to make it so. donotrepeattitle is what he needs. – Johannes_B Feb 07 '17 at 07:18
  • 1
    @Johannes_B - Thanks for this! I will update my answer with this piece of information. – Mico Feb 07 '17 at 07:26
  • Sorry for all the noob questions but I have been using Latex for less than 24 hours. When I use the margin=1in in \documentclass i get the following warning. LaTeX Warning: Unused global option(s): [margin=1in]. – Scott Campbell Feb 07 '17 at 14:11
  • 1
    @ScottCampbell - The message about the unused global option would appear to be a bug in the way the document class keeps track of the global options; for sure, the geometry package is laoded. and package code does know what to do with this option. – Mico Feb 07 '17 at 15:10
  • I was using overleaf.com and I think it is a problem with their system why the page is not working. I switched to sharelatex.com and things are working much much better – Scott Campbell Feb 07 '17 at 15:53
  • 1
    @ScottCampbell - Glad you've found a TeX distribution that's working for you. – Mico Feb 07 '17 at 15:58
  • 1
    I decided to not upvote answers of high-rep users (there are plenty to vote for answers), unless i ask them to write an answer. Your answer has no upvotes for twelve hours, which is unfair. +1 from my side. – Johannes_B Feb 07 '17 at 19:21
  • @Johannes_B - Please see the query http://tex.stackexchange.com/q/297330/5001. If you wouldn't mind providing an upvote to the linked answer, we can start the proceedings to close this holdover query. – Mico Feb 08 '17 at 21:17