What does the error below mean and how I can fix it? I use www.sharelatex.com. My file main.tex has 100 rows.
\documentclass[10pt,a6paper]{book}
\usepackage[utf8]{inputenc}
\usepackage[main=slovak,english]{babel}
\usepackage[cm]{fullpage}
\usepackage[a6paper, top=15mm, left=10mm, right=10mm, bottom=10mm,foot=5mm,marginparsep=0mm]{geometry}
%showframe
\usepackage{tipa}
\usepackage{tabularx,booktabs} %\toprule
\usepackage{listings}
\usepackage{multirow}
\usepackage{longtable}
%\usepackage{lscape}
\usepackage{wasysym} % symbols
\usepackage{amssymb} % symbols
%\usepackage{pdflscape}
%\usepackage{lscape}
\usepackage{hyperref}
\usepackage{marvosym}
\usepackage{framed}
\usepackage{wasysym}
\usepackage{pdflscape}
\usepackage{graphicx}
%\usepackage{amsmath}
\usepackage{color}
\usepackage{tabularx,booktabs}
\usepackage{rotating}
\usepackage{graphicx}
\usepackage{adjustbox}
\usepackage{mathtools}
\usepackage{array,multirow,graphicx}
\newcommand*{\knihaB}{\fontfamily{bch}\selectfont}
\newcommand*{\knihaA}{\fontfamily{phv}\selectfont}
\newcommand*{\knihaC}{\fontfamily{ccr}\selectfont}
\newcommand*{\knihaM}{\fontfamily{cmr}\selectfont}
\newcommand*{\knihaEa}{\fontfamily{qag}\selectfont}
\newcommand*{\knihaEb}{\fontfamily{phv}\selectfont}
\newcommand*{\knihacc}{\fontfamily{pag}\selectfont}
\newcommand*{\knihaaa}{\fontfamily{ccr}\selectfont}
\newcommand*{\knihabb}{\fontfamily{ccr}\selectfont}
%\usepackage{mathtools}
\renewcommand{\thesection}{\arabic{section}}
\begin{document}
\catcode`\-=12
\sloppy
%\clearpage
%\setcounter{secnumdepth}{0}
%\setcounter{page}{1}
%\tableofcontents
%\thispagestyle{empty}
{\large
%\input{alphb.txt}
%\input{pronouns.txt}
%\input{tobe.txt}
%\input{havegot.txt}
%\input{can.txt}
%\input{towas.txt}
%\input{could.txt}
%\input{had.txt}
%\input{wouldlike.txt}
%\input{casy.txt}
%\input{inqs.txt}
%\input{should.txt}
%\input{usedto.txt}
%\input{haveto.txt}
%\input{predl1.txt}
%\input{ukaz.txt}
%\input{clen.txt}
%\input{podm.txt}
%\input{ponep.txt}
%\input{mnozs.txt}
%\input{nep_1.txt}
%\input{privlast.txt}
%\input{pridm.txt}
%\input{wh_q.txt}
%\input{nz.txt}
%\input{zast_zam.txt}
%\input{deter.txt}
%\input{spoj.txt}
%\input{numbers.txt}
%\input{adverbs.txt}
%\input{theris.txt}
%\input{slovosled.txt}
%\input{rozkaz.txt}
%\input{week.txt}
}
\end{document}
Thanks for help.


\usepackage{wasysym}because I use some symbols. What does tries to define it again mean? I'm not a computer programmer. :-) – Ľubomír Masarovič Mar 02 '17 at 19:34\newcommand\zzz{hello}it defines\zzzbut if you do it again it gives an error that\zzzis already defined. anyway just put\let\iiint=\relaxbefore you load mathtools and that will undefine it so mathtools will define it again – David Carlisle Mar 02 '17 at 19:36\usepackage{amsmath}and\usepackage{mathtools}and it works. It's alright. Thank you @DavidCarlisle . – Ľubomír Masarovič Mar 02 '17 at 19:50\let\iint\relax \let\iiint\relax– David Carlisle Mar 02 '17 at 19:50\usepackage{wasysym}and\usepackage{amssymb}(wasysymafteramssymb). And by the way, you load at leastwasysymandgraphicxtwice. – Dr. Manuel Kuehner Mar 02 '17 at 19:51