[Risolto] Bibliografia non compilata

  • Creatore
    Topic
  • #102808
    Up
    0
    Down
    ::


    Buon giorno a tutti!
    Siccome mi sto apprestando a scrivere la tesi di laurea in latex, sto verificando che tutto il sistema LaTex funzioni a dovere (utilizzo TexStudio su OS X).

    E in effetti funziona tutto correttamente ad eccezione della bibliografia.

    Mi spiego. Quando compilo il seguente file tex

    `
    \documentclass[a4paper, 12pt, oneside, openany]{book}

    \usepackage[italian]{babel}
    \usepackage[utf8]{inputenc}
    \usepackage[pdftex]{graphicx}
    \usepackage{amsmath}
    \usepackage{hyperref}
    \linespread{1.5}
    \usepackage{fancyhdr}

    % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
    %———-pacchetti bibliografia—————–
    \usepackage[
    style=numeric,
    backend=biber
    ]{biblatex}
    \addbibresource{bibliografia.bib}

    \begin{document}
    % % % % % % % % % % % % % % % % % % % % % % % % % % %
    \frontmatter

    \tableofcontents

    \mainmatter

    \chapter{capitolo di prova}
    ciao mondo \cite{eco:tesi}

    \backmatter
    % % % % % % % % % % % % % % % % % % % % % % % % %
    % stampiamo la bibliografia
    \addcontentsline{toc}{chapter}{\bibname}
    \printbibliography

    \end{document}
    `

    con questo file che contiene i riferimenti bibliografici (salvato come bibliografia.bib)

    `
    @book{eco:tesi,
    author = {prova},
    title = {io},
    date = {1-1-2015},
    }
    `

    il programma compila correttamente il sorgente, ma non riesco a visualizzare la bibliografia (come se non l’avessi inserita).

    Nella finestra dei messaggi ho i warning: “Empty bibliography” (in riferimento alla riga relativa a \printbibliography nel file sorgente) e “name{cite.0@eco:tesi} has been referenced but does not exist, replaced by a fixed one”.

    Secondo me l’errore dovrebbe essere nelle impostazioni di texStudio, ma ne non sono riuscito a venirne a capo (per la configurazione di texStudio ho seguito alla lettera la guida http://profs.lettere.univr.it/valbusa/files/2013/05/linee-guida-tesi.pdf).

    Qualcuno ha un’idea su come posso risolvere?

    Grazie,

    Daniele

Visualizzazione 11 filoni di risposte
  • Autore
    Risposte
    • #102809
      Up
      0
      Down
      ::


      Hai fatto le 4 compilazioni necessarie?
      pdflatex
      biber
      pdflatex
      pdflatex

      Ho idea che tu ti sia fermato alla prima compilazione…

      PS. se non hai capito nulla di quello che ho detto è sicuramente il caso che ti scarichi l’arte di scrivere con latex, reperibile dalla sezione documentazione di questo stesso sito, e ti leggi almeno almeno i primissimi capitoli e il capitolo 7 che tratta appunto della bibliografia.

    • #102810
      Up
      0
      Down
      ::


      Sì, ho sempre usato questi 4 comandi

      [attachment]C:\fakepath\Schermata.png[/attachment]

    • #102811
      Up
      0
      Down
      ::


      Sì, ho sempre utilizzato questi quattro comandi, nello stesso ordine, per la compilazione.

    • #102812
      Up
      0
      Down
      ::


      Il codice che hai postato è corretto e l’errore che hai ti viene restituito quando non esegui la compilazione con biber.

      Il log di biber che ti dice?

      PS. occhio che il campo date non vuole quella formattazione ma richiede yyyy-mm-dd. In ogni caso questo è completamente scollegato dal tuo problema. Sul tuo log di biber infatti dovresti trovare scritto (tra le altre cose)
      `WARN – Datamodel: Entry 'eco:tesi' (bibliografia.bib): Invalid format '1-1-2015' of date field 'date' – ignoring`

      PPS. la compilazione con biber ha come output un file con estensione .bbl presente nella stessa cartella del tuo main. Se questo file non c’è a maggior ragione devi vedere che dice il log di biber

    • #102813
      OldClaudio
      Partecipante
        Up
        0
        Down
        ::


        Io con l’esempio minimo che hai fornito nel primo messaggio e dopo aver correto il formato della data nel campo date, ottengo tutto come si deve.
        Sono su Mac OS X e uso l’editor predefinito per MacTeX, cioè TeXShop; ho anche messo le righe magiche`% !TEX TS-program = pdflatex
        % !TEX encoding = UTF-8 Unicode
        % !BIB TS-program = biber

        \begin{filecontents*}{bibliografia.bib}
        @book{eco:tesi,
        author = {prova},
        title = {io},
        date = {2015-01-01},
        }
        \end{filecontents*}

        \documentclass[a4paper, 12pt, oneside, openany]{book}

        \end{document}`Non preoccuparti per il primo ambiente specificato prima di \documentclass; è fatto apposta per scrivere nella cartella di lavoro il contenuto dell’ambiente con il nome specificato come argomento nel comando di apertura dell’ambiente. Se vuoi saperne di più, l’ABC di LaTeX è contenuto nella guida tematica Il LaTeX Reference Manual commentato e tradotto in italiano, scaricabile dalla sezione Documentazione di questo forum.

        Ma è solo un dettaglio, che però ti mostra anche il campo date corretto.

        Con TeXShop ho:
        1) cliccato Ty[eset per la prima esecuzione di pdflatex (nonostante nella finestrella accanto a Typeset compaia il nome LaTeX).
        2) nella finestrella accanto a Typeset ho selezionato BiTeX, che grazie alla riga magica vuo dire di usare il programma biber.
        3) ho riselezionato nella finestrella LaTeX, e ho cliccato due volte per eseguire due volte pdflatex.

        I file di uscita è completo di indice e bibliografia.
        Con TeXstudio dovrebbe succedere lo stesso; anche TeXstudio riconosce e interpreta le righe magiche.

        Ma perché usi TeXstudio, quando TeXShop fa le stesse cose e, secondo me, meglio? forse perché TeXstudio in più riesce a contrarre gli ambienti in modo da rendere più pulita la schermata dell’editor quando si è a caccia di errori? Non nego che sia utile, ma non è assolutamente indispensabile. In compenso TeXShop è l’unico editor (che io conosca) che esegue il controllo ortografico capendo da solo quale dizionario ortografico deve usare in base alla lingua a cui appartiene la parola. Per me è essenziale, ma ovviamente dipende dal tipo d documenti che si scrivono.

      • #102814
        Up
        0
        Down
        ::


        Un attimo, il log di biber è lo stesso del file principale?
        Nel dubbio lo posto:
        `
        This is pdfTeX, Version 3.14159265-2.6-1.40.15 (TeX Live 2014) (preloaded format=pdflatex 2014.11.21) 9 AUG 2015 16:29
        entering extended mode
        restricted \write18 enabled.
        %&-line parsing enabled.
        **mainTesi.tex
        (./mainTesi.tex
        LaTeX2e <2014/05/01>
        Babel <3.9k> and hyphenation patterns for 78 languages loaded.
        (/usr/local/texlive/2014/texmf-dist/tex/latex/base/book.cls
        Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
        (/usr/local/texlive/2014/texmf-dist/tex/latex/base/bk12.clo
        File: bk12.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
        )
        \c@part=\count79
        \c@chapter=\count80
        \c@section=\count81
        \c@subsection=\count82
        \c@subsubsection=\count83
        \c@paragraph=\count84
        \c@subparagraph=\count85
        \c@figure=\count86
        \c@table=\count87
        \abovecaptionskip=\skip41
        \belowcaptionskip=\skip42
        \bibindent=\dimen102
        )
        (/usr/local/texlive/2014/texmf-dist/tex/generic/babel/babel.sty
        Package: babel 2014/03/24 3.9k The Babel package

        (/usr/local/texlive/2014/texmf-dist/tex/generic/babel-italian/italian.ldf
        Language: italian 2014/03/29 v1.3k Italian support from the babel system

        (/usr/local/texlive/2014/texmf-dist/tex/generic/babel/babel.def
        File: babel.def 2014/03/24 3.9k Babel common definitions
        \babel@savecnt=\count88
        \U@D=\dimen103
        )
        \it@lettering=\count89
        \it@doublequoteactive=\count90
        \it@ISOcompliance=\count91
        \Virgola=\count92
        ))
        (/usr/local/texlive/2014/texmf-dist/tex/latex/etoolbox/etoolbox.sty
        Package: etoolbox 2011/01/03 v2.1 e-TeX tools for LaTeX

        (/usr/local/texlive/2014/texmf-dist/tex/latex/etex-pkg/etex.sty
        Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
        \et@xins=\count93
        )
        \etb@tempcnta=\count94
        )
        (/usr/local/texlive/2014/texmf-dist/tex/latex/base/inputenc.sty
        Package: inputenc 2014/04/30 v1.2b Input encoding file
        \inpenc@prehook=\toks14
        \inpenc@posthook=\toks15

        (/usr/local/texlive/2014/texmf-dist/tex/latex/base/utf8.def
        File: utf8.def 2008/04/05 v1.1m UTF-8 support for inputenc
        Now handling font encoding OML …
        … no UTF-8 mapping file for font encoding OML
        Now handling font encoding T1 …
        … processing UTF-8 mapping file for font encoding T1

        (/usr/local/texlive/2014/texmf-dist/tex/latex/base/t1enc.dfu
        File: t1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
        defining Unicode char U+00A1 (decimal 161)
        defining Unicode char U+00A3 (decimal 163)
        defining Unicode char U+00AB (decimal 171)
        defining Unicode char U+00BB (decimal 187)
        defining Unicode char U+00BF (decimal 191)
        defining Unicode char U+00C0 (decimal 192)
        defining Unicode char U+00C1 (decimal 193)
        defining Unicode char U+00C2 (decimal 194)
        defining Unicode char U+00C3 (decimal 195)
        defining Unicode char U+00C4 (decimal 196)
        defining Unicode char U+00C5 (decimal 197)
        defining Unicode char U+00C6 (decimal 198)
        defining Unicode char U+00C7 (decimal 199)
        defining Unicode char U+00C8 (decimal 200)
        defining Unicode char U+00C9 (decimal 201)
        defining Unicode char U+00CA (decimal 202)
        defining Unicode char U+00CB (decimal 203)
        defining Unicode char U+00CC (decimal 204)
        defining Unicode char U+00CD (decimal 205)
        defining Unicode char U+00CE (decimal 206)
        defining Unicode char U+00CF (decimal 207)
        defining Unicode char U+00D0 (decimal 208)
        defining Unicode char U+00D1 (decimal 209)
        defining Unicode char U+00D2 (decimal 210)
        defining Unicode char U+00D3 (decimal 211)
        defining Unicode char U+00D4 (decimal 212)
        defining Unicode char U+00D5 (decimal 213)
        defining Unicode char U+00D6 (decimal 214)
        defining Unicode char U+00D8 (decimal 216)
        defining Unicode char U+00D9 (decimal 217)
        defining Unicode char U+00DA (decimal 218)
        defining Unicode char U+00DB (decimal 219)
        defining Unicode char U+00DC (decimal 220)
        defining Unicode char U+00DD (decimal 221)
        defining Unicode char U+00DE (decimal 222)
        defining Unicode char U+00DF (decimal 223)
        defining Unicode char U+00E0 (decimal 224)
        defining Unicode char U+00E1 (decimal 225)
        defining Unicode char U+00E2 (decimal 226)
        defining Unicode char U+00E3 (decimal 227)
        defining Unicode char U+00E4 (decimal 228)
        defining Unicode char U+00E5 (decimal 229)
        defining Unicode char U+00E6 (decimal 230)
        defining Unicode char U+00E7 (decimal 231)
        defining Unicode char U+00E8 (decimal 232)
        defining Unicode char U+00E9 (decimal 233)
        defining Unicode char U+00EA (decimal 234)
        defining Unicode char U+00EB (decimal 235)
        defining Unicode char U+00EC (decimal 236)
        defining Unicode char U+00ED (decimal 237)
        defining Unicode char U+00EE (decimal 238)
        defining Unicode char U+00EF (decimal 239)
        defining Unicode char U+00F0 (decimal 240)
        defining Unicode char U+00F1 (decimal 241)
        defining Unicode char U+00F2 (decimal 242)
        defining Unicode char U+00F3 (decimal 243)
        defining Unicode char U+00F4 (decimal 244)
        defining Unicode char U+00F5 (decimal 245)
        defining Unicode char U+00F6 (decimal 246)
        defining Unicode char U+00F8 (decimal 248)
        defining Unicode char U+00F9 (decimal 249)
        defining Unicode char U+00FA (decimal 250)
        defining Unicode char U+00FB (decimal 251)
        defining Unicode char U+00FC (decimal 252)
        defining Unicode char U+00FD (decimal 253)
        defining Unicode char U+00FE (decimal 254)
        defining Unicode char U+00FF (decimal 255)
        defining Unicode char U+0102 (decimal 258)
        defining Unicode char U+0103 (decimal 259)
        defining Unicode char U+0104 (decimal 260)
        defining Unicode char U+0105 (decimal 261)
        defining Unicode char U+0106 (decimal 262)
        defining Unicode char U+0107 (decimal 263)
        defining Unicode char U+010C (decimal 268)
        defining Unicode char U+010D (decimal 269)
        defining Unicode char U+010E (decimal 270)
        defining Unicode char U+010F (decimal 271)
        defining Unicode char U+0110 (decimal 272)
        defining Unicode char U+0111 (decimal 273)
        defining Unicode char U+0118 (decimal 280)
        defining Unicode char U+0119 (decimal 281)
        defining Unicode char U+011A (decimal 282)
        defining Unicode char U+011B (decimal 283)
        defining Unicode char U+011E (decimal 286)
        defining Unicode char U+011F (decimal 287)
        defining Unicode char U+0130 (decimal 304)
        defining Unicode char U+0131 (decimal 305)
        defining Unicode char U+0132 (decimal 306)
        defining Unicode char U+0133 (decimal 307)
        defining Unicode char U+0139 (decimal 313)
        defining Unicode char U+013A (decimal 314)
        defining Unicode char U+013D (decimal 317)
        defining Unicode char U+013E (decimal 318)
        defining Unicode char U+0141 (decimal 321)
        defining Unicode char U+0142 (decimal 322)
        defining Unicode char U+0143 (decimal 323)
        defining Unicode char U+0144 (decimal 324)
        defining Unicode char U+0147 (decimal 327)
        defining Unicode char U+0148 (decimal 328)
        defining Unicode char U+014A (decimal 330)
        defining Unicode char U+014B (decimal 331)
        defining Unicode char U+0150 (decimal 336)
        defining Unicode char U+0151 (decimal 337)
        defining Unicode char U+0152 (decimal 338)
        defining Unicode char U+0153 (decimal 339)
        defining Unicode char U+0154 (decimal 340)
        defining Unicode char U+0155 (decimal 341)
        defining Unicode char U+0158 (decimal 344)
        defining Unicode char U+0159 (decimal 345)
        defining Unicode char U+015A (decimal 346)
        defining Unicode char U+015B (decimal 347)
        defining Unicode char U+015E (decimal 350)
        defining Unicode char U+015F (decimal 351)
        defining Unicode char U+0160 (decimal 352)
        defining Unicode char U+0161 (decimal 353)
        defining Unicode char U+0162 (decimal 354)
        defining Unicode char U+0163 (decimal 355)
        defining Unicode char U+0164 (decimal 356)
        defining Unicode char U+0165 (decimal 357)
        defining Unicode char U+016E (decimal 366)
        defining Unicode char U+016F (decimal 367)
        defining Unicode char U+0170 (decimal 368)
        defining Unicode char U+0171 (decimal 369)
        defining Unicode char U+0178 (decimal 376)
        defining Unicode char U+0179 (decimal 377)
        defining Unicode char U+017A (decimal 378)
        defining Unicode char U+017B (decimal 379)
        defining Unicode char U+017C (decimal 380)
        defining Unicode char U+017D (decimal 381)
        defining Unicode char U+017E (decimal 382)
        defining Unicode char U+200C (decimal 8204)
        defining Unicode char U+2013 (decimal 8211)
        defining Unicode char U+2014 (decimal 8212)
        defining Unicode char U+2018 (decimal 8216)
        defining Unicode char U+2019 (decimal 8217)
        defining Unicode char U+201A (decimal 8218)
        defining Unicode char U+201C (decimal 8220)
        defining Unicode char U+201D (decimal 8221)
        defining Unicode char U+201E (decimal 8222)
        defining Unicode char U+2030 (decimal 8240)
        defining Unicode char U+2031 (decimal 8241)
        defining Unicode char U+2039 (decimal 8249)
        defining Unicode char U+203A (decimal 8250)
        defining Unicode char U+2423 (decimal 9251)
        )
        Now handling font encoding OT1 …
        … processing UTF-8 mapping file for font encoding OT1

        (/usr/local/texlive/2014/texmf-dist/tex/latex/base/ot1enc.dfu
        File: ot1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
        defining Unicode char U+00A1 (decimal 161)
        defining Unicode char U+00A3 (decimal 163)
        defining Unicode char U+00B8 (decimal 184)
        defining Unicode char U+00BF (decimal 191)
        defining Unicode char U+00C5 (decimal 197)
        defining Unicode char U+00C6 (decimal 198)
        defining Unicode char U+00D8 (decimal 216)
        defining Unicode char U+00DF (decimal 223)
        defining Unicode char U+00E6 (decimal 230)
        defining Unicode char U+00EC (decimal 236)
        defining Unicode char U+00ED (decimal 237)
        defining Unicode char U+00EE (decimal 238)
        defining Unicode char U+00EF (decimal 239)
        defining Unicode char U+00F8 (decimal 248)
        defining Unicode char U+0131 (decimal 305)
        defining Unicode char U+0141 (decimal 321)
        defining Unicode char U+0142 (decimal 322)
        defining Unicode char U+0152 (decimal 338)
        defining Unicode char U+0153 (decimal 339)
        defining Unicode char U+2013 (decimal 8211)
        defining Unicode char U+2014 (decimal 8212)
        defining Unicode char U+2018 (decimal 8216)
        defining Unicode char U+2019 (decimal 8217)
        defining Unicode char U+201C (decimal 8220)
        defining Unicode char U+201D (decimal 8221)
        )
        Now handling font encoding OMS …
        … processing UTF-8 mapping file for font encoding OMS

        (/usr/local/texlive/2014/texmf-dist/tex/latex/base/omsenc.dfu
        File: omsenc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
        defining Unicode char U+00A7 (decimal 167)
        defining Unicode char U+00B6 (decimal 182)
        defining Unicode char U+00B7 (decimal 183)
        defining Unicode char U+2020 (decimal 8224)
        defining Unicode char U+2021 (decimal 8225)
        defining Unicode char U+2022 (decimal 8226)
        )
        Now handling font encoding OMX …
        … no UTF-8 mapping file for font encoding OMX
        Now handling font encoding U …
        … no UTF-8 mapping file for font encoding U
        defining Unicode char U+00A9 (decimal 169)
        defining Unicode char U+00AA (decimal 170)
        defining Unicode char U+00AE (decimal 174)
        defining Unicode char U+00BA (decimal 186)
        defining Unicode char U+02C6 (decimal 710)
        defining Unicode char U+02DC (decimal 732)
        defining Unicode char U+200C (decimal 8204)
        defining Unicode char U+2026 (decimal 8230)
        defining Unicode char U+2122 (decimal 8482)
        defining Unicode char U+2423 (decimal 9251)
        ))
        (/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphicx.sty
        Package: graphicx 2014/04/25 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)

        (/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/keyval.sty
        Package: keyval 2014/05/08 v1.15 key=value parser (DPC)
        \KV@toks@=\toks16
        )
        (/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphics.sty
        Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)

        (/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/trig.sty
        Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
        )
        (/usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/graphics.cfg
        File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
        )
        Package graphics Info: Driver file: pdftex.def on input line 91.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/pdftex-def/pdftex.def
        File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX

        (/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/infwarerr.sty
        Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
        )
        (/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
        Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
        )
        \Gread@gobject=\count95
        ))
        \Gin@req@height=\dimen104
        \Gin@req@width=\dimen105
        )
        (/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsmath.sty
        Package: amsmath 2013/01/14 v2.14 AMS math features
        \@mathmargin=\skip43

        For additional information on amsmath, use the `?' option.
        (/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amstext.sty
        Package: amstext 2000/06/29 v2.01

        (/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsgen.sty
        File: amsgen.sty 1999/11/30 v2.0
        \@emptytoks=\toks17
        \ex@=\dimen106
        ))
        (/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsbsy.sty
        Package: amsbsy 1999/11/29 v1.2d
        \pmbraise@=\dimen107
        )
        (/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsopn.sty
        Package: amsopn 1999/12/14 v2.01 operator names
        )
        \inf@bad=\count96
        LaTeX Info: Redefining \frac on input line 210.
        \uproot@=\count97
        \leftroot@=\count98
        LaTeX Info: Redefining \overline on input line 306.
        \classnum@=\count99
        \DOTSCASE@=\count100
        LaTeX Info: Redefining \ldots on input line 378.
        LaTeX Info: Redefining \dots on input line 381.
        LaTeX Info: Redefining \cdots on input line 466.
        \Mathstrutbox@=\box26
        \strutbox@=\box27
        \big@size=\dimen108
        LaTeX Font Info: Redeclaring font encoding OML on input line 566.
        LaTeX Font Info: Redeclaring font encoding OMS on input line 567.
        \macc@depth=\count101
        \c@MaxMatrixCols=\count102
        \dotsspace@=\muskip10
        \c@parentequation=\count103
        \dspbrk@lvl=\count104
        \tag@help=\toks18
        \row@=\count105
        \column@=\count106
        \maxfields@=\count107
        \andhelp@=\toks19
        \eqnshift@=\dimen109
        \alignsep@=\dimen110
        \tagshift@=\dimen111
        \tagwidth@=\dimen112
        \totwidth@=\dimen113
        \lineht@=\dimen114
        \@envbody=\toks20
        \multlinegap=\skip44
        \multlinetaggap=\skip45
        \mathdisplay@stack=\toks21
        LaTeX Info: Redefining \[ on input line 2665.
        LaTeX Info: Redefining \] on input line 2666.
        )
        (/usr/local/texlive/2014/texmf-dist/tex/latex/hyperref/hyperref.sty
        Package: hyperref 2012/11/06 v6.83m Hypertext links for LaTeX

        (/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
        Package: hobsub-hyperref 2012/05/28 v1.13 Bundle oberdiek, subset hyperref (HO)

        (/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
        Package: hobsub-generic 2012/05/28 v1.13 Bundle oberdiek, subset generic (HO)
        Package: hobsub 2012/05/28 v1.13 Construct package bundles (HO)
        Package hobsub Info: Skipping package `infwarerr' (already loaded).
        Package hobsub Info: Skipping package `ltxcmds' (already loaded).
        Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
        Package ifluatex Info: LuaTeX not detected.
        Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
        Package ifvtex Info: VTeX not detected.
        Package: intcalc 2007/09/27 v1.1 Expandable calculations with integers (HO)
        Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
        Package ifpdf Info: pdfTeX in PDF mode is detected.
        Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
        Package etexcmds Info: Could not find \expanded.
        (etexcmds) That can mean that you are not using pdfTeX 1.50 or
        (etexcmds) that some package has redefined \expanded.
        (etexcmds) In the latter case, load this package earlier.
        Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
        Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
        Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
        )
        Package pdftexcmds Info: LuaTeX not detected.
        Package pdftexcmds Info: \pdf@primitive is available.
        Package pdftexcmds Info: \pdf@ifprimitive is available.
        Package pdftexcmds Info: \pdfdraftmode found.
        Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO)
        Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO
        )
        Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO)
        Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO)
        )
        Package hobsub Info: Skipping package `hobsub' (already loaded).
        Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO)
        Package: hopatch 2012/05/28 v1.2 Wrapper for package hooks (HO)
        Package: xcolor-patch 2011/01/30 xcolor patch
        Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
        Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
        Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO)
        Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO)
        )
        (/usr/local/texlive/2014/texmf-dist/tex/generic/ifxetex/ifxetex.sty
        Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
        )
        (/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/auxhook.sty
        Package: auxhook 2011/03/04 v1.3 Hooks for auxiliary files (HO)
        )
        (/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/kvoptions.sty
        Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
        )
        \@linkdim=\dimen115
        \Hy@linkcounter=\count108
        \Hy@pagecounter=\count109

        (/usr/local/texlive/2014/texmf-dist/tex/latex/hyperref/pd1enc.def
        File: pd1enc.def 2012/11/06 v6.83m Hyperref: PDFDocEncoding definition (HO)
        Now handling font encoding PD1 …
        … no UTF-8 mapping file for font encoding PD1
        )
        \Hy@SavedSpaceFactor=\count110

        (/usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/hyperref.cfg
        File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
        )
        Package hyperref Info: Hyper figures OFF on input line 4443.
        Package hyperref Info: Link nesting OFF on input line 4448.
        Package hyperref Info: Hyper index ON on input line 4451.
        Package hyperref Info: Plain pages OFF on input line 4458.
        Package hyperref Info: Backreferencing OFF on input line 4463.
        Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
        Package hyperref Info: Bookmarks ON on input line 4688.
        \c@Hy@tempcnt=\count111

        (/usr/local/texlive/2014/texmf-dist/tex/latex/url/url.sty
        \Urlmuskip=\muskip11
        Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
        )
        LaTeX Info: Redefining \url on input line 5041.
        \XeTeXLinkMargin=\dimen116
        \Fld@menulength=\count112
        \Field@Width=\dimen117
        \Fld@charsize=\dimen118
        Package hyperref Info: Hyper figures OFF on input line 6295.
        Package hyperref Info: Link nesting OFF on input line 6300.
        Package hyperref Info: Hyper index ON on input line 6303.
        Package hyperref Info: backreferencing OFF on input line 6310.
        Package hyperref Info: Link coloring OFF on input line 6315.
        Package hyperref Info: Link coloring with OCG OFF on input line 6320.
        Package hyperref Info: PDF/A mode OFF on input line 6325.
        LaTeX Info: Redefining \ref on input line 6365.
        LaTeX Info: Redefining \pageref on input line 6369.
        \Hy@abspage=\count113
        \c@Item=\count114
        \c@Hfootnote=\count115
        )

        Package hyperref Message: Driver (autodetected): hpdftex.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/hyperref/hpdftex.def
        File: hpdftex.def 2012/11/06 v6.83m Hyperref driver for pdfTeX
        \Fld@listcount=\count116
        \c@bookmark@seq@number=\count117

        (/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
        Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
        Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
        82.
        )
        \Hy@SectionHShift=\skip46
        )
        (/usr/local/texlive/2014/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
        \fancy@headwidth=\skip47
        \f@ncyO@elh=\skip48
        \f@ncyO@erh=\skip49
        \f@ncyO@olh=\skip50
        \f@ncyO@orh=\skip51
        \f@ncyO@elf=\skip52
        \f@ncyO@erf=\skip53
        \f@ncyO@olf=\skip54
        \f@ncyO@orf=\skip55
        )
        (/usr/local/texlive/2014/texmf-dist/tex/latex/biblatex/biblatex.sty
        Package: biblatex 2013/11/25 v2.8a programmable bibliographies (PK/JW/AB)

        (/usr/local/texlive/2014/texmf-dist/tex/latex/biblatex/biblatex2.sty
        Package: biblatex2 2013/11/25 v2.8a programmable bibliographies (biber) (PK/JW/
        AB)

        (/usr/local/texlive/2014/texmf-dist/tex/latex/logreq/logreq.sty
        Package: logreq 2010/08/04 v1.0 xml request logger
        \lrq@indent=\count118

        (/usr/local/texlive/2014/texmf-dist/tex/latex/logreq/logreq.def
        File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
        ))
        (/usr/local/texlive/2014/texmf-dist/tex/latex/base/ifthen.sty
        Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
        )
        \c@tabx@nest=\count119
        \c@listtotal=\count120
        \c@listcount=\count121
        \c@liststart=\count122
        \c@liststop=\count123
        \c@citecount=\count124
        \c@citetotal=\count125
        \c@multicitecount=\count126
        \c@multicitetotal=\count127
        \c@instcount=\count128
        \c@maxnames=\count129
        \c@minnames=\count130
        \c@maxitems=\count131
        \c@minitems=\count132
        \c@citecounter=\count133
        \c@savedcitecounter=\count134
        \c@uniquelist=\count135
        \c@uniquename=\count136
        \c@refsection=\count137
        \c@refsegment=\count138
        \c@maxextratitle=\count139
        \c@maxextratitleyear=\count140
        \c@maxextrayear=\count141
        \c@maxextraalpha=\count142
        \c@abbrvpenalty=\count143
        \c@highnamepenalty=\count144
        \c@lownamepenalty=\count145
        \c@maxparens=\count146
        \c@parenlevel=\count147
        \blx@tempcnta=\count148
        \blx@tempcntb=\count149
        \blx@tempcntc=\count150
        \blx@maxsection=\count151
        \blx@maxsegment@0=\count152
        \blx@notetype=\count153
        \blx@parenlevel@text=\count154
        \blx@parenlevel@foot=\count155
        \blx@sectionciteorder@0=\count156
        \labelnumberwidth=\skip56
        \labelalphawidth=\skip57
        \shorthandwidth=\skip58
        \biblabelsep=\skip59
        \bibitemsep=\skip60
        \bibnamesep=\skip61
        \bibinitsep=\skip62
        \bibparsep=\skip63
        \bibhang=\skip64
        \blx@bcfin=\read1
        \blx@bcfout=\write3
        \c@mincomprange=\count157
        \c@maxcomprange=\count158
        \c@mincompwidth=\count159
        Package biblatex Info: Trying to load biblatex default data model…
        Package biblatex Info: … file 'blx-dm.def' found.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/biblatex/blx-dm.def)
        Package biblatex Info: Trying to load biblatex style data model…
        Package biblatex Info: … file 'numeric.dbx' not found.
        Package biblatex Info: Trying to load biblatex custom data model…
        Package biblatex Info: … file 'biblatex-dm.cfg' not found.
        \c@afterword=\count160
        \c@savedafterword=\count161
        \c@annotator=\count162
        \c@savedannotator=\count163
        \c@author=\count164
        \c@savedauthor=\count165
        \c@bookauthor=\count166
        \c@savedbookauthor=\count167
        \c@commentator=\count168
        \c@savedcommentator=\count169
        \c@editor=\count170
        \c@savededitor=\count171
        \c@editora=\count172
        \c@savededitora=\count173
        \c@editorb=\count174
        \c@savededitorb=\count175
        \c@editorc=\count176
        \c@savededitorc=\count177
        \c@foreword=\count178
        \c@savedforeword=\count179
        \c@holder=\count180
        \c@savedholder=\count181
        \c@introduction=\count182
        \c@savedintroduction=\count183
        \c@namea=\count184
        \c@savednamea=\count185
        \c@nameb=\count186
        \c@savednameb=\count187
        \c@namec=\count188
        \c@savednamec=\count189
        \c@shortauthor=\count190
        \c@savedshortauthor=\count191
        \c@shorteditor=\count192
        \c@savedshorteditor=\count193
        \c@translator=\count194
        \c@savedtranslator=\count195
        \c@labelname=\count196
        \c@savedlabelname=\count197
        \c@institution=\count198
        \c@savedinstitution=\count199
        \c@lista=\count200
        \c@savedlista=\count201
        \c@listb=\count202
        \c@savedlistb=\count203
        \c@listc=\count204
        \c@savedlistc=\count205
        \c@listd=\count206
        \c@savedlistd=\count207
        \c@liste=\count208
        \c@savedliste=\count209
        \c@listf=\count210
        \c@savedlistf=\count211
        \c@location=\count212
        \c@savedlocation=\count213
        \c@organization=\count214
        \c@savedorganization=\count215
        \c@origlocation=\count216
        \c@savedoriglocation=\count217
        \c@origpublisher=\count218
        \c@savedorigpublisher=\count219
        \c@publisher=\count220
        \c@savedpublisher=\count221
        \c@language=\count222
        \c@savedlanguage=\count223
        \c@pageref=\count224
        \c@savedpageref=\count225
        Package biblatex Info: Trying to load compatibility code…
        Package biblatex Info: … file 'blx-compat.def' found.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/biblatex/blx-compat.def
        File: blx-compat.def 2013/11/25 v2.8a biblatex compatibility (PK/JW/AB)
        )
        Package biblatex Info: Trying to load generic definitions…
        Package biblatex Info: … file 'biblatex.def' found.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/biblatex/biblatex.def
        File: biblatex.def
        \c@textcitecount=\count226
        \c@textcitetotal=\count227
        \c@textcitemaxnames=\count228
        \c@biburlnumpenalty=\count229
        \c@biburlucpenalty=\count230
        \c@biburllcpenalty=\count231
        \c@smartand=\count232
        )
        Package biblatex Info: Trying to load bibliography style 'numeric'…
        Package biblatex Info: … file 'numeric.bbx' found.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
        File: numeric.bbx 2013/11/25 v2.8a biblatex bibliography style (PK/JW/AB)
        Package biblatex Info: Trying to load bibliography style 'standard'…
        Package biblatex Info: … file 'standard.bbx' found.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
        File: standard.bbx 2013/11/25 v2.8a biblatex bibliography style (PK/JW/AB)
        \c@bbx:relatedcount=\count233
        Normal \count register pool exhausted, switching to extended pool.
        \c@bbx:relatedtotal=\count277
        ))
        Package biblatex Info: Trying to load citation style 'numeric'…
        Package biblatex Info: … file 'numeric.cbx' found.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
        File: numeric.cbx 2013/11/25 v2.8a biblatex citation style (PK/JW/AB)
        Package biblatex Info: Redefining '\cite'.
        Package biblatex Info: Redefining '\parencite'.
        Package biblatex Info: Redefining '\footcite'.
        Package biblatex Info: Redefining '\footcitetext'.
        Package biblatex Info: Redefining '\smartcite'.
        Package biblatex Info: Redefining '\supercite'.
        Package biblatex Info: Redefining '\textcite'.
        Package biblatex Info: Redefining '\textcites'.
        Package biblatex Info: Redefining '\cites'.
        Package biblatex Info: Redefining '\parencites'.
        Package biblatex Info: Redefining '\smartcites'.
        )
        Package biblatex Info: Trying to load configuration file…
        Package biblatex Info: … file 'biblatex.cfg' found.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/biblatex/biblatex.cfg
        File: biblatex.cfg
        )))
        Package biblatex Info: Trying to load language 'italian'…
        Package biblatex Info: … file 'italian.lbx' found.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/biblatex/lbx/italian.lbx
        File: italian.lbx 2013/11/25 v2.8a biblatex localization (PK/JW/AB)
        )

        Package biblatex Warning: 'babel/polyglossia' detected but 'csquotes' missing.
        (biblatex) Loading 'csquotes' recommended.

        \@quotelevel=\count278
        \@quotereset=\count279
        (./mainTesi.aux)
        \openout1 = `mainTesi.aux'.

        LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 20.
        LaTeX Font Info: … okay on input line 20.
        LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 20.
        LaTeX Font Info: … okay on input line 20.
        LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 20.
        LaTeX Font Info: … okay on input line 20.
        LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 20.
        LaTeX Font Info: … okay on input line 20.
        LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 20.
        LaTeX Font Info: … okay on input line 20.
        LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 20.
        LaTeX Font Info: … okay on input line 20.
        LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 20.
        LaTeX Font Info: … okay on input line 20.
        LaTeX Info: Redefining \it@ocap on input line 20.
        LaTeX Info: Redefining \it@ccap on input line 20.

        File italian.ldf warning:
        italian.ldf With OT1 encoding guillemets are poorly faked
        italian.ldf Use T1 encoding
        italian.ldf or specify a font with command \CaporaliFrom
        italian.ldf See the documentation concerning the babel-italian typesetting
        italian.ldf on input line 20.

        (/usr/local/texlive/2014/texmf-dist/tex/context/base/supp-pdf.mkii
        [Loading MPS to PDF converter (version 2006.09.02).]
        \scratchcounter=\count280
        \scratchdimen=\dimen119
        \scratchbox=\box28
        \nofMPsegments=\count281
        \nofMParguments=\count282
        \everyMPshowfont=\toks22
        \MPscratchCnt=\count283
        \MPscratchDim=\dimen120
        \MPnumerator=\count284
        \makeMPintoPDFobject=\count285
        \everyMPtoPDFconversion=\toks23
        ) (/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
        Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf

        (/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/grfext.sty
        Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)
        )
        Package grfext Info: Graphics extension search list:
        (grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
        G,.JBIG2,.JB2,.eps]
        (grfext) \AppendGraphicsExtensions on input line 452.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
        File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
        e
        ))
        \AtBeginShipoutBox=\box29
        Package hyperref Info: Link coloring OFF on input line 20.

        (/usr/local/texlive/2014/texmf-dist/tex/latex/hyperref/nameref.sty
        Package: nameref 2012/10/27 v2.43 Cross-referencing by name of section

        (/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
        Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO)
        )
        \c@section@level=\count286
        )
        LaTeX Info: Redefining \ref on input line 20.
        LaTeX Info: Redefining \pageref on input line 20.
        LaTeX Info: Redefining \nameref on input line 20.

        (./mainTesi.out) (./mainTesi.out)
        \@outlinefile=\write4
        \openout4 = `mainTesi.out'.

        Package biblatex Info: Input encoding 'utf8' detected.
        Package biblatex Info: Automatic encoding selection.
        (biblatex) Assuming data encoding 'utf8'.
        \openout3 = `mainTesi.bcf'.

        Package biblatex Info: Trying to load bibliographic data…

        Package biblatex Warning: File 'mainTesi.bbl' is wrong format version – expecte
        d 2.3.

        Package biblatex Info: … file 'mainTesi.bbl' found.
        (./mainTesi.bbl)
        Package biblatex Info: Reference section=0 on input line 20.
        Package biblatex Info: Reference segment=0 on input line 20.
        (./mainTesi.toc)
        \tf@toc=\write5
        \openout5 = `mainTesi.toc'.

        [1

        {/usr/local/texlive/2014/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
        Capitolo 1.
        [1

        ]

        LaTeX Warning: Empty bibliography on input line 38.

        Package atveryend Info: Empty hook `BeforeClearDocument' on input line 41.
        Package atveryend Info: Empty hook `AfterLastShipout' on input line 41.
        (./mainTesi.aux)
        Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 41.
        Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 41.
        Package rerunfilecheck Info: File `mainTesi.out' has not changed.
        (rerunfilecheck) Checksum: C242CF0DA9AB0C4915B29E123E990DDB;52.
        Package logreq Info: Writing requests to 'mainTesi.run.xml'.
        \openout1 = `mainTesi.run.xml'.

        )
        Here is how much of TeX's memory you used:
        11589 strings out of 493117
        182014 string characters out of 6135432
        593101 words of memory out of 5000000
        14930 multiletter control sequences out of 15000+600000
        4851 words of font info for 18 fonts, out of 8000000 for 9000
        1141 hyphenation exceptions out of 8191
        35i,4n,43p,800b,1185s stack positions out of 5000i,500n,10000p,200000b,80000s
        pdfTeX warning (dest): name{cite.0@eco:tesi} has been referenced but does not
        exist, replaced by a fixed one

        < /usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb>
        Output written on mainTesi.pdf (2 pages, 20055 bytes).
        PDF statistics:
        34 PDF objects out of 1000 (max. 8388607)
        27 compressed objects within 1 object stream
        6 named destinations out of 1000 (max. 500000)
        9 words of extra memory for PDF output out of 10000 (max. 10000000)
        `
        In ogni caso il file .bbl è generato

      • #102815
        OldClaudio
        Partecipante
          Up
          0
          Down
          ::


          No il .log di biber ha il nome del file bibliografico la cui estensione è .blg; il file prodotto da biber con estensione .bbl ha lo stesso nome del file .log di biber.
          Il file .log col nome del file principale contiene la registrazione (log) di quello che pdflatex ha fatto durante la compilazione. In effetti il file .log, che hai allegato, nella prima riga dice che sta usando il motore di composizione pdftex con il file di formato pdflatex. Biber non ha nulla a che vedere con quel .log.

          E il tuo file .bbl che cosa contiene? quello che ho ottenuto io contiene`% $ biblatex auxiliary file $
          % $ biblatex bbl format version 2.5 $
          % Do not modify the above lines!
          %
          % This is an auxiliary file used by the 'biblatex' package.
          % This file may safely be deleted. It will be recreated by
          % biber as required.
          %
          \begingroup
          \makeatletter
          \@ifundefined{ver@biblatex.sty}
          {\@latex@error
          {Missing 'biblatex' package}
          {The bibliography requires the 'biblatex' package.}
          \aftergroup\endinput}
          {}
          \endgroup

          \refsection{0}
          \sortlist{nty}{nty}
          \entry{eco:tesi}{book}{}
          \name{author}{1}{}{%
          {{hash=189bbbb00c5f1fb7fba9ad9285f193d1}{prova}{p\bibinitperiod}{}{}{}{}{}{}}%
          }
          \strng{namehash}{189bbbb00c5f1fb7fba9ad9285f193d1}
          \strng{fullhash}{189bbbb00c5f1fb7fba9ad9285f193d1}
          \field{sortinit}{p}
          \field{sortinithash}{c0a4896d0e424f9ca4d7f14f2b3428e7}
          \field{labelnamesource}{author}
          \field{labeltitlesource}{title}
          \field{day}{01}
          \field{month}{01}
          \field{title}{io}
          \field{year}{2015}
          \endentry
          \endsortlist
          \endrefsection
          \endinput
          `

        • #102816
          Up
          0
          Down
          ::


          Ho provato a compilare anche con TexShop ma mi restituisce lo stesso output: il documento compilato correttamente ma senza bibliografia. 😕

          In verità non mi trovo molto a mio agio con TexShop sarà perché TexStudio (come anche TexMaker) lo trovo più intuitivo, con molti comandi che compaiono a schermo (soprattutto quelli per formule matematiche) e con la colonna a sinistra che contiene o la struttura dei file o i label del documento.

          Poi sarà che su Linux Mint ho sempre usato TexStudio 😀

        • #102817
          Up
          0
          Down
          ::


          il file .blg è:
          `
          [0] Config.pm:324> INFO – This is Biber 2.1
          [0] Config.pm:327> INFO – Logfile is 'mainTesi.blg'
          [65] biber-darwin:276> INFO – === Sun Aug 9, 2015, 17:25:47
          [65] Biber.pm:333> INFO – Reading 'mainTesi.bcf'
          [216] Utils.pm:146> WARN – Warning: Found biblatex control file version 2.5, expected version 2.7
          [217] Biber.pm:645> INFO – Found 1 citekeys in bib section 0
          [239] Biber.pm:2977> INFO – Processing section 0
          [259] Biber.pm:3115> INFO – Looking for bibtex format file 'bibliografia.bib' for section 0
          [268] bibtex.pm:1021> INFO – Decoding LaTeX character macros into UTF-8
          [268] bibtex.pm:895> INFO – Found BibTeX data source 'bibliografia.bib'
          [299] UCollate.pm:66> INFO – Overriding locale '' defaults 'variable = shifted' with 'variable = non-ignorable'
          [299] UCollate.pm:66> INFO – Overriding locale '' defaults 'normalization = NFD' with 'normalization = prenormalized'
          [299] Biber.pm:2854> INFO – Sorting list '' of type 'entry' with scheme '' and locale ''
          [299] Biber.pm:2858> INFO – No sort tailoring available for locale ''
          [300] bbl.pm:505> INFO – Writing 'mainTesi.bbl' with encoding 'UTF-8'
          [301] bbl.pm:596> INFO – Output to mainTesi.bbl
          [301] Biber.pm:106> INFO – WARNINGS: 1
          `

          Il file .bbl, invece, è abbastanza diverso dal tuo e contiene
          `
          % $ biblatex auxiliary file $
          % $ biblatex bbl format version 2.5 $
          % Do not modify the above lines!
          %
          % This is an auxiliary file used by the 'biblatex' package.
          % This file may safely be deleted. It will be recreated by
          % biber as required.
          %
          \begingroup
          \makeatletter
          \@ifundefined{ver@biblatex.sty}
          {\@latex@error
          {Missing 'biblatex' package}
          {The bibliography requires the 'biblatex' package.}
          \aftergroup\endinput}
          {}
          \endgroup

          \refsection{0}
          \sortlist{}{}
          \entry{eco:tesi}{book}{}
          \field{sortinit}{s}
          \field{sortinithash}{fd1e7c5ab79596b13dbbb67f8d70fb5a}
          \endentry
          \endsortlist
          \endrefsection
          \endinput
          `

        • #102818
          OldClaudio
          Partecipante
            Up
            0
            Down
            ::


            Vedi il warning nella riga numerata [216]: dice che ha trovato il control file di biblatex in versione 2.5 mentre se lo aspettava in versione 2.7. Sospetto che tu non disponga di una installazione di MacTeX del 2015 o che non sia aggiornata. il mio file .blg contiene le seguenti righe:`[0] Config.pm:324> INFO – This is Biber 2.1
            [0] Config.pm:327> INFO – Logfile is 'NoBibliography.blg'
            [52] biber-darwin:276> INFO – === Sun Aug 9, 2015, 16:35:50
            [52] Biber.pm:333> INFO – Reading 'NoBibliography.bcf'
            [140] Biber.pm:645> INFO – Found 1 citekeys in bib section 0
            [164] Biber.pm:2977> INFO – Processing section 0
            [184] Biber.pm:3115> INFO – Looking for bibtex format file 'bibliografia.bib' for section 0
            [185] bibtex.pm:1021> INFO – Decoding LaTeX character macros into UTF-8
            [185] bibtex.pm:895> INFO – Found BibTeX data source 'bibliografia.bib'
            [208] UCollate.pm:66> INFO – Overriding locale 'it-IT' defaults 'normalization = NFD' with 'normalization = prenormalized'
            [208] UCollate.pm:66> INFO – Overriding locale 'it-IT' defaults 'variable = shifted' with 'variable = non-ignorable'
            [208] Biber.pm:2854> INFO – Sorting list 'nty' of type 'entry' with scheme 'nty' and locale 'it-IT'
            [209] Biber.pm:2858> INFO – No sort tailoring available for locale 'it-IT'
            [210] bbl.pm:505> INFO – Writing 'NoBibliography.bbl' with encoding 'UTF-8'
            [210] bbl.pm:596> INFO – Output to NoBibliography.bbl
            `Ho lavorato con MacTeX 2015 aggiornato a ieri con l’utility TeX Live Utility.app che si trova in Applications/TeX/

          • #102819
            Up
            0
            Down
            ::


            Grandissimo!!! Finalmente ho risolto!
            Per aggiornare MacTex ho dato da terminale il comando
            `
            sudo tlmgr update –all
            `

            Grazie mille!!!!:D

          • #102820
            OldClaudio
            Partecipante
              Up
              0
              Down
              ::


              Padronissimo di farlo così. Funziona anche così e funziona alla perfezione.

              Io preferisco servirmi di TeX Live Utility.app che come ti ho detto si trova in /Applications/TeX/. Se non vedi questa cartella in Finder, usa la voce di menù di Finder Go -> Go to folder, oppure digita la scorciatoia shift+command+G (sul mio Mac, shift è scritto sul tasto per le maiuscole, e command è scritto dove c’è anche il disegno del quadratino con circoletti agli spigoli, tipico delle macchine Mac).

              Perché preferisco usare questa .app? perché oltre a fare le stesse cose di tlmgr, permette anche di leggere la descrizione sommaria dei pacchetti (l’abstract delle documentazione il più dele volte) e di avere una visione precisa di ciò che viene aggiornato e che cosa viene installato ex novo. Si può fare anche con tlmgr, ma è decisamente più comodo con l’interfaccia grafica.

          Visualizzazione 11 filoni di risposte
          • Devi essere connesso per rispondere a questo topic.

          Go to top