How can we change the line spacing in a long-table? I used package setspace and \linestretch command, but its not working. Minimal Example is attached.
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{array}
\usepackage{longtable}
\usepackage{float}
\usepackage{lipsum}
%\usepackage{stepspace}
\makeatletter
\providecommand{\tabularnewline}{\\}
\makeatother
\usepackage{setspace}
\usepackage{babel}
\begin{document}
\renewcommand{\baselinestretch}{.8}
\lipsum{1}
\begin{longtable}{>{\raggedright}p{135pt}>{\raggedright}p{135pt}r}
\caption{dfkg kdlfgj dfjkg dfklgj sd}
\hline
\textbf{Country} & \textbf{District} & \textbf{Amount }\textbf{\scriptsize ('000'USD)}\tabularnewline
\hline
\endhead
Afghanistan & L & 6\tabularnewline
\hline
Australia & K & 2,9\tabularnewline
\hline
Austria & I & 3\tabularnewline
\hline
Bahrain & K & 3\tabularnewline
& L & 1\tabularnewline
\hline
Belgium & K & 1\tabularnewline
& L & 2\tabularnewline
\hline
Canada & I & 99,965\tabularnewline
& K & 9\tabularnewline
& L & 1\tabularnewline
\hline
Cayman I & I & 2\tabularnewline
& Ka & 1\tabularnewline
\hline
\textbf{Grand Total} & & \textbf{2}\tabularnewline
\hline
\end{longtable}
\end{document}
\arraystretchvia\renewcommand; the default value is1.0. – Mico May 13 '14 at 08:16\setstretch{0.8}just before the long table. – May 13 '14 at 08:29