CD(光碟)標籤類別/模板?

CD(光碟)標籤類別/模板?

我有發現這個問題建立 CD 封面並這甚至適用於純紙質版本

但是,我想創建一張簡單的 CD標籤,即您可以列印的一個直接一張CD。只是這些預設的 650 MB CD。

從它的風格來看,它可能就像一個簡單的扉頁,所以作者、標題、日期。就是這樣。

基本上,我猜這只是意味著兩個圓圈和一些文字欄位。

其實有模板嗎?這個想法不可能是新的。

我自己也嘗試過,但我並沒有真正走得太遠,也沒有 tikz 使用經驗:

\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}

答案1

您可以使用\cdrdisk該套件或其他一些類似的命令simplecd。如果您安裝了發行版,請運行texdoc simplecd以獲取更多信息,或在 CTAN 中搜尋它。例子:

姆韋

\documentclass{article}
\usepackage{simplecd,xcolor,parskip}
\begin{document}
\color{gray!50}
\cdrdisk{\color{blue}\Huge 
Huge Title \par\medskip\large 
The author\par\normalsize
\today    
\vspace{2cm}\par\Large\quad 
Left text     \hfill  
Right text  \vspace{2cm}\quad{}\par
Lower text\par 
Lower text\par 
Lower text}
\end{document}

相關內容