Hf-tikz anh tikz 包

Hf-tikz anh tikz 包

我在使用这些软件包时遇到了一些问题;如果你们当中有人能帮助我,我将不胜感激。

这是我的代码:

\documentclass[ignorenonframetext,fleqn]{beamer}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{lxfonts}
\usepackage{amsmath,%amsfonts,amssymb} 
\usepackage{xcolor, colortbl}% <-----------------------
\usetheme{dresden}
\usepackage{etoolbox}

\usepackage[beamer,customcolors,shade]{hf-tikz}
\usepackage{ctable}% 
\listfiles
\tikzset{set fill color=red!30,set border color=red}
\begin{document}
\begin{frame}{\textcolor{white}{Overeducation and the GPG}}
Mincer wage equation: 
\begin{equation*}\notag
\ln{W_i}={{X_i}^{'}}\beta+\gamma{Overeducation}+\epsilon_i
\end{equation*}
Oaxaca-Blinder decomposition:
\begin{align*}
z+t&=\tikzmarkin<2>{a}{vshade}[x+y]\tikzmarkend{a}{vshade}\\ 
\end{align*}
\end{frame}
\begin{frame}
\begin{tikzpicture}
 \draw [->](-2,0) -- (2,0);
\filldraw [black] (0,0) circle (2pt) node[anchor=north] {May 20,2014};
 \end{tikzpicture} 
\end{frame}
\end{document}`

在第一张幻灯片中,我不明白为什么“阴影”选项不起作用。

相反,在第二张幻灯片中,我想在线上写一个数字,日期前应该是 0,日期后应该是 1。我希望数字从左向右移动,从 0 变为 1。

有人知道我该怎么做吗?非常感谢!:) Giulia

答案1

有几个错误。Dresden而不是dresden%之前的amsfonts\tikzmarkin只接受一个参数。

\documentclass[ignorenonframetext,fleqn]{beamer}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{lxfonts}
\usepackage{amsmath,amsfonts,amssymb} 
\usepackage{xcolor, colortbl}% <-----------------------
\usetheme{Dresden}
\usepackage{etoolbox}

\usepackage[beamer,customcolors,shade]{hf-tikz}
\usepackage{ctable}% 
\listfiles
\tikzset{set fill color=red!30,set border color=red}
\begin{document}
\begin{frame}{\textcolor{white}{Overeducation and the GPG}}
Mincer wage equation: 
\begin{equation*}\notag
\ln{W_i}={{X_i}^{'}}\beta+\gamma{Overeducation}+\epsilon_i
\end{equation*}
Oaxaca-Blinder decomposition:
\begin{align*}
 z+t&=\tikzmarkin<2>[top color=white, bottom color=blue!20]{a}
[x+y]\tikzmarkend{a}\\ 
\end{align*}
\end{frame}
\begin{frame}
\begin{tikzpicture}
\node (date) {May 20,2014};
\draw[->] ([xshift=-1cm,yshift=1mm]date.north west) --
([xshift=1cm,yshift=1mm]date.north east) coordinate[midway] (X);
\filldraw [black] (X) circle (2pt)  node[above]{some number};
 \end{tikzpicture} 
\end{frame}
\end{document}

在此处输入图片描述

在此处输入图片描述

相关内容