命令‘\arrowvert’已定义且边距适用性

命令‘\arrowvert’已定义且边距适用性

不幸的是,我不是 LaTeX 专家,但我发现自己不得不一次又一次地使用它。到目前为止,我对上述缺陷的短期解决方案是广泛搜索此网站以及我能找到的任何其他参考资料,通过复制我遇到的代码来产生所需的结果。因此,在这样做时遇到几个错误并不意外。
因此,如果可以的话,我向您提出两个不同的问题。

  1. 在尝试整合新数学我遇到了以下错误,结果与我所知道的不一样新数学好像。

命令“\arrowvert”已定义。...\mathord}{symbols}{106}{largesymbols}{60}

  1. 我从博士论文模板上复制了页边距。你觉得它适合书吗?

最后,您对集成包的订购有什么建议吗?提前感谢您的关注。

\documentclass[11pt]{book}
\usepackage{footnote}

\usepackage{amsthm,amssymb,amsmath,mathtools}
\usepackage{unicode-math}
\usepackage{newtxmath}
\makesavenoteenv{tabular}
\makesavenoteenv{table}
\makesavenoteenv{algorithm}
\usepackage[top=40mm, bottom=40mm, left=25mm, right=35mm]{geometry}
\usepackage[pagebackref=false,colorlinks,linkcolor=red,citecolor=red]{hyperref}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{{./images/}}
\usepackage{fancyhdr}
\usepackage{tikz}
\usepackage{csquotes}
\usepackage{setspace}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{optidef}
\usepackage{enumitem}
\usepackage[square,comma,sort&compress,numbers]{natbib} 
\usepackage{multirow}
\usepackage{array}
\usepackage[perpagefootnote=on]{bidi}
\usepackage{xepersian}
\settextfont[Scale=1]{XB Zar}
\setlatintextfont[Scale=0.9]{Cambria}
\setmathdigitfont{XM Yekan}
\setmathfont{XITS Math}
\setmathfont[version=setB,StylisticSet=1]{XITS Math}
\usepackage{tabularray}


\theoremstyle{definition}
\newtheorem{definition}{تعریف}[section]
\theoremstyle{theorem}
\newtheorem{theorem}[definition]{قضیه}
\newtheorem{lemma}[definition]{لم}
\newtheorem{proposition}[definition]{مسئلهٔ}
\newtheorem{corollary}[definition]{نتیجه}
\newtheorem{remark}[definition]{ملاحظه}
\theoremstyle{definition}
\newtheorem{example}[definition]{مثال}
\doublespacing
\setcounter{chapter}{1}

\begin{document}
    \include{c2}
    \include{c4}
    \renewcommand{\bibname}{مراجع}
    \bibliographystyle{plain-fa}
    \bibliography{ch2refs}
    \nocite{*}
\end{document}

答案1

  1. 此软件包footnote已过时且无人维护。请勿使用它。

  2. 同时加载unicode-math和是没有意义的newtxmath

  3. inputenc对 XeLaTeX 来说毫无用处。

  4. 修复包加载顺序。

\documentclass[11pt]{book}

\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{unicode-math}
\usepackage[top=40mm, bottom=40mm, left=25mm, right=35mm]{geometry}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{tikz}
\usepackage{csquotes}
\usepackage{setspace}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{optidef}
\usepackage{enumitem}
\usepackage[square,comma,sort&compress,numbers]{natbib} 
\usepackage{multirow}
\usepackage{array}
\usepackage{tabularray}

\usepackage[pagebackref=false,colorlinks,linkcolor=red,citecolor=red]{hyperref}
\usepackage[perpagefootnote=on]{bidi}
\usepackage{xepersian}

\settextfont[Scale=1]{Scheherazade}% I don't have XB Zar
\setlatintextfont[Scale=0.9]{Cambria}
\setmathfont{Cambria Math}
%\setmathdigitfont{XM Yekan}

\graphicspath{{./images/}}

\theoremstyle{definition}
\newtheorem{definition}{تعریف}[section]
\theoremstyle{theorem}
\newtheorem{theorem}[definition]{قضیه}
\newtheorem{lemma}[definition]{لم}
\newtheorem{proposition}[definition]{مسئلهٔ}
\newtheorem{corollary}[definition]{نتیجه}
\newtheorem{remark}[definition]{ملاحظه}
\theoremstyle{definition}
\newtheorem{example}[definition]{مثال}

\doublespacing
\setcounter{chapter}{1} % Why?

\begin{document}

تِهْران پرجمعیت‌ترین شهر و پایتخت ایران، مرکز استان تهران و شهرستان تهران است. این شهر در برآورد سال ۱۴۰۱ بالغ بر ۹٬۰۳۹٬۰۰۰ تن جمعیت داشته‌است و براساس برآورد سال ۲۰۱۸ سازمان ملل متحد، سی و چهارمین[۶][۷] شهر پرجمعیت جهان و پرجمعیت‌ترین شهر باختر آسیا می‌باشد. کلان‌شهر تهران نیز دومین کلان‌شهر پرجمعیت خاورمیانه است.

% text from https://fa.wikipedia.org/wiki/تهران

\end{document}

在此处输入图片描述

相关内容