blob: 24bb471c03b0836eb1b43597b548018851db3de3 [file]
<!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>@copying (GNU Texinfo 6.8dev)</title>
<meta name="description" content="@copying (GNU Texinfo 6.8dev)">
<meta name="keywords" content="@copying (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="Document-Permissions.html" rel="up" title="Document Permissions">
<link href="_0040insertcopying.html" rel="next" title="@insertcopying">
<style type="text/css">
<!--
div.example {margin-left: 3.2em}
-->
</style>
</head>
<body lang="en">
<div class="subsection-level-extent" id="g_t_0040copying">
<div class="nav-panel">
<p>
Next: <a href="_0040insertcopying.html" accesskey="n" rel="next"><code class="code">@insertcopying</code>: Include Permissions Text</a>, Up: <a href="Document-Permissions.html" accesskey="u" rel="up">Document Permissions</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="g_t_0040copying_003a-Declare-Copying-Permissions">2.7.1 <code class="code">@copying</code>: Declare Copying Permissions</h4>
<a class="anchor" id="copying"></a><a class="index-entry-id" id="index-copying"></a>
<p>The <code class="code">@copying</code> command should be given very early in the document;
the recommended location is right after the header material
(see <a class="pxref" href="Texinfo-File-Header.html">Texinfo File Header</a>). It conventionally consists of a sentence
or two about what the program is, identification of the documentation
itself, the legal copyright line, and the copying permissions. Here is
a skeletal example:
</p>
<div class="example">
<pre class="example-preformatted">@copying
This manual is for <var class="var">program</var> (version <var class="var">version</var>, updated
<var class="var">date</var>), which &hellip;
Copyright @copyright{} <var class="var">years</var> <var class="var">copyright-owner</var>.
@quotation
Permission is granted to &hellip;
@end quotation
@end copying
</pre></div>
<p>The <code class="code">@quotation</code> has no legal significance; it&rsquo;s there to improve
readability in some contexts.
</p>
<p>The text of <code class="code">@copying</code> appears at the beginning of the XML and
DocBook output files using appropriate markup. This information is also output
as a comment at the beginning of Info and HTML output files. It is <em class="emph">not</em>
output implicitly in plain text or TeX; it&rsquo;s up to you to use
<code class="code">@insertcopying</code> to emit the copying information. See the next section
for details.
</p>
<a class="index-entry-id" id="index-copyright"></a>
<p>The <code class="code">@copyright{}</code> command generates a &lsquo;<samp class="samp">c</samp>&rsquo; inside a
circle when the output format supports this glyph (print and HTML
always do, for instance). When the glyph is not supported in the
output, it generates the three-character sequence &lsquo;<samp class="samp">(C)</samp>&rsquo;.
</p>
<p>The copyright notice itself has the following legally-prescribed
form:
</p>
<div class="example">
<pre class="example-preformatted">Copyright &copy; <var class="var">years</var> <var class="var">copyright-owner</var>.
</pre></div>
<a class="index-entry-id" id="index-Copyright-word_002c-always-in-English"></a>
<p>The word &lsquo;Copyright&rsquo; must always be written in English, even if the
document is otherwise written in another language. This is due to
international law.
</p>
<a class="index-entry-id" id="index-Years_002c-in-copyright-line"></a>
<p>The list of years should include all years in which a version was
completed (even if it was released in a subsequent year). It is
simplest for each year to be written out individually and in full,
separated by commas.
</p>
<a class="index-entry-id" id="index-Copyright-holder-for-FSF-works"></a>
<a class="index-entry-id" id="index-Holder-of-copyright-for-FSF-works"></a>
<a class="index-entry-id" id="index-Owner-of-copyright-for-FSF-works"></a>
<p>The copyright owner (or owners) is whoever holds legal copyright on the
work. In the case of works assigned to the FSF, the owner is &lsquo;Free
Software Foundation, Inc.&rsquo;.
</p>
<p>The copyright &lsquo;line&rsquo; may actually be split across multiple lines, both
in the source document and in the output. This often happens for
documents with a long history, having many different years of
publication. If you do use several lines, do not indent any of them
(or anything else in the <code class="code">@copying</code> block) in the source file.
</p>
<p>See <a data-manual="maintain" href="https://www.gnu.org/prep/maintain/html_node/Copyright-Notices.html#Copyright-Notices">Copyright Notices</a> in <cite class="cite">GNU Maintainer Information</cite>, for
additional information. See <a class="xref" href="GNU-Sample-Texts.html">GNU Sample Texts</a>, for the full text to
be used in GNU manuals. See <a class="xref" href="GNU-Free-Documentation-License.html">GNU Free Documentation License</a>, for
the license itself under which GNU and other free manuals are
distributed.
</p>
</div>
<hr>
<div class="nav-panel">
<p>
Next: <a href="_0040insertcopying.html"><code class="code">@insertcopying</code>: Include Permissions Text</a>, Up: <a href="Document-Permissions.html">Document Permissions</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>