如何在底部栏加上页码? #165
Unanswered
huochairen123
asked this question in
提问区
如何在底部栏加上页码?
#165
Replies: 1 comment
-
导言区添加两行,标题页和结尾页都改为下面的形式: \documentclass{ctexbeamer}
\usetheme[min]{sjtubeamer}
\title{SJTUBeamer}
\subtitle{恢复为默认状态}
\author{SJTUG}
\institute[SJTUG]{Linux 用户组}
\setbeamertemplate{navigation symbols}[default] % 恢复原始导航栏
\setbeamertemplate{page number in head/foot}[totalpagenumber] % 将页码添加回底部
\begin{document}
%% 不再使用
% \maketitle
%% 改为:
\begin{frame}
%% 如果你使用的是 maxplus 主题,取消下一行注释
% \vspace*{-0.5cm}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Test}
Test
\end{frame}
%% 不再使用
% \makebottom
%% 改为
\begin{frame}
\bottompage
\end{frame}
\end{document} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
大大,您好!
现在模板页码显示在导航栏的右侧,我想让它显示在底部栏最右端的“institute”位置上。同时注意到封面是没有底部栏的,那么如何才能实现封面在右下角显示“1/20”页码,接着第二页底部栏最右端显示页码“2/20”,其它页依次编号
Beta Was this translation helpful? Give feedback.
All reactions