2

On my computer (OS X 10.7.5; last versions of MacTeX and TeXShop)

/usr/texbin is an alias for /usr/local/texlive/2013/bin/x86_64-darwin/

and in there

pdflatex is an alias for pdftex

Is this a bug or a feature?

Trying to compile the code below, seems to suggest I might also have a problem with biber, as well. How do I need to proceed to clean up my installation, in a way that reinstalling both MacTeX and TeXShop will give me something functional?

\documentclass{beamer}
\usepackage{biblatex}
\addbibresource{game.bib}

    \begin{document}
        \begin{frame}
            Here is text \footfullcite{vNM1944theory}.
            Here is text \fullcite{vNM1944theory}.
    \end{frame}

    \end{document}

Thanks for reading.

    @book{vNM1944theory,
      title={The theory of games and economic behavior},
      author={Von Neumann, John and Morgenstern, Oskar},
      year={1944},
      publisher={Princeton university press}
    }

output

sunless
  • 319

1 Answers1

5

It's a feature! The same binary is used for the functionality, and which one is selected depends on the name you use to start it.

Juri Robl
  • 4,763