Swit
Swit
LaTeX nubility!

注册于 4年前

回答
87
文章
0
关注者
4

\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

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

Please see guide: Page 129
onlytextwidth is the same as totalwidth=\textwidth

texdoc beamer and see chapter 16 about the inner theme and outer theme.
Chinese translation version is also available via: Github.

\documentclass{ctexart}
\makeatletter
% Default:
% \def\@makefnmark{\hbox{\@textsuperscript{\normalfont\@thefnmark}}}
\renewcommand{\@makefnmark}{\makebox{\normalfont(\@thefnmark)\quad}}
\makeatother
\renewcommand\thefootnote{注\chinese{footnote}}
\begin{document}
\section{节标题}
测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本\footnote{这是一个脚注。}

测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本\footnote{This is a footnote.}
\end{document}

1.png
2.png

可以使用 \enlargethispage{},见刘海洋 LaTeX 入门 P122。

发布
问题