Как сохранить одинаковый размер шрифта в документе и таблице

Как сохранить одинаковый размер шрифта в документе и таблице

Я пишу статью в формате acmart (стиль, предоставленный ACM SIGCOMM). В статье мало таблиц. Но шрифт внутри таблиц имеет переменный размер. Иногда они большие, иногда маленькие. Есть ли способ заставить размер шрифта оставаться фиксированным в таблице latex?

Я добавил пример кода здесь. Вы можете запустить его на обороте.

\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
 .....

Связанный контент