I'm working with the quoting environment but I can't figure out how to adjust the vertical space before and after it. I would like the environment to be indented on either side like it is but not have a full paragraph return before or after it.
The quoting documentation says that the space at the top of a quote is controlled by vskip. I have tried adjusting the vskip option to vskip=-8pt but it didn't do anything. I also tried adding a \noindent before the quoting environment--also didn't do anything.
Here is a minimal working example.
\documentclass[11pt, oneside]{article}% use "amsart" instead of "article" for AMSLaTeX format
% TeX will automatically convert eps --> pdf in pdflatex
\usepackage{amssymb}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage[parfill]{parskip} %use line breaks instead of indentation
\usepackage{quoting} %For inset quotes more than three lines
\title{Brief Article}
\author{The Author}
%\date{} % Activate to display a given date or no date
\begin{document}
\maketitle
%\section{}
%\subsection{}
\blindtext
\begin{quoting}
This is a quote which should be indented but should not have a full
paragraph line before it or after it. In other words it should be
indented on either side but shouldn't have a full paragraph skip before.
\end{quoting}
\Blindtext
\end{document}


quoting/parskipcombo is a special case. – lockstep Apr 02 '13 at 09:29