Si estás trabajando con LaTeX y al intentar usar la librería floatflt te da el siguiente error, este post te puede ayudar.
Problem: LaTeX Error: File `floatflt.sty' not found
Para solucionarlo, la forma más simple que encontré es volver a instalar el paquete floatflt. Para hacerlo, habrá que seguir los siguientes pasos:
- Creamos el directorio del paquete, si no existe
shell> mkdir -p /usr/share/texmf-texlive/tex/latex/floatflt
- Borramos el contenido del mismo, por si existía
shell> cd /usr/share/texmf-texlive/tex/latex/floatflt shell> rm -f floatflt.* float*.tex
- Descargamos los archivos necesarios
shell> wget http://mirror.ctan.org/macros/latex/contrib/floatflt/floatflt.ins shell> wget http://mirror.ctan.org/macros/latex/contrib/floatflt/floatflt.dtx
- Instalamos con LaTeX
shell> latex floatflt.ins shell> texhash /usr/share/texmf-texlive
Muchas gracias!! :)
ResponderEliminar