我正在尝试弄清楚如何将“LaTeX University”加粗。我该怎么做?我现在所拥有的(即“\textbf{LaTeX University}”)由于某种原因无法与我使用的字体配合使用。EB 加拉蒙德。
\documentclass[10pt, a4paper]{article}
\usepackage{geometry}
\usepackage{setspace}
\usepackage{etoolbox}
\usepackage{textgreek}
\usepackage{ebgaramond}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{varwidth}
\geometry{margin=1.75in}
\title{{\Large{Curriculum Vitae}}}
\date{}
\author{}
\singlespacing
\begin{document}
\maketitle
\section*{\normalsize{Contact}}
\section*{\normalsize{Education}}
\begin{itemize}
\item \textbf{LaTeX University} \\
\vspace{-5mm}
\end{itemize}
\end{document}
答案1
字体EB Garamond
系列不提供大胆的或者加粗斜体字体。您需要切换到 Garalde(“Garamond-Aldus [Manutius]”的缩写)字体,该字体可以提供这些附加字体。
由于不知道您使用的是哪种操作系统和 TeX 发行版,因此很难给出明确的建议,除非您应该切换到 LuaLaTeX,以便可以使用系统字体。希望您的操作系统至少具有 Adobe Garamond Pro、Palatino 和 Junicode 之一。如果没有,我相信您一定能在系统上找到其他合适的 Garalde 字体。
关于您的代码的一些补充评论:(a)如果您想将标题(“简历”)加粗,请不要使用\title
-\maketitle
设备,因为它会将 的参数切换到正常(非粗体)字体粗细title
。(b)考虑使用sectsty
包并\normalsize
为所有节标题设置默认字体大小。
在旁边:大胆的和加粗斜体在 Aldus Manutius 和 Claude Garamond 的时代,字体还不存在。如果您想在使用 Garalde 字体时展现一些真正的(印刷!)精致,请考虑在编写文档时不要使用任何粗体技巧。
% !TEX TS-program = lualatex
\documentclass[10pt, a4paper]{article}
\usepackage{geometry}
\usepackage{varwidth}
\geometry{margin=1.75in}
\usepackage{setspace}
\singlespacing
\usepackage{sectsty}
\allsectionsfont{\normalsize}
\usepackage{ifluatex}
\ifluatex
\usepackage{fontspec}
%% Choose a suitable Garalde:
%\setmainfont{Adobe Garamond Pro}
%\setmainfont{Junicode}
\setmainfont{Palatino}
\else
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ebgaramond}
\usepackage{textgreek}
\fi
\begin{document}
\begin{center}
\Large\bfseries Curriculum Vitae
\end{center}
\section*{Contact}
\section*{Education}
\begin{itemize}
\item \textbf{LaTeX University}
\end{itemize}
\end{document}
答案2
\documentclass[10pt, a4paper]{article}
\usepackage{geometry}
\usepackage{setspace}
\usepackage{etoolbox}
\usepackage{textgreek}
% \usepackage{ebgaramond}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{varwidth}
\geometry{margin=1.75in}
\title{{\Large{Curriculum Vitae}}}
\date{}
\author{}
\singlespacing
\begin{document}
\maketitle
\section*{\normalsize{Contact}}
\section*{\normalsize{Education}}
\begin{itemize}
\item \textbf{LaTeX University} \\
\vspace{-5mm}
\end{itemize}
\end{document}