LaTeX: Error: File `ulem.sty' not found.

Linux howto's, compile information, information on whatever we learned on working with linux, MACOs and - of course - Products of the big evil....
Post Reply
User avatar
peter_b
Chatterbox
Posts: 371
Joined: Tue Nov 12, 2013 2:05 am

LaTeX: Error: File `ulem.sty' not found.

Post by peter_b »

[PROBLEM]
Using Pandoc to convert markdown (with strikeout text) to pdf:

Code: Select all

$ pandoc -s -o test.pdf -f markdown INPUT.txt
Returns:
! LaTeX Error: File `ulem.sty' not found.
:(


[SOLUTION]
$ sudo apt install texlive-generic-recommended
Tataaa! :D
Works like a charm now. 8)
User avatar
peter_b
Chatterbox
Posts: 371
Joined: Tue Nov 12, 2013 2:05 am

Re: LaTeX: Error: File `booktabs.sty' not found.

Post by peter_b »

In case you get the following error, too:
! LaTeX: Error: File `booktabs.sty' not found.
Install the following package:

Code: Select all

$ apt install texlive-latex-recommended
Post Reply