I am new to LaTex coding so please be patient ;) Just let me know when this kind of question has been asked so far. I have some graphs I want to put in my LaTeX document and I want them as big as possible to be able to see the details(hence, they need to have a width of at least 1). To describe them, I want some text next to it. The image and the text should take the whole page(and also should ingore the margins). I tried so far:
-two minipages + itemize(which is not satisfying because minipages doesn't consider the size of the page(so my keypoints are cut off) and I loose some space between the minipages
wrapfig but couldn't align it as I wanted
floatrow and tried to write the keypoints into the captions; I also couldn't manage to align it(the image just floated somewhere outside of the page)
figure and subfigure to right it into the captions but could't manage to put all images on one another and write the captrions next to it.
\documentclass{article}
\usepackage{graphicx}
\usepackage[a4paper, top=2cm]{geometry}
\usepackage{arydshln}
\usepackage{booktabs}
\usepackage{bbding}
\usepackage{caption}
\usepackage{lipsum}
\usepackage{wrapfig}
\usepackage{fullpage}
\usepackage[utf8x]{inputenc}
\usepackage[english]{babel}
\usepackage{xcolor}
\usepackage{csvsimple}
\usepackage{subcaption}
\begin{document}
\begin{minipage}{0.8\textwidth} %this cuts off my points
\includegraphics[width=1\textwidth]{image.png}
\end{minipage}
\begin{minipage}{0.8\textwidth}
\begin{itemize}
\item
\end{itemize}
\end{minipage}
\begin{figure}[h] %this is on one another and the text is below it
\begin{minipage}{1\textwidth}
\includegraphics[width=1\textwidth]{image.png}
\end{minipage}
\begin{minipage}{1\textwidth}
\includegraphics[width=1\textwidth]{image.png}
\end{minipage}
\end{figure}
Some text that should be right or left next to it or around bit is above
\begin{wrapfigure}{l}{0.6\textwidth}
\vspace{-20pt}
\centering
\includegraphics[width=0.8\textwidth]{image.png} \vspace{-20pt}
\vspace{-10pt}
\end{wrapfigure}
\end{document}
I don't care about the soluation at all as long as it works for me

