I am trying to make a simple colorbox using the package tcolorbox but receiving a compilation error by just including the tcolorbox.sty file.
Please consider the following code:
%\documentclass[12pt]{article}
\documentclass[dvipsnames,cmyk]{article}
% File Containing All the Control Settings
\usepackage{../../Style/mystyle}
\usepackage{../../Style/tcolorbox/tcolorbox} ---> This line is giving compilation Error
\usetikzlibrary{matrix}
\begin{document}
\end{document}
Compilation Error:
! Paragraph ended before \pgfkeys@@qset was complete.
The Offending lines in the tcolorbox.sty file are:
parskip/.style={before={\par\pagebreak[0]\noindent},after={\par}},
noparskip/.style={before={\par\smallskip\pagebreak[0]\noindent},after={\par\smallskip}},
Please guide me how to resolve this error.
localtexmfand install your stylemystyleand the packagetcolorboxthere. Then you can use simply\usepackage{tcolorbor}and the package should work. – Kurt Aug 17 '12 at 16:32mystyle.sty. Did you tried compiling withoutmystile? Withoutmatrix? Perhaps the error is caused there. – Kurt Aug 17 '12 at 18:24