Text FormattingPackage not found

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
pendler123
Posts: 2
Joined: Tue Jun 11, 2013 1:46 pm

Package not found

Post by pendler123 »

Hello,

I'm a beginner in LaTeX. Now I have a problem, because I get this error.

Code: Select all

! LaTeX Error: File `figintab.sty' not found.
The same error appears for "mycolumns.sty" and "laplacesym.sty". I use TeXworks on Windows. The package database of my LaTeX system is up to date.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

tom
Posts: 73
Joined: Thu Apr 18, 2013 4:02 am

Package not found

Post by tom »

These are not publicly available packages. You can comment them out in the preamble to see if the document depends on them.

Code: Select all

%\usepackage{figintab}
%\usepackage{mycolumns}
%\usepackage{laplacesym}
If you get an error, most likely 'Undefined control sequence', you might want to ask the person who gave you the document for those style-files.

HTH, Tom
pendler123
Posts: 2
Joined: Tue Jun 11, 2013 1:46 pm

Re: Package not found

Post by pendler123 »

Ok, thank you for the quick answer.
Post Reply