如何保持文件和表格中的字體大小相同

如何保持文件和表格中的字體大小相同

我正在 acmart 中寫一篇論文(ACM SIGCOMM 提供的樣式)。報紙上幾乎沒有表格。但表格內的字體大小可變。有時它們很大有時很小。有什麼方法可以強制乳膠表中的字體大小保持固定嗎?

我在這裡添加了示例代碼。您可以在背面運行它。

\documentclass[sigconf]{acmart}

\usepackage{booktabs} % For formal tables \usepackage{amsmath} \usepackage{multirow}

% Copyright1 %\setcopyright{none} %\setcopyright{acmcopyright} %\setcopyright{acmlicensed} \setcopyright{rightsretained} %\setcopyright{usgov} %\setcopyright{usgovmixed} %\setcopyright{cagov} %\setcopyright{cagovmixed}

% DOI \acmDOI{10.475/123_4}

% ISBN \acmISBN{123-4567-24-567/08/06}

%Conference \acmConference[Conf Short Name]{Conference Full Name}{Month Year}{Venue} \acmYear{1997} \copyrightyear{2016}


\acmArticle{4} \acmPrice{15.00}

% These commands are optional %\acmBooktitle{Transactions of the ACM Woodstock conference} \editor{Jennifer B. Sartor} \editor{Theo D'Hondt} \editor{Wolfgang De Meuter}


\begin{document} \title{Test ACMART for table } \titlenote{Produces the permission block, and   copyright information} \subtitle{Extended Abstract} \subtitlenote{The full version of the author's guide is available as   \texttt{acmart.pdf} document}


\author{Author 1} \authornote{Dr.~Trovato insisted his name be first.} \orcid{1234-5678-9012} \affiliation{%   \institution{X X University}   \streetaddress{P.O. Box 1212}   \city{Kent}   \state{Ohio}   \postcode{44240} } \email{[email protected]}



% The default list of authors is too long for headers. \renewcommand{\shortauthors}{Das et al.}


\begin{abstract} This is a sample abstract for testing.   %===========================MAT comparison \begin{table}   \caption{My table}   \resizebox{\textwidth}{!}{ \begin{tabular}{llllll} \hline  &  & Header 1     & \multicolumn{1}{r}{\begin{tabular}[c]{@{}r@{}}Header\\ 7170\end{tabular}} & \begin{tabular}[c]{@{}l@{}}Agilio \\ Cx\end{tabular} & Header 3    \\ \hline
                                                                                   \multirow{6}{*}{\textbf{\begin{tabular}[c]{@{}l@{}}Static \\ Features\end{tabular}}} & 

\begin{tabular}[c]{@{}l@{}}Long column 1\\ Long column 1\\Long column 1\\Long column 1Long column\\ 1Long column 1\\ \end{tabular}      & \begin{tabular}[c]{@{}l@{}}col2\end{tabular}    & \multicolumn{1}{r}{\begin{tabular}[c]{@{}r@{}}All P4v16 data types.\\Bit,varbit, int,\\string, structure, enum.\\But no float\end{tabular}}   & \begin{tabular}[c]{@{}l@{}}NA\end{tabular}  & \begin{tabular}[c]{@{}l@{}}NA\end{tabular}     \\ \cline{2-6} 
    \\ \hline

\end{tabular} } \end{table} \end{abstract} \keywords{SDN, Data Plane, Programmable Switch Architecture} \maketitle \bibliographystyle{ACM-Reference-Format}

\end{document}

答案1

\documentclass{acmart}
\showoutput
\begin{document}


main text 

\begin{table}[h]
  \centering
  \begin{tabular}{ll}
    table & text
  \end{tabular}
  \caption{caption text}
  \label{tab:zz}
\end{table}
\end{document}

在此輸入影像描述

日誌顯示

.....\T1/LinuxLibertineT-TLF/m/n/9 m
...........\T1/LinuxLibertineT-TLF/m/n/9 t
.........\T1/LinuxBiolinumT-TLF/m/n/8 T

這是正文,表格是 9pt LinuxLibertine,標題是 8pt LinuxBiolinum

使用出版商​​類的唯一原因amsart是強制執行出版商的內部風格規則並剝奪作者的此類選擇,因此通常的建議是不要更改此類風格選擇。但是,如果您確實需要,可以將標題設為更大的字體,但請注意表格設定為與文件正文相同的尺寸。

標題設定(此處預設為小)取決於期刊選項,該類別使用諸如

\if@ACM@journal
  \captionsetup{labelfont={sf, small},
    textfont={sf, small}, margin=\z@}
  \captionsetup[figure]{name={Fig.}}
\else
 .....

相關內容