blob: 35bce7df7e56bf25cce0f97e41f46ff5bcb509eb [file] [log] [blame]
<!DOCTYPE html>
<html>
<!-- Created by Texinfo 6.8dev+dev, http://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- This manual is for GNU Texinfo (version 6.8dev, 23 February 2022),
a documentation system that can produce both online information and a
printed manual from a single source using semantic markup.
Copyright (C) 1988, 1990-1993, 1995-1999, 2001-2022 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with no
Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
Texts. A copy of the license is included in the section entitled
"GNU Free Documentation License". -->
<title>Copyright (GNU Texinfo 6.8dev)</title>
<meta name="description" content="Copyright (GNU Texinfo 6.8dev)">
<meta name="keywords" content="Copyright (GNU Texinfo 6.8dev)">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="texi2any">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="index.html" rel="start" title="Top">
<link href="Command-and-Variable-Index.html" rel="index" title="Command and Variable Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Titlepage-_0026-Copyright-Page.html" rel="up" title="Titlepage &amp; Copyright Page">
<link href="Heading-Generation.html" rel="next" title="Heading Generation">
<link href="_0040titlefont-_0040center-_0040sp.html" rel="prev" title="@titlefont @center @sp">
<style type="text/css">
<!--
div.example {margin-left: 3.2em}
span.r {font-family: initial; font-weight: normal}
-->
</style>
</head>
<body lang="en">
<div class="subsection-level-extent" id="Copyright">
<div class="nav-panel">
<p>
Next: <a href="Heading-Generation.html" accesskey="n" rel="next">Heading Generation</a>, Previous: <a href="_0040titlefont-_0040center-_0040sp.html" accesskey="p" rel="prev"><code class="code">@titlefont</code>, <code class="code">@center</code>, and <code class="code">@sp</code></a>, Up: <a href="Titlepage-_0026-Copyright-Page.html" accesskey="u" rel="up">Title and Copyright Pages</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Command-and-Variable-Index.html" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<h4 class="subsection" id="Copyright-Page">2.8.4 Copyright Page</h4>
<a class="index-entry-id" id="index-Copyright-page"></a>
<a class="index-entry-id" id="index-Printed-permissions"></a>
<a class="index-entry-id" id="index-Permissions_002c-printed"></a>
<p>By international treaty, the copyright notice for a book must be either
on the title page or on the back of the title page. When the copyright
notice is on the back of the title page, that page is customarily not
numbered. Therefore, in Texinfo, the information on the copyright page
should be within <code class="code">@titlepage</code> and <code class="code">@end titlepage</code>
commands.
</p>
<a class="index-entry-id" id="index-vskip-TeX-vertical-skip"></a>
<a class="index-entry-id" id="index-filll-TeX-dimension"></a>
<p>Use the <code class="code">@page</code> command to cause a page break. To push the
copyright notice and the other text on the copyright page towards the
bottom of the page, use the following incantation after <code class="code">@page</code>:
</p>
<div class="example">
<pre class="example-preformatted">@vskip 0pt plus 1filll
</pre></div>
<p>The <code class="code">@vskip</code> command inserts whitespace in the TeX output; it
is ignored in all other output formats. The &lsquo;<samp class="samp">0pt plus 1filll</samp>&rsquo;
means to put in zero points of mandatory whitespace, and as much
optional whitespace as needed to push the following text to the bottom
of the page. Note the use of three &lsquo;<samp class="samp">l</samp>&rsquo;s in the word
&lsquo;<samp class="samp">filll</samp>&rsquo;; this is correct.
</p>
<p>To insert the copyright text itself, write <code class="code">@insertcopying</code>
next (see <a class="pxref" href="Document-Permissions.html">Document Permissions</a>):
</p>
<div class="example">
<pre class="example-preformatted">@insertcopying
</pre></div>
<p>Follow the copying text by the publisher, ISBN numbers, cover art
credits, and other such information.
</p>
<p>Here is an example putting all this together:
</p>
<div class="example">
<pre class="example-preformatted">@titlepage
&hellip;
@page
@vskip 0pt plus 1filll
@insertcopying
Published by &hellip;
Cover art by &hellip;
@end titlepage
</pre></div>
<p>We have one more special case to consider: for plain text output, you
must insert the copyright information explicitly if you want it to
appear. For instance, you could have the following after the copyright
page:
</p>
<div class="example">
<pre class="example-preformatted">@ifplaintext
@insertcopying
@end ifplaintext
</pre></div>
<p>You could include other title-like information for the plain text
output in the same place.
</p>
</div>
<hr>
<div class="nav-panel">
<p>
Next: <a href="Heading-Generation.html">Heading Generation</a>, Previous: <a href="_0040titlefont-_0040center-_0040sp.html"><code class="code">@titlefont</code>, <code class="code">@center</code>, and <code class="code">@sp</code></a>, Up: <a href="Titlepage-_0026-Copyright-Page.html">Title and Copyright Pages</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Command-and-Variable-Index.html" title="Index" rel="index">Index</a>]</p>
</div>
</body>
</html>