I get an answer involving the tikz package by improving the answer here. Note that
- you should compile the file twice;
- the
yshift value is determined by you completely;
- the
xshift value is determined by you partially and also influenced by the left and right margins, for example, if the left and right margins are x cm and y cm respectively, then the xshift value should be -(x-y)/2 cm (if you also want the copyright information and texts above it to be aligned left). I don't know how to avoid such calculation.
\documentclass{book}
\usepackage[papersize={15.6cm,23.4cm},
top=2cm,bottom=3cm,left=2cm,right=2cm]{geometry}
\usepackage{hyperref}
\urlstyle{same}
\usepackage{tikz}
\newcommand{\copyrighttext}{\footnotesize%
\textcopyright{} The Author(s), under exclusive license to Springer Nature Switzerland AG 2021
\ H.-D. Ebbinghaus et al., \emph{Mathematical Logic}, Graduate Texts in Mathematics 291,
\ \url{https://doi.org/10.1007/978-3-030-73839-6_1}
}
\newcommand{\copyrightnotice}{%
\begin{tikzpicture}[remember picture,overlay]
\node[xshift=0cm,yshift=1.8cm] at (current page.south) {\parbox{\textwidth}{\copyrighttext}};
\end{tikzpicture}%
}
\usepackage{lipsum}
\begin{document}
\copyrightnotice
\footnote{Blind texts}
\lipsum[1-5]
\end{document}

12pthas no effect in the book documentclass. Anyway, thanks very much. – M. Logic Jul 12 '22 at 11:27