[Tex/LaTex] How to show Abstract title

abstractclassicthesislanguages

I think that is something very simple, but I can't see the Abstract title in the abstract environment.

\documentclass{scrreprt}

\usepackage[english]{babel} 

%Loaded here: microtype,graphicx,booktabs,caption,tabularx,hyperref,amsmath
\usepackage{classicthesis-preamble}
\usepackage{classicthesis}

\begin{document}

\begin{abstract}
Text
\end{abstract}

\end{document}

Is it also possible to have a double abstract (one in English and one in Italian) in the same page?

Best Answer

  1. To set a title use the option abstract=on.
  2. To change the language load both languages via option and uses the command \selectlanguage provided by babel.
  3. To set a double abstract put the environments abstract in a minipage

Here a small example:

\documentclass[abstract=on]{scrreprt}

\usepackage[italian,english]{babel} 

%Loaded here: microtype,graphicx,booktabs,caption,tabularx,hyperref,amsmath
\usepackage{classicthesis-preamble}
\usepackage{classicthesis}

\begin{document}
\clearpage
\begin{minipage}{\linewidth}
\begin{abstract}
Text
\end{abstract}
\selectlanguage{italian}
\begin{abstract}
Text
\end{abstract}
\end{minipage}
\end{document}