I want to create a simple table using wraptable inside the itemize environment floating it to the right and wrapping the text by the left, but the table goes to the bottom of the page or even to another page. Tried to use wraptable outside the itemize environment and happens the same. Example:
\documentclass[letterpaper,12pt,oneside]{article}
\usepackage{geometry}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{fontenc}
\usepackage{lipsum}
\usepackage{wrapfig}
\begin{document}
\lipsum[1-1]
\begin{itemize}
\item \lipsum[1-1]
\begin{wraptable}{r}{0.45\textwidth}
\begin{tabular}{l l}
\hline
Some random text & More random text\\
Some random text & More random text\\
\hline
\end{tabular}
\end{wraptable}
\lipsum[1-1]
\end{itemize}
\end{document}
And if this wasn't enough, writing this example results that the wraptable doesn't work! The table goes to the bottom of the page, it's not wrapped and it doesn't get floated to the right (watch the image).
Please, help with this. Have to finish this article by monday :( Thanks!


\sectionto the bottom – Matias Schiaffino Aug 20 '17 at 06:41