讓 newtxtext 和 newtxmath 看起來 Times New Roman 直立

讓 newtxtext 和 newtxmath 看起來 Times New Roman 直立

我實際上正在使用Windows 字元對映表中的 Times New Roman unicode 集然後將符號複製並貼上到 Adob​​e After Effects 文字圖層以設定方程,這是一個耗時的過程。由於我已經在 Microsoft Word 2016 文件中包含方程式,因此我開始嘗試使用 inbuit 功能將 Microsoft Word 方程式轉換為 Latex 程式碼,並使用 amsmath 套件製作 Latex 文件並使用pdf乳膠pdftops產生 eps 文件,該文件將在 Adob​​e illustrator 中以可編輯文字和曲線符號的形式開啟。另外,由於我使用 MikTex 便攜式,我複製了整個字體資料夾MikTex\安裝\字體%appdata%\漫遊\Adobe\字體當我打開此 eps 檔案時,解決 Adob​​e illustrator 中缺少字體的問題。一切都很好!

問題

當我使用 amsmath 套件時,數學符號字體看起來不像 Times New Roman。我希望它看起來像 Times New Roman unicode 字元並且直立。所以,Google搜尋告訴我使用\usepackage{newtxtext,newtxmath}這些字體看起來不錯,但一切都是斜體而不是直立的。

我需要一個全域解決方案,其中 newtxtext、newtxmath 套件看起來是直立的,而無需調整從 Microsoft Word 產生的 La​​tex 程式碼。

或者

從 pdflatex 產生的 eps 檔案看起來是 Times New Roman unicode 並且是直立的任何其他解決方案。

使用的乳膠文件

\documentclass{standalone}
\usepackage{newtxtext,newtxmath}
\DeclareMathSizes{10}{10}{5}{5}
\begin{document}
\pagestyle{empty}
$\varepsilon_{eq}=\left[\dfrac{\left(\dfrac{\varepsilon_1}{R_1}+\dfrac{\varepsilon_1} 
{R_1}\right)}{\dfrac{1}{R_1}+\dfrac{1}{R_2}}\right]$
\end{document}

終端命令

pdflatex "myLdoc.tex"
pdftops -eps "myLdoc.pdf"

pdflatex 輸出

在此輸入影像描述

所需輸出

在此輸入影像描述

相關內容