How do i remove the space infront of the 'Lorem' and how do i set the linespacing to 6pt after abstract ?
Requirements:
- Abstract heading
- Alignment : left
- Size : 13pt , bold italic Times New Roman , Small caps
- Paragraph line spacing : 6 pt
Eg. After the Abstract i need include 6 pt of line spacing and then continue to the abstract content.
This is the requirement i want, and i not sure how to set for the line spacing.
\documentclass[a4paper]{article}
\usepackage{geometry}
\geometry{
a4paper,
total={210mm,297mm},
left=30mm,
top=30mm,
right=30mm,
bottom=30mm
}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{mathptmx}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{kpfonts}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{tocloft}
\usepackage{authblk}
\usepackage{abstract}
\usepackage{fontspec}
\usepackage{titlesec}
\usepackage{slantsc}
\usepackage{bold-extra}
\renewcommand{\absnamepos}{flushleft}
\setlength{\absleftindent}{0pt}
\setlength{\absrightindent}{0pt}
\renewcommand{\abstractnamefont}{\fontsize{13}{16}\scshape\itshape\bfseries\selectfont\parskip6pt}
\renewcommand{\abstracttextfont}{\fontsize{10}{12}\itshape}
\usepackage{lipsum}
\begin{document}
\begin{abstract}
\lipsum[1]
\end{abstract}
\end{document}


\noindent \lipsum[1]to remove the space before Lorem. – ddas Aug 13 '16 at 07:06\parskipparameter, which governs the amount of white space between paragraphs, for theabstractenvironment: Abstracts usually consist of a single (and hopefully brief) paragraph, right? – Mico Aug 13 '16 at 07:39\renewcommand{\abstractnamefont}{\fontsize{13}{16}\scshape\slshape \parskip6pt} \renewcommand{\abstracttextfont}{\fontsize{10}{12}\itshape\noindent\ignorespaces}– Runar Aug 13 '16 at 13:54\slshapegives you oblique, which might be what Word tells you is italic, but isn't.) – cfr Aug 14 '16 at 02:50lmodern,mathptmxandkpfontsis probably pointless if you then loadfontspec. You almost certainly do not want to loadfontencsince you are usingfontspec. You do not want to loadslantscorbold-extraif usingfontspec. – cfr Aug 14 '16 at 02:54philosophy.stymay be of help, though. (Search for it.) If it just needs to look awful, it might work. However, TNR just doesn't have the combination of weight and shape. (And, yes, you can fake it. But doing so is evil.) – cfr Aug 14 '16 at 02:59