Re: problema con hyperref

#84074
OldClaudio
Partecipante
    Up
    0
    Down
    ::


    Per quel che ti posso dire NON devi assolutamente usare i comandi \bf e gli altri vecchi comandi del vecchio LaTeX209, perché fanno cose diverse, ammesso che siano ancora definiti, rispetto alle dichiarazioni e ai comandi di LaTeX2e, che è quello che stai usando Nel file che segue ho lasciato le dichiarazioni, ma in genrale sarebbe meglio usare i comandi, quindi non [tt]{\bfseries testo}[/tt], ma [tt]\textbf{testo}[/tt].
    Il codice seguente non chiama più i pacchetti inutili, sia quello rimosso dalla distribuzione sia quello chiamato dsfont, altro vecchiume, perché i font doublestroke sono già disponibili con i pacchetti amsmath e amssymb.

    Babel con la lingua ingles non ha bisogno di essrre chiamanto, perché la lingua inglese è quella di default. Più importate di tutto, invece, è mettere hyperref per ultimo, sena nessuna opzionel hyperref sa dove trovare da solo il driver di cui ha bisogno a seocnda del motore di composizione che usa.

    Ecco dunque il mio codice che funziona senza errori di nessun genere:`
    \documentclass[11pt]{article}

    \usepackage{amsmath,amssymb,amsthm}
    \usepackage{mathrsfs}
    \usepackage{caption}
    \usepackage{tensor}

    \usepackage[pdftex]{hyperref}

    \begin{document}

    \title{\bfseries
    Abstracr Theorem
    }

    \author
    {\bfseries Authors \\[2mm]
    \small Rimane in vigore fino alla fine del gruppo.
    Affiliation\\
    E-mail: }

    \date{}

    \maketitle

    \begin{abstract}
    ABSTRACT
    \end{abstract}

    \tableofcontents

    \section{Introduction}
    \label{sec.intro}

    blablabla sezione uno tutto occhei

    \section{Analysis on Lie groups}
    \label{sec.liegroups}

    tutto OK fino all'undicesima equazione che non gli piace se la numero (se la metto tra due dollari non dice niente)

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \begin{equation}
    \mathbb{A}= \mathbb{B} \ne \mathbb{N}
    \end{equation}

    \end{document}
    `

    Go to top