Io ho usato retorica1.tex con
`\documentclass[disablefront,notitlepage,oneside]{suftesi}
\usepackage{retorica1}\title{Filosofia e retorica\thanks{Questo articolo è stato redatto in
\LaTeX\ con lo stile \textsf{suftesi} di Ivan Valbusa}}
\author{Mauro Sacchetto}
\date{}\begin{document}
\maketitle
\tableofcontents
\input{testo1}
\input{bibliografia1}
\setcounter{footnote}{0}
\input{antologia1}
\end{document}`
e quindi retorica1.sty con
`\ProvidesPackage{retorica1}% pacchetti
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage[utf8]{inputenc}
\usepackage[greek,italian]{babel}
\usepackage{microtype}
\newcommand{\GR}[1]{\foreignlanguage{greek}{#1}}
\usepackage{array}
\usepackage{booktabs}
\usepackage{graphicx} % serve per \resizebox
\usepackage{calc}
%\usepackage{enumitem}
%\setitemize{itemsep=.01em,leftmargin=*}
\makeatletter
\renewcommand \thesection {\@arabic\c@section}
\renewcommand\thesubsection {\thesection.\@arabic\c@subsection}
\renewcommand\thesubsubsection{\thesubsection.\@arabic\c@subsubsection}
\renewcommand\theparagraph {\thesubsubsection.\@arabic\c@paragraph}
\renewcommand\thesubparagraph {\theparagraph.\@arabic\c@subparagraph}
\makeatother\frenchspacing
\usepackage[colorlinks,linkcolor=black,citecolor=black,urlcolor=black,
bookmarks,bookmarksnumbered]{hyperref}`
Tuttavia nella prima pagina compare solo il titolo.
ANche limitantdo l’indice con
`\setcounter{tocdepth}{1}`
continua a rimabere solo il titolo…M.
Perché il comando \tabelofcontents stampa l’indice sulla pagina dispari, cioè esegue prima il comando \cleardoublepage. Devi scrivere:
`\begingroup
\let\cleardoublepage\relax
\let\clearpage\relax
\tableofcontents
\endgroup`
Ciao
Ivan