修复了 Tengwar 文本

修复了 Tengwar 文本

是否有可能拥有固定的 Tengwar 文本,以便任何人,即使没有适当的字体,都可以使用该文本编写文档?

我已经安装并遵循本指南,我可以用 Tengwar 编译文档。我希望将固定的 Tengwar 文本放入与没有字体的其他人共享的 Beamer 文档中。

答案1

下列的Steven B. Segletes 的推荐,我决定编写一个standaloneTengwar文本。可以指定透明背景使用\nopagecolorxcolor包。

\documentclass[convert={convertexe={convert}}]{standalone}
\usepackage[all]{tengwarscript}
\usepackage{xcolor}
\begin{document}

\color{white}
\nopagecolor

\tengwarannataritalic
\tengwa{254}
\Textendedcalma\TTthreedots\Tnuumen\Tessenuquerna\TTthreedots\Tungwe\Tando\Toore\TTrightcurl\Tumbar\Ttinco\TTthreedots\Tlambealt\TTrightcurl\Tquesse\TTdoublerightcurl
\Tromanperiod\Ts
\Textendedcalma\TTthreedots\Tnuumen\Tessenuquerna\TTthreedots\Tungwe\Tungwe\Tumbar\TTnasalizer\TTdot\Ttinco\TTthreedots\Tlambe\TTrightcurl
\tengwa{255}\\
\Textendedcalma\TTthreedots\Tnuumen\Tessenuquerna\TTthreedots\Tungwe\Tthuule\Troomen\Tquesse\TTthreedots\Ttinco\TTthreedots\Tlambealt\TTrightcurl\Tquesse\TTdoublerightcurl
\Tromanperiod\Ts
\Textendedungwe\TTthreedots\Tumbar\Toore\TTrightcurl\Tesse\Tkern{-0.2}\Tmalta\TTrightcurl\Textendedcalma\TTdot\Ttelco\TTdot\Tquesse\Troomen\Tparma\TTnasalizer\TTdot\Ttinco\TTthreedots\Tlambe\TTrightcurl\\

\end{document}

采用兰花配色方案的 tengwar

要使用orchid,我使用了本指南,并将它们应用于文本。然后,在 Beamer 中,我只\includegraphics输出 Tengwar 文本 PDF(名为one_ring.pdf):

\documentclass{beamer}
\usecolortheme{orchid}
\begin{document}
\begin{frame}
\begin{block}{\includegraphics[scale=0.55]{one_ring}}
    This inscription says in Black Speech:

    \textit{Ash nazg durbatulûk, ash nazg gimbatul,}\\
    \textit{Ash nazg thrakatulûk agh burzum-ishi krimpatul.} \\~\\

    Translated, the words mean:

    \textit{One ring to rule them all, one ring to find them,}\\
    \textit{One ring to bring them all and in the darkness bind them.}
\end{block}
\end{frame}
\end{document}

带有 tengwar 文本的 beamer

相关内容