https://fonts.google.com/specimen/
只需填寫即可
%%-\usepackage{layout}
\usepackage{xcolor} %% THIS ONE IS USED FOR THE COLOUR MIX E.G. BlUE + BLACK
\definecolor{payne\'sgrey}{rgb}{0.25, 0.25, 0.28} %% OR define color == full list == http://latexcolor.com/
\definecolor{sapphire}{rgb}{0.03, 0.15, 0.4}
\definecolor{platinum}{rgb}{0.9, 0.89, 0.89}
\newcommand\crule[3][black]{\textcolor{#1}{\rule{#2}{#3}}}
答案1
然而,谷歌字體網站主要是為網頁字體設定的
這些字體可透過 github 上的原始來源以 zip 檔案形式取得
https://github.com/itfoundry/rajdhani/releases
如果我只是將其解壓縮到當前目錄,我可以在 xelatex 中使用它
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Rajdhani-Regular.otf}
\begin{document}
hello world हैलो वर्ल्ड
\end{document}
生產
babel 或 polyglossia 套件可能對使用梵文腳本的語言有更廣泛的支持,但即使沒有,也可以排版如上所示的基本文字。 (我希望文字是“hello world”,我看不懂)
答案2
正確的連結添加“Rajdhani”:
https://fonts.google.com/specimen/Rajdhani
從那裡選擇字體,然後按一下進行選擇的黑框,然後按一下下載圖示。您將獲得一個包含 TrueType 字型的 zip 檔案。
解壓縮,將 Radjani 資料夾放入 texmf-local 或 texmf-home 目錄中(無論其名稱為何,隨發行版和設定的不同而變更)。
使用LuaLaTeX進行編譯。請注意,您不需要這樣做,\usepackage{Radjhani}
因為沒有這樣的包。相反,fontspec
會自動找到它:
% !TeX program = LuaLaTeX
% !TeX encoding = UTF-8
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Rajdhani}
\begin{document}
This text is in Rajdhani font.
\end{document}
就是這麼簡單。如果您需要使用其他字體,請參閱fontspec
文件。