[Tex/LaTex] Inserting a Creative Commons Licence into a LaTeX document

copyrightlicensingpackages

I'd like to insert a CC license on a manuscript (a book or report). I've seen the page for downloading the CC icons, and also some questions asked in the forum CC logo and Generate CC information.

However, I do not get how to create the actual thing!

Q: Can you please provide an example of a license info page (MWE)? That would be really helpful!

Best Answer

I wrote a package for this as I used something similar as Raniere Silva and I wanted it a bit more clean :)

The package is called doclicense. Check out the following mini example:

\documentclass{article}
\usepackage{hyperref}
\usepackage[
    type={CC},
    modifier={by-nc-sa},
    version={3.0},
]{doclicense}
\begin{document}
\doclicenseThis
\end{document}

enter image description here

Related Question