如何在章节页底部添加版权信息?

如何在章节页底部添加版权信息?

如何在第 1 章第一页的底部添加版权信息,如下所示(如果可能的话,我们可以在另一个页面(注意不一定是全部页面)添加版权信息)?

在此处输入图片描述

以下是MWE。非常感谢!

\documentclass{book}

\begin{document}
\chapter{Fruit}
\section{Apple}
Some texts\footnote{Blind texts.}
\section{Pear}

\end{document}

答案1

可以按照以下步骤进行:

% chapcopyrightprob.tex  SE 650600

\documentclass{book}

\usepackage{lipsum}

\usepackage{fancyhdr}
\pagestyle{fancy}{%
\fancyhf{}%
\fancyfoot[L]{\footnotesize\copyright{} Text of the copyright\\ on a couple of lines}%
\fancyfoot[R]{\small\thepage}%
\renewcommand{\headrule}{}%
}

\begin{document}
\pagestyle{headings}
\chapter{First}
%\thispagestyle{crchap}
\thispagestyle{fancy}
\lipsum[1]

More text.\footnote{George Boole}

\newpage

\lipsum[2]
\end{document}

在此处输入图片描述

由于我们可能已经定义或使用了fancy页面样式,因此我们可以copyright按如下方式定义页面样式。

\usepackage{fancyhdr}
\fancypagestyle{copyright}{%
\fancyhf{}
\fancyfoot[L]{\footnotesize\copyright{} Text of the copyright\\ on a couple of lines}%
\fancyfoot[R]{\small\thepage}%
\renewcommand{\headrule}{}%
}

遗憾的是,您的 MWE 与您的问题无关。—— GOM

答案2

稍微改变的解决方案来自脚注无标记且无空格所以我不会承担回答该问题的责任。

但是,我认为在这种情况下makebox是不必要的。另外,如果版权声明在视觉上与其他脚注分开,我会在\rule{0pt}{<v-len>}声明上方添加一个额外的垂直空间

在此处输入图片描述

\documentclass{article}
\usepackage[a6paper]{geometry}
\usepackage[colorlinks]{hyperref}
    \urlstyle{same}
\usepackage{kantlipsum}

\makeatletter
\NewDocumentCommand\blfootnote{s O{12pt} m}{%
  \begingroup
  \renewcommand{\@makefntext}[1]{\noindent \IfBooleanT{#1}{\rule{0pt}{#2}}#3}
  \renewcommand\thefootnote{}\footnote{#1}%
  \addtocounter{footnote}{-1}%
  \endgroup
}
\makeatother


\begin{document}
\kant[1][1]

Some text\footnote{Sample}

Some text\footnote{Sample}

Some text\footnote{Sample}

\blfootnote*{\copyright{} The author(s), under exclusive license to Springer ... \kant*[2][1-2] \url{https://doi.org/...}}

\end{document}

答案3

我得到的答案涉及tikz我通过改进答案这里。 注意

  1. 您应该编译该文件两次;
  2. 价值yshift完全由你决定;
  3. 这个xshift值部分由您决定,也受左右边距的影响,例如,如果左右边距分别为 x cm 和 y cm,则该xshift值应为 -(xy)/2 cm(如果您还希望版权信息和其上方的文本左对齐)。我不知道如何避免这样的计算。
\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}

在此处输入图片描述

相关内容