I am currently making a document with this environment.
I would like to have a tabbed over section of text, which I am doing with \adjustwidth. I would like to have another tabbed over section within this section without whitespace above and below. How can I do this?
I realize that I did not use the ebook layout for the MWE. I didn't want to put all of the extra stuff included in ebook. I apologize.
MWE:
\documentclass{article}
\usepackage{changepage} % for use of a tabbed over section for a small portion of the text e.g. in chapter 1
\begin{document}
\begin{adjustwidth}{2.5em}{0pt}
I want these words at this level \
More at this level \
\begin{adjustwidth}{2.5em}{0pt}
I want these words at this level \
I do not want the whitespace above and below this level \
\end{adjustwidth}
How can I get rid of the whitespace above and below the nested adjustwidth, or what's the best way to do this?\
\end{adjustwidth}
\end{document}


\parshaperather thanadjustwidth. – Werner Aug 11 '16 at 22:09