lorenzo.pantieri

Risposte nei forum create

Stai visualizzando 15 risposte – dal 2,626 al 2,640 (di 5,985 totali)
  • Autore
    Risposte
  • in risposta a: Mac OS X 10.6.2 sballa i link scritti su due righe! #41005
    lorenzo.pantieri
    Partecipante
      Up
      0
      Down
      ::

      Dunque c’è qualcosa che non va nel tuo sistema.

      Enrico, mi sa che hai ragione.

      Questi due PDF
      http://www.lorenzopantieri.net/LaTeX_files/aiuto.pdf
      http://www.lorenzopantieri.net/LaTeX_files/conhyperref.pdf
      sono stati ottenuti il primo senza caricare esplicitamente hyperref, il secondo caricandolo. Sul mio iMac, il link viene cliccabile (e sbagliato) in entrambi. Gli stessi file, aperti su un PC con Win, vanno invece come dovrebbero: nel primo non c’è alcun link, nel secondo c’è il link, e pure corretto. Boh. 🙁

      Che cosa posso fare (a parte reinstallare tutto da capo)? Tinei presente che tutto il resto (Mac, Internet, altri documenti LaTeX, …) funziona bene.

      Grazie mille,
      L.

      in risposta a: Documento su due colonne doppia lingua #41152
      lorenzo.pantieri
      Partecipante
        in risposta a: Si può migliorare? #41111
        lorenzo.pantieri
        Partecipante
          Up
          0
          Down
          ::


          Se quei sistemi sono così importanti da numerarli (e da richiamarli nel documento), tanto vale metterli ciascuno in una riga a sé, così:
          `\begin{gather}
          \begin{sistema}
          x_1=0 \\
          y_1=0
          \end{sistema}
          \\
          \begin{sistema}
          x_1=0 \\
          y_2=4
          \end{sistema} \\
          \begin{sistema}
          x_2=4 \\
          y_1=0
          \end{sistema} \\
          \begin{sistema}
          x_2=4 \\
          y_2=4
          \end{sistema}
          \end{gather}`
          dove
          `newenvironment{sistema}%
          {\left\lbrace\begin{array}{@{}l@{}}}%
          {\end{array}\right.}
          `

          Altrimenti:
          `\[
          \begin{sistema}
          x_1=0 \\
          y_1=0
          \end{sistema}
          \qquad
          \begin{sistema}
          x_1=0 \\
          y_2=4
          \end{sistema}
          \qquad
          \begin{sistema}
          x_2=4 \\
          y_1=0
          \end{sistema}
          \qquad
          \begin{sistema}
          x_2=4 \\
          y_2=4
          \end{sistema}
          \]
          `
          Ciao,
          L.

          in risposta a: Si può migliorare? #41109
          lorenzo.pantieri
          Partecipante
            Up
            0
            Down
            ::

            Ho il seguente codice è possibile migliorarlo?
            `
            \begin{align*}
            &1)\begin{cases}
            x_1=0\\
            y_1=0
            \end{cases}
            &2)\begin{cases}
            x_1=0\\
            y_2=4
            \end{cases}
            &3)\begin{cases}
            x_2=4\\
            y_1=0
            \end{cases}
            &4)\begin{cases}
            x_2=4\\
            y_2=4
            \end{cases}
            \end{align*}
            `
            non torna la spaziatura fra i sistemi che non è uguale
            grazie
            Claudio

            Usare cases per i sistemi è sbagliato: cases è fatto per le scelte. Cerca “sistema” nell’Arte, quassù.

            Anche l’uso che fai di align è sbagliato: align si usa per incolonnare gruppi di forumule: cerca nell’Arte.

            Non parliamo della numerazione manuale: proprio non si fa! 😉

            Ciao,
            L.

            in risposta a: Problemi sull’utilizzo di classicthesis #41076
            lorenzo.pantieri
            Partecipante
              Up
              0
              Down
              ::

              Prometto che dalla prossima volta posto un esempio compilabile minimo

              La “prossima” volta era questa. 😉 Esempio minimo, per favore!

              Ciao,
              L.

              in risposta a: Problemi sull’utilizzo di classicthesis #41074
              lorenzo.pantieri
              Partecipante
                Up
                0
                Down
                ::

                Ti vedo un po’ come un insegnante disponibile e paziente come forse ce ne sono pochi in giro.

                Grazie! 🙂

                Ma la domanda rimane… Come mai non compila e non stampa. 😥

                L’errore
                `! LaTeX Error: \chaptermark undefined. `
                potrebbe dipendere dal fatto che non carichi ClassicThesis con l’opzione nochapters, che con la classe scrartcl è necessaria.
                `\documentclass{scrartcl}
                \usepackage[nochapters]{classicthesis-ldpkg}
                \usepackage[nochapters]{classicthesis}
                \begin{document}
                Ciao
                \end{document}`
                La prossima volta, comunque, invia un esempio minimo compilabile che riproduca il problema: è (giustamente) uno dei mantra del nostro forum!

                Ciao,
                L.

                P.S. Questo è un esempio (non minimo!) più realistico di articolo con ClassicThesis:
                `\documentclass[10pt,a4paper,twoside,openright,notitlepage,fleqn,
                cleardoubleempty,abstracton,pointlessnumbers,%
                headinclude,footinclude,BCOR5mm,%
                tablecaptionabove]{scrartcl}

                \usepackage[italian]{babel}
                \usepackage[latin1]{inputenc}
                \usepackage[T1]{fontenc}
                \usepackage{indentfirst}
                \usepackage[nochapters]{classicthesis-ldpkg}
                \usepackage[eulerchapternumbers,subfig,beramono,%
                eulermath,pdfspacing,nochapters]{classicthesis}
                \usepackage[italian]{arsclassica}
                \usepackage{lipsum}

                \begin{document}

                \author{\spacedlowsmallcaps{Tyler Durden}}
                \title{\rmfamily\normalfont\spacedallcaps{Il mio articolo}}
                \date{\sffamily\normalsize 14 gennaio 2010}
                \maketitle

                \tableofcontents

                \bigskip

                \lipsum[2]

                \section{Un paragrafo}
                \lipsum

                \section{Un paragrafo}
                \lipsum

                \end{document}
                `
                Alcune impostazioni della classe scrartcl sono necessarie al buon funzionamento dello stile.

                Ciao,
                L.

                in risposta a: Mac OS X 10.6.2 sballa i link scritti su due righe! #41004
                lorenzo.pantieri
                Partecipante
                  Up
                  0
                  Down
                  ::

                  Nel tuo ultimo esempio (pdf) non c’è alcun link, se guardi bene; nel .log c’è infatti scritto “Missing hyperref package. Setting hyperref=false”.

                  Sì, lo so che nel mio esempio non ho chiamato esplicitamente hyperref. Solo che (giuro) a me il link viene lo stesso: nel PDF che ti ho appena segnalato, il link c’è (anche se sbagliato) sia con Anteprima sia con Skim. Che succede al mio sistema?

                  Ad ogni modo, ti mando anche il documento con la chiamata a hyperref.

                  Il codice:
                  `\documentclass[10pt]{scrreprt}
                  \usepackage[style=philosophy-modern,hyperref,backref,square,natbib]{biblatex}
                  \usepackage[babel]{csquotes}
                  \usepackage[italian]{babel}
                  \bibliography{Bibliografia}
                  \usepackage{hyperref}
                  \listfiles
                  \begin{document}
                  \nocite{*}
                  \printbibliography
                  \end{document}
                  `
                  Il PDF:
                  http://www.lorenzopantieri.net/LaTeX_files/conhyperref.pdf

                  Il log:
                  `This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009) (format=pdflatex 2009.12.24) 14 JAN 2010 17:47
                  entering extended mode
                  \write18 enabled.
                  %&-line parsing enabled.
                  **pif.tex
                  (./pif.tex
                  LaTeX2e <2009/09/24>
                  Babel and hyphenation patterns for english, usenglishmax, dumylang, noh
                  yphenation, german-x-2009-06-19, ngerman-x-2009-06-19, ancientgreek, ibycus, ar
                  abic, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danish, dutc
                  h, esperanto, estonian, farsi, finnish, french, galician, german, ngerman, mono
                  greek, greek, hungarian, icelandic, indonesian, interlingua, irish, italian, ku
                  rmanji, latin, latvian, lithuanian, mongolian, mongolian2a, bokmal, nynorsk, po
                  lish, portuguese, romanian, russian, sanskrit, serbian, slovak, slovenian, span
                  ish, swedish, turkish, ukenglish, ukrainian, uppersorbian, welsh, loaded.
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/scrreprt.cls
                  Document Class: scrreprt 2009/07/24 v3.04a KOMA-Script document class (report)
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/scrkbase.sty
                  Package: scrkbase 2009/07/24 v3.04a KOMA-Script package (KOMA-Script-dependent
                  basics and keyval usage)

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/scrbase.sty
                  Package: scrbase 2009/07/24 v3.04a KOMA-Script package (KOMA-Script-independent
                  basics and keyval usage)

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/graphics/keyval.sty
                  Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
                  \KV@toks@=\toks14
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/scrlfile.sty
                  Package: scrlfile 2009/03/25 v3.03 KOMA-Script package (loading files)

                  Package scrlfile, 2009/03/25 v3.03 KOMA-Script package (loading files)
                  Copyright (C) Markus Kohm

                  ))) (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/tocbasic.sty
                  Package: tocbasic 2009/06/08 v3.03b KOMA-Script package (handling toc-files)
                  )
                  Package tocbasic Info: omitting babel extension for `toc'
                  (tocbasic) because of feature `nobabel' available
                  (tocbasic) for `toc' on input line 117.
                  Package tocbasic Info: omitting babel extension for `lof'
                  (tocbasic) because of feature `nobabel' available
                  (tocbasic) for `lof' on input line 118.
                  Package tocbasic Info: omitting babel extension for `lot'
                  (tocbasic) because of feature `nobabel' available
                  (tocbasic) for `lot' on input line 119.
                  Package scrreprt Info: You've used obsolete option `10pt'.
                  (scrreprt) \KOMAExecuteOptions{fontsize=10pt} will be
                  (scrreprt) used instead.
                  (scrreprt) You may simply replace `10pt'
                  (scrreprt) by `fontsize=10pt'.
                  Class scrreprt Info: File `scrsize10pt.clo' used to setup font sizes on input l
                  ine 1271.

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/scrsize10pt.clo
                  File: scrsize10pt.clo 2009/07/24 v3.04a KOMA-Script font size class option (10p
                  t)
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/typearea.sty
                  Package: typearea 2009/07/24 v3.04a KOMA-Script package (type area)

                  Package typearea, 2009/07/24 v3.04a KOMA-Script package (type area)
                  Copyright (C) Frank Neukam, 1992-1994
                  Copyright (C) Markus Kohm, 1994-

                  \ta@bcor=\skip41
                  \ta@div=\count79
                  \ta@hblk=\skip42
                  \ta@vblk=\skip43
                  \ta@temp=\skip44
                  Package typearea Info: These are the values describing the layout:
                  (typearea) DIV = 8
                  (typearea) BCOR = 0.0pt
                  (typearea) \paperwidth = 597.50793pt
                  (typearea) \textwidth = 373.44246pt
                  (typearea) DIV departure = -4%
                  (typearea) \evensidemargin = 39.76274pt
                  (typearea) \oddsidemargin = 39.76274pt
                  (typearea) \paperheight = 845.04694pt
                  (typearea) \textheight = 538.0pt
                  (typearea) \topmargin = 0.36087pt
                  (typearea) \headheight = 15.0pt
                  (typearea) \headsep = 18.0pt
                  (typearea) \topskip = 10.0pt
                  (typearea) \footskip = 42.0pt
                  (typearea) \baselineskip = 12.0pt
                  (typearea) on input line 1115.
                  )
                  \c@part=\count80
                  \c@chapter=\count81
                  \c@section=\count82
                  \c@subsection=\count83
                  \c@subsubsection=\count84
                  \c@paragraph=\count85
                  \c@subparagraph=\count86
                  \abovecaptionskip=\skip45
                  \belowcaptionskip=\skip46
                  \c@pti@nb@sid@b@x=\box26
                  \c@figure=\count87
                  \c@table=\count88
                  \bibindent=\dimen102
                  ) (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/biblatex.sty
                  Package: biblatex 2009/09/20 v0.8i programmable bibliographies

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/etoolbox/etoolbox.sty
                  Package: etoolbox 2009/08/06 v1.8 e-TeX tools for LaTeX

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/etex-pkg/etex.sty
                  Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
                  \et@xins=\count89
                  ))
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/base/ifthen.sty
                  Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/ltxmisc/url.sty
                  \Urlmuskip=\muskip10
                  Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
                  )
                  \c@listtotal=\count90
                  \c@listcount=\count91
                  \c@liststart=\count92
                  \c@liststop=\count93
                  \c@citecount=\count94
                  \c@citetotal=\count95
                  \c@multicitecount=\count96
                  \c@multicitetotal=\count97
                  \c@instcount=\count98
                  \c@maxnames=\count99
                  \c@minnames=\count100
                  \c@maxitems=\count101
                  \c@minitems=\count102
                  \c@uniquename=\count103
                  \c@refsection=\count104
                  \c@refsegment=\count105
                  \c@maxlabelyear=\count106
                  \c@maxextraalpha=\count107
                  \c@abbrvpenalty=\count108
                  \c@highnamepenalty=\count109
                  \c@lownamepenalty=\count110
                  \blx@tempcnta=\count111
                  \blx@tempcntb=\count112
                  \blx@maxsection=\count113
                  \blx@maxsegment=\count114
                  \labelnumberwidth=\skip47
                  \labelalphawidth=\skip48
                  \shorthandwidth=\skip49
                  \biblabelsep=\skip50
                  \bibitemsep=\skip51
                  \bibnamesep=\skip52
                  \bibinitsep=\skip53
                  \bibparsep=\skip54
                  \bibhang=\skip55
                  \blx@auxin=\read1
                  \blx@auxout=\write3
                  \c@labelname=\count115
                  \c@author=\count116
                  \c@shortauthor=\count117
                  \c@editor=\count118
                  \c@shorteditor=\count119
                  \c@bookauthor=\count120
                  \c@translator=\count121
                  \c@redactor=\count122
                  \c@annotator=\count123
                  \c@commentator=\count124
                  \c@introduction=\count125
                  \c@foreword=\count126
                  \c@afterword=\count127
                  \c@holder=\count128
                  \c@namea=\count129
                  \c@nameb=\count130
                  \c@namec=\count131
                  \c@institution=\count132
                  \c@language=\count133
                  \c@location=\count134
                  \c@organization=\count135
                  \c@origlocation=\count136
                  \c@origpublisher=\count137
                  \c@pageref=\count138
                  \c@publisher=\count139
                  \c@lista=\count140
                  \c@listb=\count141
                  \c@listc=\count142
                  \c@listd=\count143
                  \c@liste=\count144
                  \c@listf=\count145

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/biblatex.def
                  File: biblatex.def 2009/09/20 v0.8i biblatex generic definitions
                  \c@smartand=\count146
                  )
                  Package biblatex Info: Trying to load natbib compatibility…
                  Package biblatex Info: … file 'bibnatex.def' found.

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/bibnatex.def
                  File: bibnatex.def 2009/07/04 v0.8e biblatex natbib compatibility
                  )
                  Package biblatex Info: Trying to load bibliography style 'philosophy-modern'…

                  Package biblatex Info: … file 'philosophy-modern.bbx' found.

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/bbx/philosophy-modern.bbx
                  File: philosophy-modern.bbx 2009/11/20 v0.2b biblatex bibliography style
                  Package biblatex Info: Trying to load bibliography style 'philosophy-classic'..
                  .
                  Package biblatex Info: … file 'philosophy-classic.bbx' found.

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/bbx/philosophy-classic.bbx
                  File: philosophy-classic.bbx 2009/11/20 v0.2b biblatex bibliography style
                  Package biblatex Info: Trying to load bibliography style 'authoryear'…
                  Package biblatex Info: … file 'authoryear.bbx' found.

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/bbx/authoryear.bbx
                  File: authoryear.bbx 2009/07/04 v0.8e biblatex bibliography style
                  Package biblatex Info: Trying to load bibliography style 'standard'…
                  Package biblatex Info: … file 'standard.bbx' found.

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/bbx/standard.bbx
                  File: standard.bbx 2009/07/04 v0.8e biblatex bibliography style
                  ))
                  \c@maxnamesincross=\count147
                  \c@minnamesincross=\count148
                  )
                  \yeartitle=\skip56
                  \postnamesep=\skip57
                  Package biblatex Info: Redefining '\bbx@inbookcrossref'.
                  Package biblatex Info: Redefining '\bbx@crossref'.
                  )
                  Package biblatex Info: Trying to load citation style 'philosophy-modern'…
                  Package biblatex Info: … file 'philosophy-modern.cbx' found.

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/cbx/philosophy-modern.cbx
                  File: philosophy-modern.cbx philosophy-modern.cbx, Valbusa beta $
                  Package biblatex Info: Trying to load citation style 'philosophy-classic'…
                  Package biblatex Info: … file 'philosophy-classic.cbx' found.

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/cbx/philosophy-classic.cbx
                  File: philosophy-classic.cbx philosophy-classic.cbx, Valbusa beta $
                  Package biblatex Info: Trying to load citation style 'authoryear-comp'…
                  Package biblatex Info: … file 'authoryear-comp.cbx' found.

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/cbx/authoryear-comp.cbx
                  File: authoryear-comp.cbx 2009/07/04 v0.8e biblatex citation style
                  Package biblatex Info: Redefining '\cite'.
                  Package biblatex Info: Redefining '\parencite'.
                  Package biblatex Info: Redefining '\footcite'.
                  Package biblatex Info: Redefining '\textcite'.
                  )
                  Package biblatex Info: Redefining '\cite'.
                  Package biblatex Info: Redefining '\parencite'.
                  Package biblatex Info: Redefining '\footcite'.
                  Package biblatex Info: Redefining '\textcite'.
                  Package biblatex Info: Redefining '\citeauthor'.
                  Package biblatex Info: Redefining '\citetitle'.
                  Package biblatex Info: Redefining '\citeyear'.
                  ))
                  Package biblatex Info: Trying to load configuration file…
                  Package biblatex Info: … file 'biblatex.cfg' found.

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/biblatex.cfg
                  File: biblatex.cfg
                  ))
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/csquotes/csquotes.sty
                  Package: csquotes 2009/09/23 v4.4c context-sensitive quotations
                  \csq@reset=\count149
                  \csq@gtype=\count150
                  \csq@glevel=\count151
                  \csq@qlevel=\count152
                  \csq@maxlvl=\count153
                  \csq@tshold=\count154
                  \csq@ltx@everypar=\toks15

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/csquotes/csquotes.def
                  File: csquotes.def 2009/09/23 v4.4c csquotes generic definitions
                  )
                  Package csquotes Info: Trying to load configuration file 'csquotes.cfg'…
                  Package csquotes Info: … configuration file loaded successfully.

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/csquotes/csquotes.cfg
                  File: csquotes.cfg 2009/05/30 v4.4 csquotes configuration
                  )
                  Package csquotes Info: Enabling multilingual support.
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/generic/babel/babel.sty
                  Package: babel 2008/07/06 v3.8l The Babel package

                  (/usr/local/texlive/2009/texmf-dist/tex/generic/babel/italian.ldf
                  Language: italian 2008/03/14 v1.2t Italian support from the babel system

                  (/usr/local/texlive/2009/texmf-dist/tex/generic/babel/babel.def
                  File: babel.def 2008/07/06 v3.8l Babel common definitions
                  \babel@savecnt=\count155
                  \U@D=\dimen103
                  )
                  Package babel Info: Making ” an active character on input line 94.
                  ))
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/hyperref/hyperref.sty
                  Package: hyperref 2010/01/08 v6.80a Hypertext links for LaTeX

                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/ifpdf.sty
                  Package: ifpdf 2009/04/10 v2.0 Provides the ifpdf switch (HO)
                  Package ifpdf Info: pdfTeX in pdf mode detected.
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/ifvtex.sty
                  Package: ifvtex 2008/11/04 v1.4 Switches for detecting VTeX and its modes (HO)
                  Package ifvtex Info: VTeX not detected.
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/generic/ifxetex/ifxetex.sty
                  Package: ifxetex 2009/01/23 v0.5 Provides ifxetex conditional
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/oberdiek/hycolor.sty
                  Package: hycolor 2009/12/12 v1.6 Color options of hyperref/bookmark (HO)

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/oberdiek/xcolor-patch.sty
                  Package: xcolor-patch 2009/12/12 xcolor patch
                  ))
                  \@linkdim=\dimen104
                  \Hy@linkcounter=\count156
                  \Hy@pagecounter=\count157

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/hyperref/pd1enc.def
                  File: pd1enc.def 2010/01/08 v6.80a Hyperref: PDFDocEncoding definition (HO)
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
                  Package: pdftexcmds 2009/12/12 v0.7 Utility functions of pdfTeX for LuaTeX (HO)

                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/infwarerr.sty
                  Package: infwarerr 2007/09/09 v1.2 Providing info/warning/message (HO)
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/ifluatex.sty
                  Package: ifluatex 2009/04/17 v1.2 Provides the ifluatex switch (HO)
                  Package ifluatex Info: LuaTeX not detected.
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
                  Package: ltxcmds 2009/12/12 v1.1 LaTeX kernel commands for general use (HO)
                  )
                  Package pdftexcmds Info: LuaTeX not detected.
                  Package pdftexcmds Info: \pdf@primitive is available.
                  Package pdftexcmds Info: \pdf@ifprimitive is available.
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/etexcmds.sty
                  Package: etexcmds 2007/12/12 v1.2 Prefix for e-TeX command names (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.
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/intcalc.sty
                  Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO)
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/latexconfig/hyperref.cfg
                  File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/oberdiek/kvoptions.sty
                  Package: kvoptions 2009/12/08 v3.6 Keyval support for LaTeX options (HO)

                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
                  Package: kvsetkeys 2009/12/22 v1.7 Key value parser (HO)
                  ))
                  Package hyperref Info: Hyper figures OFF on input line 3157.
                  Package hyperref Info: Link nesting OFF on input line 3162.
                  Package hyperref Info: Hyper index ON on input line 3165.
                  Package hyperref Info: Plain pages OFF on input line 3172.
                  Package hyperref Info: Backreferencing OFF on input line 3177.

                  Implicit mode ON; LaTeX internals redefined
                  Package hyperref Info: Bookmarks ON on input line 3373.
                  LaTeX Info: Redefining \url on input line 3610.
                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/bitset.sty
                  Package: bitset 2007/09/28 v1.0 Data type bit set (HO)

                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/bigintcalc.sty
                  Package: bigintcalc 2007/11/11 v1.1 Expandable big integer calculations (HO)
                  ))
                  \Fld@menulength=\count158
                  \Field@Width=\dimen105
                  \Fld@charsize=\dimen106
                  \Field@toks=\toks16
                  Package hyperref Info: Hyper figures OFF on input line 4570.
                  Package hyperref Info: Link nesting OFF on input line 4575.
                  Package hyperref Info: Hyper index ON on input line 4578.
                  Package hyperref Info: backreferencing OFF on input line 4585.
                  Package hyperref Info: Link coloring OFF on input line 4590.
                  Package hyperref Info: Link coloring with OCG OFF on input line 4595.
                  Package hyperref Info: PDF/A mode OFF on input line 4600.

                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/atbegshi.sty
                  Package: atbegshi 2009/12/02 v1.10 At begin shipout hook (HO)
                  )
                  \Hy@abspage=\count159
                  \c@Item=\count160
                  \c@Hfootnote=\count161
                  )
                  *hyperref using default driver hpdftex*
                  (/usr/local/texlive/2009/texmf-dist/tex/latex/hyperref/hpdftex.def
                  File: hpdftex.def 2010/01/08 v6.80a Hyperref driver for pdfTeX

                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/atveryend.sty
                  Package: atveryend 2009/12/11 v1.3 Hooks at very end of document (HO)
                  )
                  \Fld@listcount=\count162
                  \c@bookmark@seq@number=\count163

                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/rerunfilecheck.sty
                  Package: rerunfilecheck 2009/12/18 v1.2 Rerun checks for auxiliary files (HO)

                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/uniquecounter.sty
                  Package: uniquecounter 2009/12/18 v1.1 Provides unlimited unique counter (HO)
                  )
                  Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 3
                  26.
                  )
                  \Hy@SectionHShift=\skip58
                  )
                  Package biblatex Info: Trying to load language 'italian'…
                  Package biblatex Info: … file 'italian.lbx' found.

                  (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/lbx/italian.lbx
                  File: italian.lbx 2009/07/04 v0.8e biblatex localization
                  ) (./pif.aux)
                  \openout1 = `pif.aux'.

                  LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 8.
                  LaTeX Font Info: … okay on input line 8.
                  LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 8.
                  LaTeX Font Info: … okay on input line 8.
                  LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 8.
                  LaTeX Font Info: … okay on input line 8.
                  LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 8.
                  LaTeX Font Info: … okay on input line 8.
                  LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 8.
                  LaTeX Font Info: … okay on input line 8.
                  LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 8.
                  LaTeX Font Info: … okay on input line 8.
                  LaTeX Font Info: Checking defaults for LGR/cmr/m/n on input line 8.
                  LaTeX Font Info: Try loading font information for LGR+cmr on input line 8.

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/cbfonts/lgrcmr.fd
                  File: lgrcmr.fd 2008/01/04 v1.0 Greek Computer Modern
                  )
                  LaTeX Font Info: … okay on input line 8.
                  LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 8.
                  LaTeX Font Info: … okay on input line 8.
                  \openout3 = `pif-blx.bib'.

                  Package biblatex Info: Trying to load bibliographic data…
                  Package biblatex Info: … file 'pif.bbl' found.
                  (./pif.bbl)
                  Package biblatex Info: Reference section=0 on input line 8.
                  Package biblatex Info: Reference segment=0 on input line 8.
                  Package hyperref Info: Link coloring OFF on input line 8.

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/hyperref/nameref.sty
                  Package: nameref 2009/12/18 v2.35 Cross-referencing by name of section

                  (/usr/local/texlive/2009/texmf-dist/tex/latex/oberdiek/refcount.sty
                  Package: refcount 2008/08/11 v3.1 Data extraction from references (HO)
                  )
                  (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
                  Package: gettitlestring 2009/12/18 v1.3 Cleanup title references (HO)
                  )
                  \c@section@level=\count164
                  )
                  LaTeX Info: Redefining \ref on input line 8.
                  LaTeX Info: Redefining \pageref on input line 8.

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

                  \AtBeginShipoutBox=\box27
                  LaTeX Font Info: External font `cmex10' loaded for size
                  (Font) <7> on input line 10.
                  LaTeX Font Info: External font `cmex10' loaded for size
                  (Font) <5> on input line 10.
                  Package atveryend Info: Empty hook `BeforeClearDocument' on input line 11.
                  [1

                  {/usr/local/texlive/2009/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
                  Package atveryend Info: Empty hook `AfterLastShipout' on input line 11.
                  (./pif.aux)
                  Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 11.
                  Package rerunfilecheck Info: File `pif.out' has not changed.
                  (rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0.

                  *File List*
                  scrreprt.cls 2009/07/24 v3.04a KOMA-Script document class (report)
                  scrkbase.sty 2009/07/24 v3.04a KOMA-Script package (KOMA-Script-dependent ba
                  sics and keyval usage)
                  scrbase.sty 2009/07/24 v3.04a KOMA-Script package (KOMA-Script-independent
                  basics and keyval usage)
                  keyval.sty 1999/03/16 v1.13 key=value parser (DPC)
                  scrlfile.sty 2009/03/25 v3.03 KOMA-Script package (loading files)
                  tocbasic.sty 2009/06/08 v3.03b KOMA-Script package (handling toc-files)
                  scrsize10pt.clo 2009/07/24 v3.04a KOMA-Script font size class option (10pt)
                  typearea.sty 2009/07/24 v3.04a KOMA-Script package (type area)
                  biblatex.sty 2009/09/20 v0.8i programmable bibliographies
                  etoolbox.sty 2009/08/06 v1.8 e-TeX tools for LaTeX
                  etex.sty 1998/03/26 v2.0 eTeX basic definition package (PEB)
                  ifthen.sty 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
                  url.sty 2006/04/12 ver 3.3 Verb mode for urls, etc.
                  biblatex.def 2009/09/20 v0.8i biblatex generic definitions
                  bibnatex.def 2009/07/04 v0.8e biblatex natbib compatibility
                  standard.bbx 2009/07/04 v0.8e biblatex bibliography style
                  authoryear.bbx 2009/07/04 v0.8e biblatex bibliography style
                  philosophy-classic.bbx 2009/11/20 v0.2b biblatex bibliography style
                  philosophy-modern.bbx 2009/11/20 v0.2b biblatex bibliography style
                  authoryear-comp.cbx 2009/07/04 v0.8e biblatex citation style
                  philosophy-classic.cbx philosophy-classic.cbx, Valbusa beta $
                  philosophy-modern.cbx philosophy-modern.cbx, Valbusa beta $
                  biblatex.cfg
                  csquotes.sty 2009/09/23 v4.4c context-sensitive quotations
                  csquotes.def 2009/09/23 v4.4c csquotes generic definitions
                  csquotes.cfg 2009/05/30 v4.4 csquotes configuration
                  babel.sty 2008/07/06 v3.8l The Babel package
                  italian.ldf 2008/03/14 v1.2t Italian support from the babel system
                  hyperref.sty 2010/01/08 v6.80a Hypertext links for LaTeX
                  ifpdf.sty 2009/04/10 v2.0 Provides the ifpdf switch (HO)
                  ifvtex.sty 2008/11/04 v1.4 Switches for detecting VTeX and its modes (HO)
                  ifxetex.sty 2009/01/23 v0.5 Provides ifxetex conditional
                  hycolor.sty 2009/12/12 v1.6 Color options of hyperref/bookmark (HO)
                  xcolor-patch.sty 2009/12/12 xcolor patch
                  pd1enc.def 2010/01/08 v6.80a Hyperref: PDFDocEncoding definition (HO)
                  pdftexcmds.sty 2009/12/12 v0.7 Utility functions of pdfTeX for LuaTeX (HO)
                  infwarerr.sty 2007/09/09 v1.2 Providing info/warning/message (HO)
                  ifluatex.sty 2009/04/17 v1.2 Provides the ifluatex switch (HO)
                  ltxcmds.sty 2009/12/12 v1.1 LaTeX kernel commands for general use (HO)
                  etexcmds.sty 2007/12/12 v1.2 Prefix for e-TeX command names (HO)
                  intcalc.sty 2007/09/27 v1.1 Expandable integer calculations (HO)
                  hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
                  kvoptions.sty 2009/12/08 v3.6 Keyval support for LaTeX options (HO)
                  kvsetkeys.sty 2009/12/22 v1.7 Key value parser (HO)
                  bitset.sty 2007/09/28 v1.0 Data type bit set (HO)
                  bigintcalc.sty 2007/11/11 v1.1 Expandable big integer calculations (HO)
                  atbegshi.sty 2009/12/02 v1.10 At begin shipout hook (HO)
                  hpdftex.def 2010/01/08 v6.80a Hyperref driver for pdfTeX
                  atveryend.sty 2009/12/11 v1.3 Hooks at very end of document (HO)
                  rerunfilecheck.sty 2009/12/18 v1.2 Rerun checks for auxiliary files (HO)
                  uniquecounter.sty 2009/12/18 v1.1 Provides unlimited unique counter (HO)
                  italian.lbx 2009/07/04 v0.8e biblatex localization
                  lgrcmr.fd 2008/01/04 v1.0 Greek Computer Modern
                  pif.bbl
                  nameref.sty 2009/12/18 v2.35 Cross-referencing by name of section
                  refcount.sty 2008/08/11 v3.1 Data extraction from references (HO)
                  gettitlestring.sty 2009/12/18 v1.3 Cleanup title references (HO)
                  pif.out
                  pif.out
                  ***********

                  )
                  Here is how much of TeX's memory you used:
                  8783 strings out of 493848
                  141555 string characters out of 3149206
                  300006 words of memory out of 3000000
                  11950 multiletter control sequences out of 15000+200000
                  5396 words of font info for 20 fonts, out of 3000000 for 9000
                  714 hyphenation exceptions out of 8191
                  39i,6n,35p,816b,795s stack positions out of 5000i,500n,10000p,200000b,50000s


                  usr/local/texlive/2009/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb>
                  Output written on pif.pdf (1 page, 58186 bytes).
                  PDF statistics:
                  35 PDF objects out of 1000 (max. 8388607)
                  4 named destinations out of 1000 (max. 500000)
                  1 words of extra memory for PDF output out of 10000 (max. 10000000)

                  `
                  Anche così (con hyperref, intendo), il problema del link spezzato mi si presenta…

                  Sono molto perplesso, soprattutto perché voi avete un comportamento diverso dal mio.
                  L.

                  in risposta a: Generazione lista pubblicazioni da *.bib #41081
                  lorenzo.pantieri
                  Partecipante
                    Up
                    0
                    Down
                    ::

                    Hai ragione con \nocite{} si risolve: ma solo con \bibliographystyle{plainnat}. Invece mi piacerebbe avere un sistema più flessibile…

                    Non mi risulta. Se scrivo \nocite{*} tutte le opere contenute nei .bib richiamati con \bibliography vengono incluse nella bibliografia, e questo indipendentemente dallo stile bibliografico impostato.

                    Ciao,
                    L.

                    in risposta a: Generazione lista pubblicazioni da *.bib #41079
                    lorenzo.pantieri
                    Partecipante
                      Up
                      0
                      Down
                      ::

                      Salve di nuovo, mi permetto di postare un topic da “RTFM” :wink:. Lo faccio perché sono sicuro che il problema è stato già risolto, e velocemente.
                      Ho un *.bib e vorrei scrivere un *.tex evitando di elencare pedissequamente una serie (hmmm…sono più di 60, scusate è un pò di tempo che vago per l’università, taluni dicono senza molta utilità) di \citet{} o \citep{}: suggerimenti?

                      No è che ho capito molto. Hai provato a cercare
                      `\nocite{*}`
                      su una guida di base?

                      Ciao,
                      L.

                      in risposta a: Mac OS X 10.6.2 sballa i link scritti su due righe! #41002
                      lorenzo.pantieri
                      Partecipante
                        Up
                        0
                        Down
                        ::

                        Allora, vediamo: il tuo esempio ti produce dei link; se lo faccio andare io no. Occorre aggiungere la chiamata di hyperref, come ha fatto notare Ivan. Se apro il tuo pdf con Safari e faccio clic vado alla galleria degli orrori.

                        Dunque c’è qualcosa che non va nel tuo sistema: che dice \listfiles? Che dice il .log?

                        Sì, il mio esempio produce dei link anche senza caricare esplicitamente hyperref. 🙁

                        Uso una MacTeX 2009 aggiornata questa mattina (la TeX Live Utility ora mi dà No Update Available), su un Mac Snow Leopard anch’esso appena aggiornato.

                        Il codice con \lisfiles:
                        `\documentclass[10pt]{scrreprt}
                        \usepackage[style=philosophy-modern,hyperref,backref,square,natbib]{biblatex}
                        \usepackage[babel]{csquotes}
                        \usepackage[italian]{babel}
                        \bibliography{Bibliografia}
                        %\usepackage{hyperref}
                        \listfiles
                        \begin{document}
                        \nocite{*}
                        \printbibliography
                        \end{document}`

                        Il file Bibliografia.bib:
                        `@MANUAL{gregorio:orrori,
                        AUTHOR = {Gregorio, Enrico},
                        TITLE = {Galleria degli orrori: Come maltrattare \LaTeX{} e rendere infelice un \emph{copy editor}},
                        YEAR = {2003},
                        url = {http://profs.sci.univr.it/~gregorio/orrori.pdf}
                        }

                        `
                        Il PDF che ne risulta:
                        http://www.lorenzopantieri.net/LaTeX_files/aiuto.pdf

                        Il log:
                        `This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009) (format=pdflatex 2009.12.24) 14 JAN 2010 17:21
                        entering extended mode
                        \write18 enabled.
                        %&-line parsing enabled.
                        **pif.tex
                        (./pif.tex
                        LaTeX2e <2009/09/24>
                        Babel and hyphenation patterns for english, usenglishmax, dumylang, noh
                        yphenation, german-x-2009-06-19, ngerman-x-2009-06-19, ancientgreek, ibycus, ar
                        abic, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danish, dutc
                        h, esperanto, estonian, farsi, finnish, french, galician, german, ngerman, mono
                        greek, greek, hungarian, icelandic, indonesian, interlingua, irish, italian, ku
                        rmanji, latin, latvian, lithuanian, mongolian, mongolian2a, bokmal, nynorsk, po
                        lish, portuguese, romanian, russian, sanskrit, serbian, slovak, slovenian, span
                        ish, swedish, turkish, ukenglish, ukrainian, uppersorbian, welsh, loaded.
                        (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/scrreprt.cls
                        Document Class: scrreprt 2009/07/24 v3.04a KOMA-Script document class (report)
                        (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/scrkbase.sty
                        Package: scrkbase 2009/07/24 v3.04a KOMA-Script package (KOMA-Script-dependent
                        basics and keyval usage)

                        (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/scrbase.sty
                        Package: scrbase 2009/07/24 v3.04a KOMA-Script package (KOMA-Script-independent
                        basics and keyval usage)

                        (/usr/local/texlive/2009/texmf-dist/tex/latex/graphics/keyval.sty
                        Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
                        \KV@toks@=\toks14
                        )
                        (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/scrlfile.sty
                        Package: scrlfile 2009/03/25 v3.03 KOMA-Script package (loading files)

                        Package scrlfile, 2009/03/25 v3.03 KOMA-Script package (loading files)
                        Copyright (C) Markus Kohm

                        ))) (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/tocbasic.sty
                        Package: tocbasic 2009/06/08 v3.03b KOMA-Script package (handling toc-files)
                        )
                        Package tocbasic Info: omitting babel extension for `toc'
                        (tocbasic) because of feature `nobabel' available
                        (tocbasic) for `toc' on input line 117.
                        Package tocbasic Info: omitting babel extension for `lof'
                        (tocbasic) because of feature `nobabel' available
                        (tocbasic) for `lof' on input line 118.
                        Package tocbasic Info: omitting babel extension for `lot'
                        (tocbasic) because of feature `nobabel' available
                        (tocbasic) for `lot' on input line 119.
                        Package scrreprt Info: You've used obsolete option `10pt'.
                        (scrreprt) \KOMAExecuteOptions{fontsize=10pt} will be
                        (scrreprt) used instead.
                        (scrreprt) You may simply replace `10pt'
                        (scrreprt) by `fontsize=10pt'.
                        Class scrreprt Info: File `scrsize10pt.clo' used to setup font sizes on input l
                        ine 1271.

                        (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/scrsize10pt.clo
                        File: scrsize10pt.clo 2009/07/24 v3.04a KOMA-Script font size class option (10p
                        t)
                        )
                        (/usr/local/texlive/2009/texmf-dist/tex/latex/koma-script/typearea.sty
                        Package: typearea 2009/07/24 v3.04a KOMA-Script package (type area)

                        Package typearea, 2009/07/24 v3.04a KOMA-Script package (type area)
                        Copyright (C) Frank Neukam, 1992-1994
                        Copyright (C) Markus Kohm, 1994-

                        \ta@bcor=\skip41
                        \ta@div=\count79
                        \ta@hblk=\skip42
                        \ta@vblk=\skip43
                        \ta@temp=\skip44
                        Package typearea Info: These are the values describing the layout:
                        (typearea) DIV = 8
                        (typearea) BCOR = 0.0pt
                        (typearea) \paperwidth = 597.50793pt
                        (typearea) \textwidth = 373.44246pt
                        (typearea) DIV departure = -4%
                        (typearea) \evensidemargin = 39.76274pt
                        (typearea) \oddsidemargin = 39.76274pt
                        (typearea) \paperheight = 845.04694pt
                        (typearea) \textheight = 538.0pt
                        (typearea) \topmargin = 0.36087pt
                        (typearea) \headheight = 15.0pt
                        (typearea) \headsep = 18.0pt
                        (typearea) \topskip = 10.0pt
                        (typearea) \footskip = 42.0pt
                        (typearea) \baselineskip = 12.0pt
                        (typearea) on input line 1115.
                        )
                        \c@part=\count80
                        \c@chapter=\count81
                        \c@section=\count82
                        \c@subsection=\count83
                        \c@subsubsection=\count84
                        \c@paragraph=\count85
                        \c@subparagraph=\count86
                        \abovecaptionskip=\skip45
                        \belowcaptionskip=\skip46
                        \c@pti@nb@sid@b@x=\box26
                        \c@figure=\count87
                        \c@table=\count88
                        \bibindent=\dimen102
                        ) (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/biblatex.sty
                        Package: biblatex 2009/09/20 v0.8i programmable bibliographies

                        (/usr/local/texlive/2009/texmf-dist/tex/latex/etoolbox/etoolbox.sty
                        Package: etoolbox 2009/08/06 v1.8 e-TeX tools for LaTeX

                        (/usr/local/texlive/2009/texmf-dist/tex/latex/etex-pkg/etex.sty
                        Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
                        \et@xins=\count89
                        ))
                        (/usr/local/texlive/2009/texmf-dist/tex/latex/base/ifthen.sty
                        Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
                        )
                        (/usr/local/texlive/2009/texmf-dist/tex/latex/ltxmisc/url.sty
                        \Urlmuskip=\muskip10
                        Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
                        )
                        \c@listtotal=\count90
                        \c@listcount=\count91
                        \c@liststart=\count92
                        \c@liststop=\count93
                        \c@citecount=\count94
                        \c@citetotal=\count95
                        \c@multicitecount=\count96
                        \c@multicitetotal=\count97
                        \c@instcount=\count98
                        \c@maxnames=\count99
                        \c@minnames=\count100
                        \c@maxitems=\count101
                        \c@minitems=\count102
                        \c@uniquename=\count103
                        \c@refsection=\count104
                        \c@refsegment=\count105
                        \c@maxlabelyear=\count106
                        \c@maxextraalpha=\count107
                        \c@abbrvpenalty=\count108
                        \c@highnamepenalty=\count109
                        \c@lownamepenalty=\count110
                        \blx@tempcnta=\count111
                        \blx@tempcntb=\count112
                        \blx@maxsection=\count113
                        \blx@maxsegment=\count114
                        \labelnumberwidth=\skip47
                        \labelalphawidth=\skip48
                        \shorthandwidth=\skip49
                        \biblabelsep=\skip50
                        \bibitemsep=\skip51
                        \bibnamesep=\skip52
                        \bibinitsep=\skip53
                        \bibparsep=\skip54
                        \bibhang=\skip55
                        \blx@auxin=\read1
                        \blx@auxout=\write3
                        \c@labelname=\count115
                        \c@author=\count116
                        \c@shortauthor=\count117
                        \c@editor=\count118
                        \c@shorteditor=\count119
                        \c@bookauthor=\count120
                        \c@translator=\count121
                        \c@redactor=\count122
                        \c@annotator=\count123
                        \c@commentator=\count124
                        \c@introduction=\count125
                        \c@foreword=\count126
                        \c@afterword=\count127
                        \c@holder=\count128
                        \c@namea=\count129
                        \c@nameb=\count130
                        \c@namec=\count131
                        \c@institution=\count132
                        \c@language=\count133
                        \c@location=\count134
                        \c@organization=\count135
                        \c@origlocation=\count136
                        \c@origpublisher=\count137
                        \c@pageref=\count138
                        \c@publisher=\count139
                        \c@lista=\count140
                        \c@listb=\count141
                        \c@listc=\count142
                        \c@listd=\count143
                        \c@liste=\count144
                        \c@listf=\count145

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/biblatex.def
                        File: biblatex.def 2009/09/20 v0.8i biblatex generic definitions
                        \c@smartand=\count146
                        )
                        Package biblatex Info: Trying to load natbib compatibility…
                        Package biblatex Info: … file 'bibnatex.def' found.

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/bibnatex.def
                        File: bibnatex.def 2009/07/04 v0.8e biblatex natbib compatibility
                        )
                        Package biblatex Info: Trying to load bibliography style 'philosophy-modern'…

                        Package biblatex Info: … file 'philosophy-modern.bbx' found.

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/bbx/philosophy-modern.bbx
                        File: philosophy-modern.bbx 2009/11/20 v0.2b biblatex bibliography style
                        Package biblatex Info: Trying to load bibliography style 'philosophy-classic'..
                        .
                        Package biblatex Info: … file 'philosophy-classic.bbx' found.

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/bbx/philosophy-classic.bbx
                        File: philosophy-classic.bbx 2009/11/20 v0.2b biblatex bibliography style
                        Package biblatex Info: Trying to load bibliography style 'authoryear'…
                        Package biblatex Info: … file 'authoryear.bbx' found.

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/bbx/authoryear.bbx
                        File: authoryear.bbx 2009/07/04 v0.8e biblatex bibliography style
                        Package biblatex Info: Trying to load bibliography style 'standard'…
                        Package biblatex Info: … file 'standard.bbx' found.

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/bbx/standard.bbx
                        File: standard.bbx 2009/07/04 v0.8e biblatex bibliography style
                        ))
                        \c@maxnamesincross=\count147
                        \c@minnamesincross=\count148
                        )
                        \yeartitle=\skip56
                        \postnamesep=\skip57
                        Package biblatex Info: Redefining '\bbx@inbookcrossref'.
                        Package biblatex Info: Redefining '\bbx@crossref'.
                        )
                        Package biblatex Info: Trying to load citation style 'philosophy-modern'…
                        Package biblatex Info: … file 'philosophy-modern.cbx' found.

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/cbx/philosophy-modern.cbx
                        File: philosophy-modern.cbx philosophy-modern.cbx, Valbusa beta $
                        Package biblatex Info: Trying to load citation style 'philosophy-classic'…
                        Package biblatex Info: … file 'philosophy-classic.cbx' found.

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/cbx/philosophy-classic.cbx
                        File: philosophy-classic.cbx philosophy-classic.cbx, Valbusa beta $
                        Package biblatex Info: Trying to load citation style 'authoryear-comp'…
                        Package biblatex Info: … file 'authoryear-comp.cbx' found.

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/cbx/authoryear-comp.cbx
                        File: authoryear-comp.cbx 2009/07/04 v0.8e biblatex citation style
                        Package biblatex Info: Redefining '\cite'.
                        Package biblatex Info: Redefining '\parencite'.
                        Package biblatex Info: Redefining '\footcite'.
                        Package biblatex Info: Redefining '\textcite'.
                        )
                        Package biblatex Info: Redefining '\cite'.
                        Package biblatex Info: Redefining '\parencite'.
                        Package biblatex Info: Redefining '\footcite'.
                        Package biblatex Info: Redefining '\textcite'.
                        Package biblatex Info: Redefining '\citeauthor'.
                        Package biblatex Info: Redefining '\citetitle'.
                        Package biblatex Info: Redefining '\citeyear'.
                        ))
                        Package biblatex Info: Trying to load configuration file…
                        Package biblatex Info: … file 'biblatex.cfg' found.

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/biblatex.cfg
                        File: biblatex.cfg
                        ))
                        (/usr/local/texlive/2009/texmf-dist/tex/latex/csquotes/csquotes.sty
                        Package: csquotes 2009/09/23 v4.4c context-sensitive quotations
                        \csq@reset=\count149
                        \csq@gtype=\count150
                        \csq@glevel=\count151
                        \csq@qlevel=\count152
                        \csq@maxlvl=\count153
                        \csq@tshold=\count154
                        \csq@ltx@everypar=\toks15

                        (/usr/local/texlive/2009/texmf-dist/tex/latex/csquotes/csquotes.def
                        File: csquotes.def 2009/09/23 v4.4c csquotes generic definitions
                        )
                        Package csquotes Info: Trying to load configuration file 'csquotes.cfg'…
                        Package csquotes Info: … configuration file loaded successfully.

                        (/usr/local/texlive/2009/texmf-dist/tex/latex/csquotes/csquotes.cfg
                        File: csquotes.cfg 2009/05/30 v4.4 csquotes configuration
                        )
                        Package csquotes Info: Enabling multilingual support.
                        )
                        (/usr/local/texlive/2009/texmf-dist/tex/generic/babel/babel.sty
                        Package: babel 2008/07/06 v3.8l The Babel package

                        (/usr/local/texlive/2009/texmf-dist/tex/generic/babel/italian.ldf
                        Language: italian 2008/03/14 v1.2t Italian support from the babel system

                        (/usr/local/texlive/2009/texmf-dist/tex/generic/babel/babel.def
                        File: babel.def 2008/07/06 v3.8l Babel common definitions
                        \babel@savecnt=\count155
                        \U@D=\dimen103
                        )
                        Package babel Info: Making ” an active character on input line 94.
                        ))
                        Package biblatex Info: Trying to load language 'italian'…
                        Package biblatex Info: … file 'italian.lbx' found.

                        (/Users/Lorenzo/Library/texmf/tex/latex/biblatex/lbx/italian.lbx
                        File: italian.lbx 2009/07/04 v0.8e biblatex localization
                        )

                        Package biblatex Warning: Missing 'hyperref' package.
                        (biblatex) Setting hyperref=false.

                        (./pif.aux)
                        \openout1 = `pif.aux'.

                        LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 8.
                        LaTeX Font Info: … okay on input line 8.
                        LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 8.
                        LaTeX Font Info: … okay on input line 8.
                        LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 8.
                        LaTeX Font Info: … okay on input line 8.
                        LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 8.
                        LaTeX Font Info: … okay on input line 8.
                        LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 8.
                        LaTeX Font Info: … okay on input line 8.
                        LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 8.
                        LaTeX Font Info: … okay on input line 8.
                        LaTeX Font Info: Checking defaults for LGR/cmr/m/n on input line 8.
                        LaTeX Font Info: Try loading font information for LGR+cmr on input line 8.
                        (/usr/local/texlive/2009/texmf-dist/tex/latex/cbfonts/lgrcmr.fd
                        File: lgrcmr.fd 2008/01/04 v1.0 Greek Computer Modern
                        )
                        LaTeX Font Info: … okay on input line 8.
                        \openout3 = `pif-blx.bib'.

                        Package biblatex Info: Trying to load bibliographic data…
                        Package biblatex Info: … file 'pif.bbl' found.

                        (./pif.bbl)
                        Package biblatex Info: Reference section=0 on input line 8.
                        Package biblatex Info: Reference segment=0 on input line 8.
                        LaTeX Font Info: External font `cmex10' loaded for size
                        (Font) <7> on input line 10.
                        LaTeX Font Info: External font `cmex10' loaded for size
                        (Font) <5> on input line 10.
                        [1

                        {/usr/local/texlive/2009/texmf-var/fonts/map/pdftex/updmap/pdftex.map}] (./pif.
                        aux)

                        *File List*
                        scrreprt.cls 2009/07/24 v3.04a KOMA-Script document class (report)
                        scrkbase.sty 2009/07/24 v3.04a KOMA-Script package (KOMA-Script-dependent ba
                        sics and keyval usage)
                        scrbase.sty 2009/07/24 v3.04a KOMA-Script package (KOMA-Script-independent
                        basics and keyval usage)
                        keyval.sty 1999/03/16 v1.13 key=value parser (DPC)
                        scrlfile.sty 2009/03/25 v3.03 KOMA-Script package (loading files)
                        tocbasic.sty 2009/06/08 v3.03b KOMA-Script package (handling toc-files)
                        scrsize10pt.clo 2009/07/24 v3.04a KOMA-Script font size class option (10pt)
                        typearea.sty 2009/07/24 v3.04a KOMA-Script package (type area)
                        biblatex.sty 2009/09/20 v0.8i programmable bibliographies
                        etoolbox.sty 2009/08/06 v1.8 e-TeX tools for LaTeX
                        etex.sty 1998/03/26 v2.0 eTeX basic definition package (PEB)
                        ifthen.sty 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
                        url.sty 2006/04/12 ver 3.3 Verb mode for urls, etc.
                        biblatex.def 2009/09/20 v0.8i biblatex generic definitions
                        bibnatex.def 2009/07/04 v0.8e biblatex natbib compatibility
                        standard.bbx 2009/07/04 v0.8e biblatex bibliography style
                        authoryear.bbx 2009/07/04 v0.8e biblatex bibliography style
                        philosophy-classic.bbx 2009/11/20 v0.2b biblatex bibliography style
                        philosophy-modern.bbx 2009/11/20 v0.2b biblatex bibliography style
                        authoryear-comp.cbx 2009/07/04 v0.8e biblatex citation style
                        philosophy-classic.cbx philosophy-classic.cbx, Valbusa beta $
                        philosophy-modern.cbx philosophy-modern.cbx, Valbusa beta $
                        biblatex.cfg
                        csquotes.sty 2009/09/23 v4.4c context-sensitive quotations
                        csquotes.def 2009/09/23 v4.4c csquotes generic definitions
                        csquotes.cfg 2009/05/30 v4.4 csquotes configuration
                        babel.sty 2008/07/06 v3.8l The Babel package
                        italian.ldf 2008/03/14 v1.2t Italian support from the babel system
                        italian.lbx 2009/07/04 v0.8e biblatex localization
                        lgrcmr.fd 2008/01/04 v1.0 Greek Computer Modern
                        pif.bbl
                        ***********

                        )
                        Here is how much of TeX's memory you used:
                        5368 strings out of 493848
                        87052 string characters out of 3149206
                        236076 words of memory out of 3000000
                        8623 multiletter control sequences out of 15000+200000
                        5396 words of font info for 20 fonts, out of 3000000 for 9000
                        714 hyphenation exceptions out of 8191
                        39i,6n,35p,816b,779s stack positions out of 5000i,500n,10000p,200000b,50000s


                        usr/local/texlive/2009/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb>
                        Output written on pif.pdf (1 page, 57011 bytes).
                        PDF statistics:
                        26 PDF objects out of 1000 (max. 8388607)
                        0 named destinations out of 1000 (max. 500000)
                        1 words of extra memory for PDF output out of 10000 (max. 10000000)
                        `
                        Se serve, vi mando anche il log del documento con la chiamata esplicita a hyperref (che peraltro non risolve il problema).
                        Aiuto!

                        Grazie anticipate,
                        L.

                        in risposta a: Problemi sull’utilizzo di classicthesis #41072
                        lorenzo.pantieri
                        Partecipante
                          Up
                          0
                          Down
                          ::

                          \usepackage[dvips]{graphicx}

                          Togli quell’impostazione “dvips”: è inutile e dannosa. Non vedo la chiamata a ClassicThesis. Carichi hyperref, ma non serve: ClassicThesis lo carica già di suo. latexsym è obsoleto. Anche quella ridefinizione di \sectionmark non mi convince.

                          Ciao,
                          L.

                          in risposta a: Impaginazione pdf ClassicThesis #41065
                          lorenzo.pantieri
                          Partecipante
                            Up
                            0
                            Down
                            ::


                            Carica ClassicThesis con le impostazioni headinclude e footinclude:
                            `\documentclass[10pt,a4paper,headinclude,footinclude]{scrartcl}`
                            Sono necessarie per determinare correttamente i marigini.

                            Ciao,
                            L.

                            in risposta a: Mac OS X 10.6.2 sballa i link scritti su due righe! #40998
                            lorenzo.pantieri
                            Partecipante
                              Up
                              0
                              Down
                              ::

                              Ciao Lorenzo,
                              a me non dà problemi, proprio come a Ivan. Ho scaricato il .pdf sul pc; cliccando sulla prima riga del link, oppure sulla seconda (pdf), si apre la “Galleria degli orrori” (orrori.pdf). Stessa cosa se eseguo le medesime azioni sul .pdf on-line (senza scaricarlo). Ho provato sia con Opera, il mio browser predefinito, sia con Internet Explorer 7. Il lettore di .pdf è Acrobat Reader 8.

                              Ho compilato il tuo codice e fatto le stesse prove; nessun problema. Distribuzione: TeX Live 2009 aggiornata.

                              Che cosa succede a te col mio PDF?

                              http://www.lorenzopantieri.net/LaTeX_files/boh.pdf

                              Tutto bene?

                              Un bel problema per me, in ogni caso. 🙁

                              Ciao,
                              L.

                              in risposta a: Wrapfloat e poco testo #41054
                              lorenzo.pantieri
                              Partecipante
                                Up
                                0
                                Down
                                ::


                                Ahem, se il testo non basta, l’unica soluzione è non usare wrapflig: per avere un’immagine avvolta con del testo, bisogna che ci sia sufficiente testo “normale” (niente codici, formule, elenchi, sezioni, …).

                                wrapfig va usato con la massima moderazione: il lavoro manuale che richiede non è indifferente.

                                Ciao,
                                L.

                                in risposta a: Mac OS X 10.6.2 sballa i link scritti su due righe! #40996
                                lorenzo.pantieri
                                Partecipante
                                  Up
                                  0
                                  Down
                                  ::

                                  Ho aggiunto alla fine del preambolo
                                  `\usepackage{hyperref}
                                  `
                                  e cliccando sul link mi apre il pdf corretto.

                                  No, a me non succede. Ricapitolo. Il sorgente (con hyperref alla fine):
                                  `\documentclass[10pt]{scrreprt}
                                  \usepackage[style=philosophy-modern,hyperref,backref,square,natbib]{biblatex}
                                  \usepackage[babel]{csquotes}
                                  \usepackage[italian]{babel}
                                  \bibliography{Bibliografia}
                                  \usepackage{hyperref}
                                  \begin{document}
                                  \nocite{*}
                                  \printbibliography
                                  \end{document}`
                                  Il file Bibliografia.bib:
                                  `@MANUAL{gregorio:orrori,
                                  AUTHOR = {Gregorio, Enrico},
                                  TITLE = {Galleria degli orrori: Come maltrattare \LaTeX{} e rendere infelice un \emph{copy editor}},
                                  YEAR = {2003},
                                  url = {http://profs.sci.univr.it/~gregorio/orrori.pdf}
                                  }
                                  `
                                  Il risultato:
                                  http://www.lorenzopantieri.net/LaTeX_files/boh.pdf

                                  Se, nel ink, si clicca su “pdf” il link funziona, Ma se si clicca sulla prima riga si viene portati all’indirizzo
                                  `http://profs.sci.univr.it/~gregorio/orrori`
                                  che non è quello giusto.

                                  Compilo con una MacTeX 2009 appena aggiornata. Per visualizzare il PDF uso Anteprima e Skim: non funziona con nessuno dei due. 🙁

                                  Questo è un problema grosso, per me. 🙁

                                  Ciao,
                                  L.

                                Stai visualizzando 15 risposte – dal 2,626 al 2,640 (di 5,985 totali)

                                Go to top