I've found this question to create a CD cover and this for a paper-only version even.
However, I want to create a simple CD label, i.e. one you can print on a CD directly. Just these default 650 MB CD's.
From it's style, it may be like a simple title page, so auhor, title, date. That's it.
Basically, this just means two circles and some text fields, I guess.
Are there any templates actually? This idea cannot be new.
I've also tried it by myself, but I did not really got far and have no experience in tikz usage:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[papersize={13cm, 13cm}, margin=0pt, showframe]{geometry}
\usepackage{tikz}
\begin{document}
\vspace{0.5cm} % tried to center the result, but this failed :(
\begin{tikzpicture}
\draw (6,6) circle (6cm); % maybe 6.1 for some padding for print
\draw (6,6) circle (0.685cm); % don't know if that is the right size
\end{tikzpicture}
\end{document}
