Aggiungendo i font di amssymb nel preambolo otteng questo risultato
`
! LaTeX Error: Command `\Finv' already defined.
See the LaTeX manual or LaTeX Companion for explanation.
Type H
…
l.231 …ol{\Finv} {\mathord}{AMSb}{“60}
`
Mi dice che il comando \Finv (che per altro non uso) è già stato definito. Il problema riguarda i pacchetti della famiglia AMS perché quando li commento, la compilazione oltrepassa il preambolo e finisce appunto in \shortparallel.
Compilo con LuaLaTex.
Vi posto comunque tutto il preambolo:
`
\usepackage[T1]{fontenc}
\usepackage{fontspec}
\usepackage{xunicode}
\usepackage[a4paper,%
%showframe,%
margin = 2.5cm,
left = 3cm]{geometry}
\usepackage{graphicx}
\usepackage{subfig}
\captionsetup{labelfont = bf,%
labelsep = space,%
format = hang}
\usepackage{wrapfig}
\usepackage{float}
\usepackage{rotating}
\usepackage{booktabs}
\usepackage{widetable}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfkeys{/pgf/number format/1000 sep={\,}}
\usepackage{siunitx}
\usepackage{nth}
\usepackage[defernumbers=true,useprefix,maxnames=1]{biblatex}
\DeclareBibliographyCategory{cited}
\AtEveryCitekey{\addtocategory{cited}{\thefield{entrykey}}}
\bibliography{references}
\renewbibmacro*{journal+issuetitle}{%
\usebibmacro{journal}%
\setunit*{\addcomma\space}%
\iffieldundef{series}
{}
{\newunit
\printfield{series}%
\setunit{\addcomma\space}}%
\printfield{volume}%
\setunit*{\space}% \addcomma qui spazio tra Vol e Num
\printfield{number}%
\setunit{\addcomma\space}%
\printfield{eid}%
\setunit{\addspace}%
\usebibmacro{issue+date}%
\setunit{\addcolon\space}%
\usebibmacro{issue}%
\newunit}
\DeclareFieldFormat[article]{volume}{Vol.#1}%\bibstring{jourvol}#1}
\DeclareFieldFormat[article]{number}{No.#1}%\bibstring{number}#1}
\DefineBibliographyStrings{english}{andothers={\emph{et.~al}}}
\ifprintable
\else
\usepackage[colorlinks=true,linkcolor=blue]{hyperref}
\fi
\graphicspath{%
{pictures/titlepage/}%
{pictures/chapter00/}%
{pictures/chapter01/}%
{pictures/chapter02/}%
{pictures/chapter03/}%
{pictures/chapter04/}%
{pictures/chapter05/}%
{pictures/chapter06/}}
%%%%% PACCHETTI AMS %%%%%%%
\usepackage{amsmath,amsthm,amssymb}%amsfonts,
\theoremstyle{plain}
\newtheorem*{thm}{Theorem}
\usepackage{bigints}
\usepackage{lettrine}
\usepackage[intoc]{nomentbl}
\makenomenclature
\usepackage{textcomp}
\usepackage{wasysym}
`
Ho provato varie combinazioni, ma non sapendo chi definisce cosa, vado alla cieca.
Qualche aiuto?