Bonalumi” post=98259Ho creato un archivio zip con il mio main (thesis.tex), un capitolo di prova (prova1.tex) e una cartella con le immagini che mi interessano. Purtroppo non ho mai fatto quel che mi hai chiesto e avendo fretta ho cercato un modo che conoscessi. Nel caso non vada bene provvederò a fare come dici. Intanto grazie.
[attachment=1188]prova.zip[/attachment]
Dunque, questo è un esempio minimo: `
\documentclass[a4paper]{book}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{mwe}
\begin{document}
\begin{figure}
\centering
\subfloat[Le resistenze]
{\includegraphics[scale=0.25]{example-image}}
\qquad%
\subfloat
{\includegraphics[scale=0.25]{example-image}}
\caption{Il sistema di resistenze impiegato e gli andamenti della temperatura del flusso principale per due differenti regimi di flusso.}
\label{fig:cappelliera}
\end{figure}
\end{document}
` Il problema tuo è molto probabilmente dovuto alle dimensioni differenti delle figure che stai includendo. In effetti, anche la documentazione del pacchetto subfig lo dice:
6 Frequently Asked Questions (FAQs)
The ten most frequently asked questions about the subfig package are:
6.1 “My sub-floats are not aligned along their bottoms. Why?”
Remember! The subfig package aligns sub-floats along their baselines with the sub- caption (if any) sticking out above or below. The above problem is usually due to using a minipage, tabular or array environment that, by default, places the baseline at the center of the box that it generates. If the two sub-floats are different sizes, or if one sub-float is generated in some other way with its baseline not at the expected place (perhaps an \includegraphics), then the sub-float will be misaligned. One solution is to use the environment options ‘[t]’ or ‘’ to move the baseline to the top or bottom rather than the center.
Ciao
Claudio