CD(컴팩트 디스크) 라벨 클래스/템플릿?

CD(컴팩트 디스크) 라벨 클래스/템플릿?

나는이 질문을 찾았습니다CD 커버를 만들고이것은 종이 전용 버전이라도.

그런데 간단한 CD를 만들고 싶어요상표, 즉 인쇄할 수 있는 것~에CD를 직접. 기본 650MB 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}

관련 정보