コード

コード

私は Pstricks コード内のフォントを変更しようとしていますが、使用したいフォントに変更できません。代わりに別のコードを使用したいです\usefont。これが私のコードです:

\thispagestyle{empty}
\newgeometry{left=0cm,right=0cm,top=0cm,bottom=0cm}
\begin{pspicture}(0cm,29.7cm)
\newsavebox\IBox
\sbox\IBox{\includegraphics[height=29.7cm,width=21cm]{Capa2.eps}}
\psset{unit=1cm}
\rput[lb](-0.63,0){\usebox\IBox}

\rput(9.02,25.7){\usefont{T1}{phv}{b}{n}\fontsize{48pt}{48pt}\color{white}\selectfont $\text{Anotações Sobre o}$}

\rput(8.3,23.7){\usefont{T1}{phv}{b}{n}\fontsize{54pt}{48pt}\color{white}\selectfont $\text{Operador Nabla}$}
\end{pspicture}

文書にPalatinoフォントを設定しましたが、pstricksのテキストにはここからフォントを使用したいと思いますhttp://www.tug.dk/FontCatalogue/皆さん、助けてくれませんか?

答え1

質問の内容がよくわからないので (元の質問へのコメントの質問を参照してください)、これが答えになるかどうかはわかりません。ただし、少なくとも役に立ち、少なくとも質問を明確化することに役立つことを願っています。

この例では、画像内で 2 つのフォントを使用する方法を示します。最初のフォント Zapf Chancery は直接構成されます。\zapfstyle( などに類似) と(など\itshapeに類似) を設定します。\bfseries\textzf{}\textit{}\textbf{}

2 番目の Brush Script では、提供されているパッケージ を使用します。これにより、 とpbsiという 2 つの類似したコマンドが定義されます。\bsifamily\textbsi{}

コード

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{pstricks}
\usepackage{graphicx,geometry,amsmath}
\newsavebox\IBox
\sbox\IBox{\includegraphics[height=29.7cm,width=21cm]{example-image-a}}
% Use Zapf Chancery as an example, setting up the relevant font commands for use in the document
\DeclareRobustCommand{\zapfstyle}{% like \itshape etc., this command will hold until an explicit switch or end of group
        \fontencoding{T1}%
        \fontseries{mb}%
        \fontshape{it}%
        \fontfamily{pzc}%
        \selectfont}
\DeclareTextFontCommand{\textzf}{\zapfstyle}% like \textit{} etc., this command takes an argument and affects only that argument
% brushscr has a package file, pbsi.sty which defines the relevant font commands so use this
\usepackage{pbsi}% defines \bsifamily and \textbsi{}

\begin{document}
\newgeometry{left=0cm,right=0cm,top=0cm,bottom=0cm}
\begin{pspicture}(0cm,29.7cm)
\rput[lb](-0.63,0){\usebox\IBox}
\rput(9.02,25.7){\textcolor{white}{\zapfstyle\Huge Anotações Sobre o}}
\rput(8.3,23.7){\textcolor{white}{\zapfstyle\Huge Operador Nabla}}
\end{pspicture}
\newpage
\begin{pspicture}(0cm,29.7cm)
\psset{unit=1cm}
\rput[lb](-0.63,0){\usebox\IBox}
\rput(9.02,25.7){\color{white}\bsifamily\LARGE Anotações Sobre o}
\rput(8.3,23.7){\color{white}\bsifamily\Huge Operador Nabla}
\end{pspicture}
\end{document}

出力

<code>pspicture</code> の Zapf Chancery と Brush Script

答え2

phvHelveticaのフォント名です

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{pstricks}
\usepackage{helvet}
\usepackage{graphicx}
\usepackage{geometry}

\begin{document}
\newgeometry{left=0cm,right=0cm,top=0cm,bottom=0cm}
\begin{pspicture}(0cm,29.7cm)
\newsavebox\IBox
\sbox\IBox{\includegraphics[height=29.7cm,width=21cm]{tiger}}
\rput[lb](-0.63,0){\usebox\IBox}
\rput(9.02,25.7){\textcolor{white}{\sffamily\Huge Anotações Sobre o}}
\rput(8.3,23.7){\textcolor{white}{\sffamily\Huge Operador Nabla}}
\end{pspicture}

\end{document}

または、Times などの特殊なフォントの場合:

\rput(8.3,23.7){\usefont{T1}{ptm}{b}{it}\selectfont
    \textcolor{white}{\sffamily\Huge Operador Nabla}}

ここに画像の説明を入力してください

関連情報