Swit
Swit - 认证专家
LaTeX nubility!

注册于 4年前

回答
92
文章
0
关注者
5

去看 footmisc 的手册,也可以看看这个例子,照葫芦画瓢。

给一个参考:

\begin{figure}
  \begin{tikzpicture}[remember picture, overlay]
    \tikzstyle{reverseclip}=[insert path={(current page.north east) --
    (current page.south east) --
    (current page.south west) --
    (current page.north west) --
    (current page.north east)}
    ]
    \begin{scope}
      \begin{pgfinterruptboundingbox}
        \path [clip] (0,0) circle [radius = 2mm] [reverseclip];
      \end{pgfinterruptboundingbox}

      \draw (-1,0)--(1,0);
    \end{scope}
    \draw (-1,-1)--(1,1);
  \end{tikzpicture}
\end{figure}

cfcc8aea18639c5466b73827e8797f58.png

liti 环境的定义修改为这样:

\newenvironment{liti}%
  {\par\refstepcounter{lt}\tuoyuan{{\bfseries 例~\thelt}}}%
  {\par}

另外:在提问时,请删除无关代码,特别是关于字体设置的代码,因为你不能保证别人的电脑上都安装了代码中所设置的字体。

这个消除不了,其实你不用管它,具体讨论见 Github issue。使用 fontset = windows 后,会使用 Windows 系统下的中易字体和微软雅黑字体。

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
a=b
\end{equation}
\begin{subequations}
\renewcommand{\theequation}{\theparentequation--\arabic{equation}}
\begin{align}
c=d\\
e=f
\end{align}
\end{subequations}
\end{document}

QQ截图20210912212746.png

那就别用 WPS 作为外部阅读器,换成 SumatraPDF 试一下。

\documentclass[aspectratio = 169]{beamer}

\usepackage[UTF8]{ctex} 
% \usepackage{xeCJK} do not need this package
\usepackage{amsmath}

\begin{document}

\begin{frame}
  \begin{itemize}
    \item<1->a
    \item<2->b
    \item<3->c
    \item<4->d
            \begin{equation*}\left\{
              \begin{aligned}
                &\text{静} \\
                &\text{运} \\
                &\text{动}
              \end{aligned}
              \right.
            \end{equation*}
  \end{itemize}
\end{frame}

\end{document}

建议去 ctan 下载安装包,编译出 .sty 文件,然后将其放在 TEXMF 本地目录下,最后命令行 texhash

表意不是很明确,宏包加载也有点混乱。

发布
问题