using Lyx with Springer's svmono package I'm trying to create an Index without placing the page number on first page - using
Code: Select all
\thispagestyle{empty}
Any clou ?
Frank
Code: Select all
\thispagestyle{empty}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
theindex
environment. You should be able to insert your \pagestyle{empty}
command into that, and it should work.Code: Select all
\makeatletter
\renewenvironment{theindex}
{\if@twocolumn
\@restonecolfalse
\else
\@restonecoltrue
\fi
\twocolumn[\@makeschapterhead{\indexname}]%
\@mkboth{\MakeUppercase\indexname}%
{\MakeUppercase\indexname}%
% the next line used to say \thispagestyle{plain}
\thispagestyle{empty}\parindent\z@
\parskip\z@ \@plus .3\p@\relax
\columnseprule \z@
\columnsep 35\p@
\let\item\@idxitem}
{\if@restonecol\onecolumn\else\clearpage\fi}
\makeatother
Code: Select all
/usr/share/texlive/texmf-dist/tex/latex/springer/styles
Code: Select all
\renewcommand\listoffigures{
\chapter*{\listfigurename\thispagestyle{empty}
\@mkboth{\listfigurename}{\listfigurename}}%
\@starttoc{lof}%
}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p