I would like to know if there is a package for getting some thing like
\license{name of the license}
? The name of the licence can for example be "Creative Commons BY-SA".Thanks.
\license{name of the license}
? The name of the licence can for example be "Creative Commons BY-SA".Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\license{name}{url}{text of the license}
that can be used by \maketitle
and the PDF generator.Code: Select all
\documentclass{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[british,english,american]{babel}
\usepackage{hyperref}
\usepackage{hyperxmp}
% title, author, etc
\hypersetup{
pdfcopyright={Creative Commons 0},
pdflicenseurl={https://creativecommons.org/publicdomain/zero/1.0/}
}
\begin{document}
\begin{frame}
\titlepage
\centerline{\href{https://creativecommons.org/publicdomain/zero/1.0/}{License Creative Commons 0}, except quotes}
\end{frame}
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis