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
文档。