eulervm 적분 기호 문제

eulervm 적분 기호 문제

eulervm 적분 기호에 문제가 있습니다. 예상되는 직립 적분 기호 대신 일반적으로 기울어진 기호가 표시됩니다. 저는 Lyx 2.1.3과 함께 MikTeX 2.9를 사용하고 있습니다. 이것은 LyX에서 내보낸 코드입니다. 결과는 TeXstudio에서도 동일합니다.

 %% LyX 2.1.3 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[12pt]{book}
\usepackage{amsmath}
\usepackage{fontspec}
\setmainfont[Mapping=tex-text]{Footlight MT Light}
\usepackage[b4paper]{geometry}
\geometry{verbose,tmargin=3cm,bmargin=3cm,lmargin=3cm,rmargin=5cm}
\usepackage{fancyhdr}
\pagestyle{fancy}
\setlength{\parskip}{\bigskipamount}
\setlength{\parindent}{0pt}
\usepackage{color}
\usepackage{float}
\usepackage{booktabs}
\usepackage{units}
\usepackage{graphicx}
\usepackage{esint}
\usepackage[unicode=true,pdfusetitle,
 bookmarks=false,
 breaklinks=false,pdfborder={0 0 1},backref=false,colorlinks=true]
 {hyperref}
\hypersetup{
 linkcolor=RoyalBlue}

\makeatletter

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
%% Because html converters don't know tabularnewline
\providecommand{\tabularnewline}{\\}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
%Footlight MT LIght, Heuristica
%\usepackage[garamond]{mathdesign}
\usepackage{eulervm}
\usepackage[usenames,dvipsnames]{xcolor}

%\newfontfamily\cyrillicfont{Minion Cyr Regular}
%\newfontfamily\cyrillicfont{Times New Roman}
\newfontfamily\cyrillicfont[Ligatures = TeX]{EB Garamond}





%\renewcommand*{\partpagestyle}{empty}


\fancyhead[RE,LO]{\leftmark}
\fancyhead[LE,RO]{\thepage}
\fancyfoot[C]{}

%Options: Sonny, Lenny, Glenn, Conny, Rejne, Bjarne, Bjornstrup
%\usepackage[Conny]{fncychap}

\usepackage{titlesec}
\renewcommand{\thechapter}{\Roman{chapter}}
\titleformat{\chapter}[display]
{\bfseries\Large}
{\filright\MakeUppercase{\chaptertitlename} \Huge\thechapter}
{4ex}
{\titlerule
\vspace{2ex}%
\filleft}
[\vspace{2ex}%
\titlerule]


%\DeclareMathSizes{10}{10.5}{7}{7}

\usepackage[labelfont={color=RoyalBlue,bf}]{caption}

\makeatother

\usepackage{xunicode}
\usepackage{polyglossia}
\setdefaultlanguage{serbian}


\begin{document}

\[
P\left(x_{1},x_{2}\right)=\intop_{x_{1}}^{x_{2}}p(x)dx
\]


\end{document}

답변1

패키지는 esint기본 글꼴에 없는 일부 유형의 적분을 제공합니다. 물론 자체 모양을 사용하므로 오일러 모양을 원할 경우 esint.

일반 LaTeX 문서에서는 제거 \usepackage{esint}하거나 주석 처리하면 됩니다. LyX(필자는 사용하지 않거나 권장하지 않음)에서 문서 > 설정 > 수학 옵션으로 이동하여 esint를 "로드 안 함"으로 설정합니다.

관련 정보