我正在使用给出的例子这里设置表格环境中文本的字体类型
\begin{column}{\colwidth}
\begin{exampleblock}{}
\vspace{1cm}
\resizebox{\textwidth}{!}{%
\begin{tabular}{|a|c|c|c|c|c| }
\hline
\rowcolor{LightCyan}
{\fontfamily{bch}\selectfont
Name & H&R&M&O\\
\hline
Pancake&-&-&-&-\\
}
\hline
\end{tabular}
}
\end{exampleblock}
\end{column}
完整文件已发布这里
但是,当我使用\fontfamily{bch}\selectfont
上面的代码时,只有第一个条目的字体类型会发生变化Name
。其余条目的字体类型不会改变。
有人可以建议如何为我的完整文档设置单一字体类型(包括表格和文本)吗?
编辑:完整代码
% Gemini theme
% https://github.com/anishathalye/gemini
%
% We try to keep this Overleaf template in sync with the canonical source on
% GitHub, but it's recommended that you obtain the template directly from
% GitHub to ensure that you are using the latest version.
\documentclass[final,xcolor=x11names,compress,dvipsnames]{beamer}
% ====================
% Packages
% ====================
\usepackage[T1]{fontenc}
%==============================
\usepackage{mathptmx}
\usepackage{tgbonum}
%==============================
\usepackage[size=custom,width=118,height=146,scale=1.0]{beamerposter}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{blkarray}
\usepackage{xcolor}
\usepackage{amsmath}
\usepackage{natbib}
\usepackage{bibentry}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{physics}
\usepackage{tikz-cd}
\usepackage[edges]{forest}
\usepackage{bbding}
\usepackage{pifont}
\usepackage{wasysym}
\usepackage{amssymb}
\colorlet{ProcessBlue}{blue!50!cyan}
\newlength{\sepwidth}
\newlength{\colwidth}
\setlength{\sepwidth}{0.04\paperwidth}
\setlength{\colwidth}{0.44\paperwidth}
\newcommand{\separatorcolumn}{\begin{column}{\sepwidth}\end{column}}
\title{Title}
\author{--}
\institute{---} % Institution(s)
% ====================
% Body
% ====================
\begin{document}
%=====================
%======================
\begin{frame}[t]
\begin{block}{A block}
\end{block}
\begin{columns}[t]
\separatorcolumn
\begin{column}{\colwidth}
\begin{exampleblock}{}
\vspace{1cm}
\resizebox{\textwidth}{!}{%
\begin{tabular}{|a|c|c|c|c|c| }
\hline
{\fontfamily{bch}\selectfont
Name & H&R&M&O\\
\hline
Pancake&-&-&-&-\\
}
\hline
\end{tabular}
}
\end{exampleblock}
\end{column}
\separatorcolumn
\end{columns}
\end{frame}
\end{document}
答案1
每个单元格都是一个文本组,如果需要将字体更改应用于整个表格,则将字体更改放在表格之前。