
Моя цель — использовать слева шрифт PCR, а справа — обычный шрифт (например, шрифт ssfamily). Возможно ли это без использования XeTeX? Если вы спросите себя, зачем это нужно, я хочу, чтобы слева (команды/функции) справа было описание, без обязательного использования \texttt{}
.
\documentclass[a4paper]{article}
\usepackage{tabularx} % in the preamble
\usepackage[a4paper, top=3cm, bottom=3cm, left=3cm, right=3cm, marginparwidth=2cm, headsep=1.2cm]{geometry} % layout
\begin{document}
% ....
\begin{table}[ht!]
\fontfamily{pcr}\selectfont
\begin{tabularx}{\textwidth}{X X}
\textbf{Function} & \textbf{Meaning} \\
\hline
asdf & ATFD is more than a few\\
Class that is large and complex & WMC is high\\
Class that has a lot of methods that only operate on a proper subset of the instance variable set & TCC is low\\
\end{tabularx}
\end{table}
\end{document}
решение1
Это работает безупречно.
\documentclass[a4paper]{article}
\usepackage{tabularx} % in the preamble
\usepackage[a4paper, top=3cm, bottom=3cm, left=3cm, right=3cm, marginparwidth=2cm, headsep=1.2cm]{geometry} % layout
\begin{document}
% ....
\begin{table}[ht!]
\begin{tabularx}{\textwidth}{>{\ttfamily}X X}
\textbf{Function} & \textbf{Meaning} \\
\hline
asdf & ATFD is more than a few\\
Class that is large and complex & WMC is high\\
Class that has a lot of methods that only operate on a proper subset of the instance variable set & TCC is low\\
\end{tabularx}
\end{table}
\end{document}