I'm pretty new in Latex and have a question.
I have the following code:
Code: Select all
\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage{fullpage}
\usepackage{datatool}
\begin{document}
\section{Mild Steel - S235}
The cutting quality and cutting performance are dependent on the alloy components. In mild steel, a greater content of Si creates a rough cut edge and increases slag formation and burring. Carbon content $ >0.16 $ can lead to poor results on sharp edges and small holes. We recommend you use laser sheets having controlled alloy constituents when working at the extreme sheet-thickness range.
\subsection{General}
\input{ResulterendeMatrixMildSteel}\\
\input{ResulterendeMatrixStainlessSteel}\\
\input{ResulterendeMatrixAluminium}\\
\input{ResulterendeMatrixRest}\\
These input files are tabulars that are created in Matlab and can be read in LaTeX. Now these tabulars are to big to fit on 1 page. So I want to fix this. I want to split these tabulars on a certain row and make them fit on 1 page. I want to do this from the LaTeX file where I use the "input" command. Without the need to change the input file.
I hope you can help me with this,
Thanks in advance