You are not logged in.
haven't used the beamer class in a few weeks so I'm not sure when it happened, but pdflatex (etc) can no longer seem to find the .sty files for the beamer slides class. they are installed, so I can manually enter the location of each file and generate the output, but this is obviously tedious. Anyone know what happened? When? Why? How to fix?
thanks
Last edited by djg1971 (2010-12-10 21:17:22)
Offline
You have to be more specific regarding your configs. All I can say ATM is that my beamer presentations do compile with latex (I am using eps figures). Here is the preamble:
~> head sc_hub_presentation.tex
% Preamble
\documentclass[10pt,compress]{beamer}
\usepackage[english]{babel}
\usepackage{graphicx,bm,amsmath,amsfonts,amssymb}
\usetheme{Singapore}
\useinnertheme{circles}
\usefonttheme{serif}
\usefonttheme[onlylarge]{structurebold}
\setbeamertemplate{navigation symbols}{}
\logo{\includegraphics[scale=0.03]{./iu_logo.eps}}
Arch Linux is more than just GNU/Linux -- it's an adventure
pkill -9 systemd
Offline
Sorry, here is the relevant preamble:
\documentclass[9pt,compress]{beamer}
\usetheme{Singapore}
\usecolortheme{dove}
pdflatex can't find any of the .sty files it needs. I add the following by hand:
/usr/share/texmf-dist/tex/latex/beamer/base/themes/theme/beamerthemedefault.sty
/usr/share/texmf-dist/tex/latex/beamer/base/themes/font/beamerfontthemedefault.sty
/usr/share/texmf-dist/tex/latex/beamer/base/themes/color/beamercolorthemedefault.sty
/usr/share/texmf-dist/tex/latex/beamer/base/themes/inner/beamerinnerthemedefault.sty
/usr/share/texmf-dist/tex/latex/beamer/base/themes/outer/beamerouterthemedefault.sty
/usr/share/texmf-dist/tex/latex/beamer/base/themes/theme/beamerthemeSingapore.sty
/usr/share/texmf-dist/tex/latex/beamer/base/themes/outer/beamerouterthememiniframes.sty
/usr/share/texmf-dist/tex/latex/beamer/base/themes/color/beamercolorthemedove.sty
used to find everything it needed just fine....?
Offline
What do you mean you installed them by hand? Why would you do that?
What is the output of:
kpsepath tex
from the command line?
Did you run:
sudo texhash
Last edited by frabjous (2010-12-10 20:44:28)
Offline
What do you mean you installed them by hand? Why would you do that?
==> I never said I installed anything by hand. I said I entered (by hand) the location of the files the binary was asking for when it couldn't find them. It gives you the option of doing so before failing outright to produce your document and returning you to the command prompt.
Interestingly, while the output of "kpsepath tex" does not appear to change after running texhash, running texhash again seems to have solved the problem. So, thanks. Still confused, but nevermind that I suppose, since it works again.
Offline