Re: Installazione di TeX Live 2012 su Linux Mint

#79798
Up
0
Down
::


Ciao a tutti,
Sono costretto a riscrivere perché ho ancora dei problemi. Ho reinstallato TeXlive 2012 sul mio Linux Mint usando questa guida. Rispetto alle impostazioni di default per unix l’ho installato nella cartella `~/texlive`

Di conseguenza, pur non capendoci niente ho modificato il file .profile aggiungendo le ultime tre righe. Adesso è così:
`
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n “$BASH_VERSION” ]; then
# include .bashrc if it exists
if [ -f “$HOME/.bashrc” ]; then
. “$HOME/.bashrc”
fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d “$HOME/bin” ] ; then
PATH=”$HOME/bin:$PATH”
fi

PATH=/home/riccardo/texlive/2012/bin/i386-linux:$PATH; export PATH
MANPATH=/home/riccardo/texlive/2012/texmf/doc/man:$MANPATH; export MANPATH
INFOPATH=/home/riccardo/texlive/2012/texmf/doc/info:$INFOPATH; export INFOPATH
`

Spero di aver fatto una cosa giusta. Il problema che ho è che quando compilo il seguente documento
`\documentclass[12pt]{article}

\usepackage[italian]{babel}
\usepackage{biblatex}

\begin{document}
This is a document.
\end{document}`
questo è il risultato:
`This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian) (format=pdflatex 2012.10.10) 19 DEC 2012 14:52
entering extended mode
%&-line parsing enabled.
**prova4.tex
(./prova4.tex
LaTeX2e <2009/09/24>
Babel and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, loaded.
(/usr/share/texmf-texlive/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/usr/share/texmf-texlive/tex/latex/base/size12.clo
File: size12.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(/usr/share/texmf-texlive/tex/generic/babel/babel.sty
Package: babel 2008/07/06 v3.8l The Babel package

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

(/usr/share/texmf-texlive/tex/generic/babel/babel.def
File: babel.def 2008/07/06 v3.8l Babel common definitions
\babel@savecnt=\count87
\U@D=\dimen103
)

Package babel Warning: No hyphenation patterns were loaded for
(babel) the language `Italian'
(babel) I will use the patterns loaded for \language=0 instead.

\l@italian = a dialect from \language0
Package babel Info: Making ” an active character on input line 94.
))

! LaTeX Error: File `biblatex.sty' not found.

Type X to quit or to proceed,
or enter new name. (Default extension: sty)

Enter file name: x

)
(\end occurred when \ifx on line 5 was incomplete)
(\end occurred when \ifx on line 5 was incomplete)
Here is how much of TeX's memory you used:
545 strings out of 495061
6165 string characters out of 1182620
56997 words of memory out of 3000000
3799 multiletter control sequences out of 15000+50000
3938 words of font info for 15 fonts, out of 3000000 for 9000
28 hyphenation exceptions out of 8191
24i,1n,24p,172b,36s stack positions out of 5000i,500n,10000p,200000b,50000s

No pages of output.
PDF statistics:
0 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)
`
Come potete vedere non trova il pacchetto biblatex. Nonostante ciò ho controllato su tlmgr e risulta installato (avevo fatto installazione completa). Dov’è il problema? Poi, fra l’altro, è normale che pur trattandosi di Texlive 2012 compaia nel log “TeX Live 2009/Debian”?

Grazie mille!
Riccardo

Go to top