1

Problem 1: The output pdf has an abstract indented to the left. How to make it justified?

Problem 2: How to remove/hide the title "Airbus" before Introduction in Page 3? The running title is already there, hence this title redundancy is unwanted.

Here is my code. Thanks in advance.

\documentclass[a4paper,man,12pt,natbib]{apa6}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}

\title{Airbus}
\shorttitle{Airbus}
\author{Writer}
\affiliation{LSE}

\abstract{This paper provides an overview on the history of Airbus, its time evolution from early establishment to present day emphasizing on the information systems and technology. The objectives are to explore how Airbus as a manufacturing company embraced Information Systems and Technology to run its business and transformed into a data driven company. From its day-to-day operation to strategic plans, Airbus' use of information systems and technology has given the company not only a cutting edge advantage over other companies but also set examples how other companies can follow its footsteps. The paper describes several processes showing how Airbus business model is configured to a network infrastructure embellished with information system and technology. It continues how information flows across and up and down the company at various level and helps developing company-customer relationship ensuring quality products and services. Finally, a SWOT analysis is conducted showing room for further opportunities and prolific use of Information system and technology.} 
\keywords{Airbus, information systems, technology}
\begin{document}
\maketitle 
\section{Introduction}
\bibliography{example}
\end{document}
gamahuri
  • 415

1 Answers1

1

Although I don't recommend using the apa6 class (at least with the man option) for purposes other than producing APA journal manuscripts, it's actually not too difficult to do what you need with the class.

To remove the extra title use the aptly named [donotrepeattitle] class option.

Since the man mode sets all the text to \raggedright and LaTeX has no built-in way to cancel that, it's easiest to load the ragged2e package which supplies a justifying command.

\documentclass[a4paper,man,12pt,natbib,donotrepeattitle]{apa6}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{ragged2e}
\justifying
\title{The Airbus}
\shorttitle{Airbus}
\author{Writer}
\affiliation{LSE}

\abstract{This paper provides an overview on the history of Airbus, its time evolution from early establishment to present day emphasizing on the information systems and technology. The objectives are to explore how Airbus as a manufacturing company embraced Information Systems and Technology to run its business and transformed into a data driven company. From its day-to-day operation to strategic plans, Airbus' use of information systems and technology has given the company not only a cutting edge advantage over other companies but also set examples how other companies can follow its footsteps. The paper describes several processes showing how Airbus business model is configured to a network infrastructure embellished with information system and technology. It continues how information flows across and up and down the company at various level and helps developing company-customer relationship ensuring quality products and services. Finally, a SWOT analysis is conducted showing room for further opportunities and prolific use of Information system and technology.} 
\keywords{Airbus, information systems, technology}
\begin{document}
\maketitle 
\section{Introduction}
\bibliography{example}
\end{document}

abstract first page

Alan Munn
  • 218,180