I want to arrange 4 of my gnuplottex figures on a page. So I tried this minimal example:
Code: Select all
\documentclass[10pt,a4paper,captions=nooneline]{article}
\usepackage{gnuplottex}
\usepackage{lscape}
\usepackage[a4paper, portrait, left=2.5cm, right=3cm, top=2cm, bottom=2cm, includefoot, marginpar=2cm]{geometry}
\begin{document}
\begin{landscape}
\begin{figure}
\begin{minipage}[t]{.4\textwidth}
\begin{gnuplot}[terminal=pdf,scale=.8]
plot sin(x)
\end{gnuplot}
\end{minipage}
%\hfill
\begin{minipage}[t]{.4\textwidth}
\begin{gnuplot}[terminal=pdf,scale=.8]
plot sin(x)
\end{gnuplot}
\end{minipage}
\\
\begin{minipage}[t]{.4\textwidth}
\begin{gnuplot}[terminal=pdf,scale=.8]
plot sin(x)
\end{gnuplot}
\end{minipage}
%\hfill
\begin{minipage}[t]{.4\textwidth}
\begin{gnuplot}[terminal=pdf,scale=.8]
plot sin(x)
\end{gnuplot}
\end{minipage}
\end{figure}
\end{landscape}
\end{document}
Could someone help me, please?