我遇到了一个问题,可能是我真的不明白字体在 latex 中是如何工作的。问题是我的标题页中有一个字体,而文件的其余部分中则有其他字体。我留下了代码的缩减。我删除了一些与字体无关的行。
为什么有两种字体?
\documentclass[12pt,twoside, spanish]{report} % Documento two sided
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage[libertine,cmintegrals,cmbraces,vvarbb]{newtxmath}
\usepackage[scaled=0.95]{inconsolata}
\usepackage{graphicx} % paquete para ver imagenes
\usepackage{titlesec}
\usepackage[pdftex,dvipsnames,svgnames,nonamebreak,table]{xcolor}
\usepackage{tikz} % si lo pongo antes de xcolor crashea
\title{Thesis Title}
\author{name}
\date{1 09 2020}
\begin{document}
\input{titlepage}
\chapter*{Resumen}
\input{resumen}
\tableofcontents
\chapter{Introduccion}
\input{chapters/Introduccion}
\end{document}
标题
\begin{titlepage}
\newgeometry{,width=140mm,top=32mm,bottom=30mm,bindingoffset=6mm}
\begin{tikzpicture}[remember picture,overlay,inner sep=0,outer sep=0]
\draw[frenchblue!100!black,line width=12pt] ([xshift=2.5cm,yshift=-3cm]current page.north west) coordinate(A)--([xshift=2.5cm,yshift=3cm]current page.south west) coordinate (B)--cycle;
\end{tikzpicture}
\vspace*{-1cm}
\Huge
\noindent\color{frenchblue}\textbf{blablabla }
\vspace{0.5cm}
\LARGE
%Tesis sub titulo
\vspace{1.5cm}
\color{black}
\textbf{blabla}
\vfill
\includegraphics[width=0.3\textwidth]{blabl}
\Large
\noindent blablabla
\vspace{0.8cm}
\large
Septiembre 2020
\end{titlepage}