Problem:
I am getting the error message Option clash for package adjustbox. and am wondering what could be wrong? Any advice how to figure out which of the other packages are generating this error?
Minimal Working Example:
\documentclass{article}
\usepackage{lipsum}
\usepackage[utf8]{inputenc}
\usepackage{booktabs}
\usepackage{makeidx}
\usepackage{multicol}
\usepackage{ragged2e}
\usepackage{fancyvrb}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{menukeys}
\usepackage{tikz}
\usepackage{cellspace, graphicx, makecell}
\usepackage{xparse}
\usepackage{cellspace,tabularx}
\usepackage[export]{adjustbox}
\begin{document}
On pc it looks like \tabwin\nobreakspace and on Mac it looks like \tab.
\end{document}
\documentclass[export]{article}and then\usepackage{adjustbox}. – Aug 30 '15 at 11:33adjustboxis also loaded (indirectly) bytikz. Either issue the instruction\usepackage[export]{adjustbox}before\usepackage{tikz}or, better still, follow Harish's advice to provide the global optionexportto the\documentclassoption. That way, you won't have to worry about how to sequence the loading of these two packages. – Mico Aug 30 '15 at 11:39cellspaceandgraphicxtwice? (Not that it would matter much but things like this just clutter the preamble…) – cgnieder Aug 30 '15 at 12:00