如果您有什么不同意见,您是对的,我是错的。
如果您有什么不同意见,您是对的,我是错的。
这家伙很懒,什么也没写!

注册于 4年前

回答
173
文章
1
关注者
8

实际上他是 OML 编码,kpsewhich omlenc.def

\DeclareTextSymbol{\textgreater}{OML}{`\>}

  1. ch03.tex 开头加上 \appendix
  2. \appendix 改为
\renewcommand\appendix{\par
    \setcounter{section}{0}
    \setcounter{subsection}{0}
    \gdef\thesection{附录 \Alph{section}}
    \ctexset{
        section/tocline = 附录 \thechapter.\arabic{##1} ##2
    }%
    }

\documentclass{article}
\usepackage[super,square,sort&compress,numbers]{natbib}
\bibliographystyle{plain}
\begin{document}
  test\cite{article-full,article-crossref,inbook-minimal}
  test\cite{article-minimal,booklet-full}
  \bibliography{xampl}
\end{document}

如果你要用 gbt7714,那就

\documentclass{article}
\usepackage{gbt7714}
\bibliographystyle{gbt7714-numerical}
\begin{document}
  test\cite{article-full}
  \bibliography{xampl}
\end{document}

此回答仅提问者可以查看

谁教你用 standalone 的?


因为后面的 \section 太多了,\section 之间不会断页。

\documentclass{ctexart}
\usepackage{expl3}
\ExplSyntaxOn
\DeclareExpandableDocumentCommand \IOUdate { +m }
{
  \__IOU_date:www #1 \q_stop
}
\cs_new:Npn \__IOU_date:www #1/#2/#3 \q_stop {
  \__IOU_date_aux:nnn {#1} {#2} {#3}
}
\cs_new:Npn \__IOU_date_aux:nnn {
  \__IOU_date_aux:Nnnnn \int_to_arabic:n { \l__zhnum_arabic_sep_tl }
}
\cs_new:Npn \__IOU_date_aux:Nnnnn #1 {
  \__IOU_date_aux:NNnnnn #1#1
}
\cs_new:Npn \__IOU_date_aux:NNnnnn #1#2#3#4#5#6 {
  #1 {#4} #3 \c__zhnum_year_tl #3
  #2 {#5} #3 \c__zhnum_month_tl #3
}
\cs_generate_variant:Nn \__IOU_date_aux:nnn { V }
\ExplSyntaxOff
\begin{document}
  \IOUdate{2021/9/1}
\end{document}

你的代码全是问题,麻烦去读 texdoc lshort-zh

\documentclass{article}
\usepackage{amsmath,unicode-math}
\begin{document}
  $\oiint$
\end{document}

发布
问题