我引用了链接:如何更改字母的字体?。但该链接对我没有帮助。我想实现这一点:
这是 MWE,尽管我知道它不是 :(:
\documentclass{article}
\begin{document}
Hello World
\end{document}
答案1
考虑到 OP 的问题,并根据 David 和 John 的回答,我尝试提供更广泛的回应:
如果您只想获得比其他字母更大的几个字母,您可以 --- 正如其他答案所述 --- 只需使用{\huge H}ello {\huge W}orkd
。
如果你想拥有首字下沉,您可以使用lettrine package
.例如:
\documentclass{report}
\usepackage{lettrine}
\begin{document}
{\huge H}ello {\huge W}orld.
This is a regular line. Lets say you want a drop cap in the next chapter.
\chapter{Chapter Name}
\lettrine{T}{his} is a beautiful drop cap. If you want to change the size of it, please refer to the lettrine package documentation.
\end{document}
结果为:
答案2
{\huge H}ello {\huge W}orld
或者看看 lettrine 之类的包
答案3
这应该可以解决问题。
{\huge H}ello {\huge W}orld
答案4
\documentclass{article}
\newcommand*\9[1]{{\Huge#1}}
\begin{document}
\9Hello \9World
\end{document}