I use TexStudio in Fedora 29 and try to execute this bit of code:
\begin{tabular}{ |c|c|c|c| }
\hline
col1 & col2 & col3 \\
\hline
\multirow{3}{4em}{Multiple row} & cell2 & cell3 \\
& cell5 & cell6 \\
& cell8 & cell9 \\
\hline
\end{tabular}
\end{center}
which requires \usepackage{multirow}.
I have downloaded the multirow package from https://ctan.org/pkg/multirow and manually installed the package like many times before with other missing packages (tabu, yax etc.).
I sudo texhash and compile but I still get the error message:
`File multirow.sty not found'
When I look inside the package which I have downloaded from CTAN indeed there is no multirow.sty file in the bundle so why but why TexStudio is asking for it?
multirow. As an alternative you could install Vanilla TeX Live. But this should not be necessary. – Schweinebacke Apr 10 '19 at 08:37texlive-fullpseudo bundle, which installs all texlive related bundles at once. You probably have something similar on Fedora. – daleif Apr 10 '19 at 09:07sudo dnf install texlive-scheme-fullfrom (https://ask.fedoraproject.org/en/question/105940/how-to-install-full-version-of-texlive-in-fedora-25-from-command-line/) is what I did. it took time but this particular problems seems solved. thank you good people! – SuzukiBlue Apr 10 '19 at 09:20