乳胶中的大胆问题

乳胶中的大胆问题
\documentclass[a4paper,12pt]{report}

\usepackage[Sonny]{fncychap}
\usepackage{fullpage}
\usepackage{algorithm}
\usepackage{graphicx}
\usepackage[T1]{fontenc}
\usepackage[toc, page, header]{appendix} 
\usepackage{fontspec}

\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{mathptmx}% Times Roman font
\usepackage[scaled=.90]{helvet}% Helvetica, served as a model for arial
\usepackage{xcolor}
\usepackage{titlesec}

\titleformat{\chapter}
  {\normalfont\fontsize{16}{19}\sffamily\bfseries}
  {\thechapter}
  {1em}
  {}

\titleformat{\section}
  {\normalfont\fontsize{12}{17}\sffamily\bfseries}
  {\thesection}
  {1em}
  {}

\titleformat{\subsection}
  {\normalfont\fontsize{12}{17}\sffamily\bfseries\slshape}
  {\thesubsection}
  {1em}
  {}
\setmainfont{Times New Roman}
\bibliographystyle{plain}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\pagenumbering{roman}



\begin{document}
\newcounter{rom}


\input{tex/title}\newpage\thispagestyle{plain}

\addtocounter{rom}{1}\setcounter{page}{2}\newpage\thispagestyle{plain}\setcounter{page}{3}

\tableofcontents

\newpage\thispagestyle{plain}\clearpage\pagenumbering{arabic}

\input{tex/abstract}\newpage\cleardoublepage
\input{tex/acknowledgement}\newpage\cleardoublepage
\input{tex/introduction}\newpage\cleardoublepage
\input{tex/litrev}\newpage\cleardoublepage
\input{tex/conclusion}\newpage\cleardoublepage

\listoffigures
\listoftables

\bibliography{bib/Literature Review}\newpage\cleardoublepage

\end{document}

这是我在 latex 中使用的代码。但在 pdf 输出中,我的章节标题或部分或子部分标题不是粗体。问题是什么?如何使这些标题变粗体,尽管我使用的是 {\bfseries}?

答案1

不要混合使用包fontencfontspec!只使用其中一个!运行xelatexlualatex然后使用fontspec。如果运行pdflatex则使用fontenc:以下是的工作示例xelatex/lualatex

\documentclass[a4paper,12pt]{report}
\usepackage[scaled=.90]{helvet}% Helvetica, served as a model for arial
\usepackage{fontspec}
\setmainfont{Times New Roman}

\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{xcolor}
\usepackage{titlesec}
\titleformat{\chapter}
{\normalfont\fontsize{16}{19}\sffamily\bfseries}
{\thechapter}
{1em}
{}
\titleformat{\section}
{\normalfont\fontsize{12}{17}\sffamily\bfseries}
{\thesection}
{1em}
{}
\titleformat{\subsection}
{\normalfont\fontsize{12}{17}\sffamily\bfseries\slshape}
{\thesubsection}
{1em}
{}

\begin{document}
\section{A section title}   
foo bar baz

\end{document}

您可以使用 documentclass scrreprt,然后标题默认为粗体和无衬线。无​​需重新定义所有这些标题。

相关内容