Salve. Ho tentato di semplificare il più possibile per avere un esempio ripetibile per voi.
Questo è il file tex principale:
\documentclass[pdftex,10pt,a4paper,oneside]{scrbook}
\RequirePackage[subfigure,logo,eulermath,thesisinfo]{SapienzaStyle/sapienzastyle}
\graphicspath{{Figure/}{Figure/Z16/}{Figure/Portrait/}{Figure/IJT/}}
\DeclareGraphicsExtensions{.pdf,.png,.jpg,.bmp,.mps}
\newcolumntype{d}{D{.}{.}{-1}}
\usepackage{draftwatermark}
\SetWatermarkLightness{0.9}
\usepackage{prelim2e}
\makenomenclature
\renewcommand{\nomname}{List of Symbols}
\renewcommand{\nomentryend}{.}
\usepackage{caption}
\captionsetup{font=small,format=plain,labelfont={sf,sc},labelsep=quad,skip=6pt}
\usepackage{booktabs}
\usepackage{colortbl}
\hyphenation{th-ree-di-men-sio-nal}
\begin{document}
\frontmatter
\include{FrontBackmatter/Titlepage}
\include{FrontBackmatter/Contents}
\mainmatter
\part{Research Results}
\include{Chapter/Chapter_05}
\backmatter
\include{FrontBackmatter/Bibliography}
\end{document}
I pacchetti princiali sono quelli nel file .sty che ho postato in precedenza. Nel main c’è qualche pacchetto extra che sto ora testando e quindi ancora non l’ho inseriti nello sty. Quello che segue è il file in cui cè il capitolo 5:
\chapter{Simulations Results}
\label{cap:Simulations Results}\begin{epigraphs}
\qitem{If the facts don’t fit the theory, change the facts.}{\sc Albert Einstein, 1879-1955}
\end{epigraphs}\begin{epigraphs}
\qitem{Prediction is very difficult, especially about the future.}{\sc Niels Bohr, 1885-1962}
\end{epigraphs}\lettrine{I}{n}òjlkjljlkjl
\section{Zefiro 16 Ignition Transient Analysis}
\label{sec:Zefiro 16 Ignition Transient Analysis}lòkjlkjlkjlj
\subsection{Zefiro 16 Features}
\label{subsec:Zefiro 16 Features}The first engine completed was Zefiro 9, the third stage engine. The first firing test was carried out on December $20^{th}$ 2005, at the Salto di Quirra Inter-force Test Range. The test was a success. After a critical design review based on the completed first firings test, on March $28^{th}$ 2007, the second firing test of the Zefiro 9 took place at Salto di Quirra. After 35 seconds, there was a sudden drop in the motor’s internal pressure, leading to an increased combustion time. This firing test was not a success; after this test the Zefiro 9 design has been changed and new DM and QM tests are planned for the end of 2008. Zefiro 9 has the following features:
\begin{description}
\item[\color{SapRed} \small \MBS{Height}] 3.85 m.
\item[\color{SapRed} \small \MBS{Diameter}] 1.9 m.
\item[\color{SapRed} \small \MBS{Propellant mass}] 10.1 tons.
\item[\color{SapRed} \small \MBS{Thrust (max)}] 313 kN.
\item[\color{SapRed} \small \MBS{Nozzle expansion ratio}] 56.
\item[\color{SapRed} \small \MBS{Burn time}] 117 s.
\end{description}\subsection{Zefiro 16 Simulation Setup}
\label{subsec:Zefiro 16 Simulation Setup}\begin{figure}[ht]
\centering
\includegraphics[width=0.95\textwidth]{Z16-Mesh-1}
\caption{Zefiro 16 Mesh}
\label{fig:Z16-Mesh-1}
\end{figure}\begin{figure}[ht]
\centering
\begin{subfigmatrix}{1}
\subfigure[Prospective View]{\includegraphics[width=0.95\textwidth]{Z16-Mesh-2-1}}
\subfigure[Orthogonal View]{\includegraphics[width=0.95\textwidth]{Z16-Mesh-2-2}}
\subfigure[Prospective View]{\includegraphics[width=0.95\textwidth]{Z16-Mesh-4-1}}
\subfigure[Orthogonal View]{\includegraphics[width=0.95\textwidth]{Z16-Mesh-4-2}}
\end{subfigmatrix}
\caption{Zefiro 16 Mesh Details}
\label{fig:Z16-Mesh-2}
\end{figure}
Compilando con questi file ottengo, a parte i box overflow, 5 warning:
`Tesi_Dottorato.tex:1: The anchor of a bookmark and its parent's must not(hyperref) be the same. Added a new anchor on input line 1. The anchor of a bookmark and its parent's must not(hyperref) be the same. Added a new anchor
Tesi_Dottorato.tex:19: The anchor of a bookmark and its parent's must not(hyperref) be the same. Added a new anchor on input line 19. The anchor of a bookmark and its parent's must not(hyperref) be the same. Added a new anchor
Tesi_Dottorato.tex:24: Font shape `T1/cmss/bx/sc' undefined(Font) using `T1/cmss/bx/n' instead on input line 24. Font shape `T1/cmss/bx/sc' undefined(Font) using `T1/cmss/bx/n' instead
Tesi_Dottorato.tex:38: Font shape `T1/cmss/m/sc' in size not available(Font) Font shape `T1/cmr/m/sc' tried instead on input line 38. Font shape `T1/cmss/m/sc' in size not available(Font) Font shape `T1/cmr/m/sc' tried instead
Tesi_Dottorato.tex:0: Some font shapes were not available, defaults substituted.`
A parte quelli sulle font ci sono ancora due warning di hyperref. Il pdf prodotto da pdflatex ha gli iperlink sbagliati: cliccando ad esempio su i link del toc si viene rimandati a pagine sbagliate.
Qualche suggerimento?
Stefano