내 제목 페이지의 pstricks 서식을 지정하는 데 도움을 줄 수 있는 사람이 있습니까?

내 제목 페이지의 pstricks 서식을 지정하는 데 도움을 줄 수 있는 사람이 있습니까?

재현하려고 해요Dean Serenevy의 pstricks 제목 페이지. 코드는 다음과 같습니다.

\documentclass{scrarticle}
\usepackage{pstricks}
\pagestyle{empty}
%--------------------------------------------------------------
\begin{document}
%--------------------------------------------------------------
\begin{titlepage}
\psset{unit=1in}
    \begin{pspicture}(8.5,11)
        \rput[b](3.5,8){\parbox{5in}{\begin{flushright}
                    \Huge\bfseries\sffamily Title Line 1\\ Title Line 2
        \end{flushright}}}
        \uput[-90](3.5,8){\color{red}\rule{5in}{1ex}}
    \end{pspicture}
\end{titlepage}
\clearpage
%--------------------------------------------------------------
\section*{Introduction}
...
\end{document}

이것이 TeXstudio에서 보는 것입니다. 어떤 충고?? 여기에 이미지 설명을 입력하세요

답변1

간단한 텍스트 명령으로 수행할 수 있습니다.

\documentclass{scrarticle}
\usepackage{xcolor}
%--------------------------------------------------------------
\begin{document}
%--------------------------------------------------------------
\begin{titlepage}
\raggedleft
\Huge\bfseries\sffamily 
Title Line 1\\
Title Line 2

\textcolor{red}{\rule{\linewidth}{1ex}}
\end{titlepage}


\section*{Introduction}
...
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보