在投影机中定位 tdclock

在投影机中定位 tdclock

我只是想知道如何更改 Beamer 中计时器的位置。我试图将计时器定位在左下角。

我的代码如下:

\documentclass[xcolor=dvipsnames]{beamer}
\usepackage{graphbox}
\usepackage{beamerthemesplit}
\usepackage[absolute,overlay]{textpos}

\usepackage[orientation=landscape,size=custom,width=16,height=9,scale=0.5,debug]{beamerposter} 
\usepackage[font=Times, timeinterval=1, timeduration=15]{tdclock}\setbeamertemplate{background}{\hspace{.5em}\textcolor{white}{\tiny\bfseries\crono}}


\usetheme{Madrid}
\usecolortheme[named=Cyan]{structure}
\usepackage{tikz}

\title[Title Short]{Title Long}
\author{Job}
\date{March 29, 2017}
\AtBeginSubsection[]
{
  \begin{frame}<beamer>{Outline}
    \tableofcontents[currentsection,currentsubsection]
  \end{frame}
}

\begin{document}
\begin{frame}
 \initclock 
  \titlepage
\end{frame}
\begin{frame}{Outline}
  \tableofcontents
\end{frame}
\end{document}

答案1

快速破解:

\documentclass[xcolor=dvipsnames]{beamer}
\usepackage{graphbox}
\usepackage{beamerthemesplit}
\usepackage[absolute,overlay]{textpos}

\usepackage[orientation=landscape,size=custom,width=16,height=9,scale=0.5,debug]{beamerposter}
\usepackage[font=Times, timeinterval=1, timeduration=15]{tdclock}
\setbeamertemplate{background}{\rule{0em}{.99\paperheight}\hspace{.5em}{\color{white}\tiny\bfseries\crono}}

\usetheme{Madrid}
\usecolortheme[named=Cyan]{structure}
\usepackage{tikz}

\title[Title Short]{Title Long}
\author{Job}
\date{March 29, 2017}
\AtBeginSubsection[]
{
  \begin{frame}<beamer>{Outline}
    \tableofcontents[currentsection,currentsubsection]
  \end{frame}
}

\begin{document}
\begin{frame}
 \initclock 
  \titlepage
\end{frame}
\begin{frame}{Outline}
  \tableofcontents
\end{frame}
\end{document}

在此处输入图片描述

相关内容