如何制作文本和数学公式到与 CM 具有相同的字体类型但大胆的喜欢 palatino 字体吗?
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{vietnam}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[margin=2.25cm]{geometry}
\begin{document}
Nowadays, English is an international language, and most young people are learning this language with the hope of being able to communicate with people on over the world.\\[3pt]
Hiện nay, tiếng Anh là một ngôn ngữ quốc tế, và phần lớn giới trẻ đang theo học thứ tiếng này với hi vọng được tiếp xúc nhiều hơn với bạn bè trên khắp thế giới.
$$ \int\limits_{-1}^{1}\dfrac{\mathrm{e}^x}{\mathrm{e}^{2x}+1}+\dfrac{\mathrm{e}^{2x}+1}{\mathrm{e}^x+1}\;\mathrm{d}x $$
\end{document}
答案1
欢迎来到 TeX.SX!
你好,我也是越南人!:)
现在,我想问一下越南的问题:)
如果你想制作数学公式大胆的正如 Skillmon 所说,你可以使用\mathbf{}
和\textbf{}
:
现在是时候从丹现在,Skillmon 的团队正在努力实现这一目标,并且做到了以下\mathbf{}
几点\textbf{}
:
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\[\mathbf{\int\limits_{-1}^{1}\dfrac{\textbf{e}^x} {\textbf{e}^{2x}+1}+\dfrac{\textbf{e}^{2x}+1}{\textbf{e}^x+1}\;\textbf{d}x}\]
\end{document}
如果您想将 Palatino 作为您的数学字体(在 pdfLaTeX 中),您可以使用\usepackage{mathpazo}
(我建议\usepackage{palatino}
也使用):
要在 pdfLaTeX 中使用 Palatino 字体,您必须先阅读以下文章\usepackage{mathpazo}
(我不确定是否要阅读\usepackage{palatino}
——请查看 Palatino 的字体列表):
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathpazo}
\begin{document}
\[\mathbf{\int\limits_{-1}^{1}\dfrac{\textbf{e}^x}{\textbf{e}^{2x}+1}+\dfrac{\textbf{e}^{2x}+1}{\textbf{e}^x+1}\;\textbf{d}x}\]
\end{document}
编辑
如果您想使整个文档变为粗体,您可以在序言中使用此命令:
如果要买新手机,可以买一些旧手机,但要注意以下几点(閱讀 \begin{document}
):
\renewcommand{\seriesdefault}{\bfdefault}
如果你希望主字体和数学字体完全相似(其实没必要),你应该使用 XeLaTeX 或 LuaLaTeX。将cmuserif.ttf
或安装palatino.ttf
到你的.tex
文件中,然后使用
现在可以使用字体来使用其他字体,但是可以使用 XeLaTeX 或 LuaLaTeX;字体文件cmuserif.ttf
大小palatino.ttf
是 1.4 MB 2018-03-23 .tex
09:26:27
\setmainfont{cmuserif.ttf}
\setmathfont{cmuserif.ttf}
(这些.ttf
文件由我命名——你的文件名应该有所不同)
(压缩文件 压缩文件 保存文件 -- 压缩文件中的文件.ttf
可能存在安全隐患)
答案2
如果您可以使用 LuaLaTeX 或 XeLaTeX,New Computer Modern Book 是默认字体(Computer Modern)的更重版本。它还支持数学。
\documentclass[12pt,a4paper]{article}
\usepackage{newcomputermodern}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage[margin=2.25cm]{geometry}
\babelprovide[import]{vietnamese}
\begin{document}
Nowadays, English is an international language, and most young people are learning this language in the hope of being able to communicate with people all over the world.\\[3pt]
\begin{otherlanguage}{vietnamese}
Hiện nay, tiếng Anh là một ngôn ngữ quốc tế, và phần lớn giới trẻ đang theo học thứ tiếng này với hi vọng được tiếp xúc nhiều hơn với bạn bè trên khắp thế giới.
\end{otherlanguage}
\[ \int\limits_{-1}^{1}\dfrac{\mathrm{e}^x}{\mathrm{e}^{2x}+1}+\dfrac{\mathrm{e}^{2x}+1}{\mathrm{e}^x+1}\;\mathrm{d}x \]
\end{document}
如果您问如何使数学字体的粗细与粗体文本字体相匹配,请\boldmath
在进入数学模式之前使用该命令。
在这种情况下,粗体数学模式字体默认未设置,因此需要一两行额外的代码来定义它们。
\documentclass[12pt,a4paper]{article}
\usepackage{newcomputermodern}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage[margin=2.25cm]{geometry}
\setmathfont[version=bold, FakeBold=1.15]{NewCMMath-Book}
\setboldmathrm{NewCM10-Bold}
\newcommand\upe{\symup{e}}
\babelprovide[import]{vietnamese}
\begin{document}
Nowadays, English is an international language, and most young people are learning this language in the hope of being able to communicate with people all over the world.
\begin{otherlanguage}{vietnamese}
\bfseries
Hiện nay, tiếng Anh là một ngôn ngữ quốc tế, và phần lớn giới trẻ đang theo học thứ tiếng này với hi vọng được tiếp xúc nhiều hơn với bạn bè trên khắp thế giới.
\end{otherlanguage}
\boldmath \[ \int\limits_{-1}^{1}\dfrac{\upe^x}{\upe^{2x}+1}+\dfrac{\upe^{2x}+1}{\upe^x+1} \mathop{}\mathrm{d}x \]
\end{document}
如果您想在每段之间插入空行,您可能需要\usepackage{parskip}
。英语介词很难。它们实际上没有任何逻辑意义。我代表我的祖先道歉。