Subfigs of a figure on multiple pages

Everything inside \begin{figure}…\end{figure} must not be larger than a single page. In order to break it over pages, you must do it manually. Use \ContinuedFloat from the subfig package to do this: (from the subfig documentation, §2.2.3) \begin{figure} \centering \subfloat[][]{…figure code…}% \qquad \subfloat[][]{…figure code…} \caption{Here are the first two figures of a continued figure.} \label{fig:cont} … Read more

jsPDF multi page PDF with HTML renderer

I have the same working issue. Searching in MrRio github I found this: https://github.com/MrRio/jsPDF/issues/101 Basically, you have to check the actual page size always before adding new content doc = new jsPdf(); … pageHeight= doc.internal.pageSize.height; // Before adding new content y = 500 // Height position of new content if (y >= pageHeight) { doc.addPage(); … Read more

tech