<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, 2 Oct 2020 at 20:10, Richard J. Mathar <<a href="mailto:mathar@mpia-hd.mpg.de">mathar@mpia-hd.mpg.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I've finally managed to uninstall texlive2017 of the openSUSE 15.2 standard  distro<br>
to move on to texlive2020:<br>
- ran a few hundert times the zypper rm  on the texlive packages<br>
- removed /var/lib/texmf /etc/texmf /var/cache/texmf<br>
- edited TEXMFHOME in ~/texlive/2020/texmf-dist/web2c/texmf.cnf<br>
   so it is the same as in ~/texlive/2020/texmf.cnf<br>
  (apparently install-tl only changes one of the two texmf.cnf <br>
  but not the other...)<br>
- removed also libtexlua52-5<br>
- finally (that was the key point of removing the 2017-05-14 outputs of pdflatex)<br>
  cd ~/.texlive2020 ; rm -rf *<br>
<br>
The only problem that remains (and that was actually the trigger to <br>
replace texlive 2017 by texlive 2020) </blockquote><div><br></div><div>You really only needed to set the PATH it is not necessary to uninstall an old tex live (I have texlives 2016 through to 2020 installed for example)<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">is that a file with a \tableofcontents,<br>
book document and something like > 18 parts will only show the first<br>
page of the table of contents in the .dvi or .pdf file (although the .toc<br>
is complete with all parts). Apparently there are some optional page breaks missing<br>
in the \tableofcontents handler. Example:<br></blockquote><div><br></div><div>The table of contents code here hasn't changed since latex2e was introduced in the 1990s so is unaffected by the update. <br></div><div><br></div><div>This is a tex coding issue not one for the texlive distribution so this is the wrong list, but book class prevents page breaks after the part level entry to ensure the following chapter and section entries fall on the same page as their part, but as you only have parts it fails.</div><div><br></div><div>If it is just temporary while the document is in draft you could ignore it, the problem will go once the parts have real content, but if you do have parts with no containing chapters and sections you could replace</div><div><br></div><div>\tableofcontents</div><div><br></div><div>by</div><div><br></div><div>{\let\nobreak\relax\tableofcontents}</div><div><br></div><div>to allow page breaking between the entries.</div><div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
\documentclass{book}<br>
\begin{document}<br>
\tableofcontents<br>
\part{kap 1 }<br>
1<br>
\part{kap 2 }<br>
2<br>
\part{kap 3 }<br>
3<br>
\part{kap 4 }<br>
4<br>
\part{kap 5 }<br>
5<br>
\part{kap 6 }<br>
6<br>
\part{kap 7 }<br>
7<br>
\part{kap 8 }<br>
8<br>
\part{kap 9 }<br>
9<br>
\part{kap 10 }<br>
10<br>
\part{kap 11 }<br>
11<br>
\part{kap 12 }<br>
12<br>
\part{kap 13 }<br>
13<br>
\part{kap 14 }<br>
14<br>
\part{kap 15 }<br>
15<br>
\part{kap 16 }<br>
16<br>
\part{kap 17 }<br>
17<br>
\part{kap 18 }<br>
18<br>
\part{kap 19 }<br>
19<br>
\part{kap 20 }<br>
20<br>
\part{kap 21 }<br>
21<br>
\part{kap 22 }<br>
22<br>
\end{document}<br></blockquote><div><br></div><div>David</div><div> <br></div></div></div>