pdfLaTeX 从同一文件产生不同的输出

pdfLaTeX 从同一文件产生不同的输出

我正在使用 LaTeX 写报告,但有些事情让我很困惑。我正在使用 TeXShop,编译后生成的输出有时会发生变化。

让我展示一些截图

  • 在这里你可以看到所需的输出 普通文本

  • 但有时输出看起来像这样,带有奇怪的字体 异常文本

  • 对于公式来说也是一样,所需的输出是 正常公式

  • 但有时它看起来更像这样 不正常的公式

至关重要的是,.tex所有前面的示例的源文件完全相同。

pdfTeX 怎么可能产生不同的输出?我在源文件中做错了什么吗?是我的 TeX 发行版有问题还是我的电脑有问题?


这是我的.tex文件,以防万一其中有明显的东西:

\documentclass[10pt]{report}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}

\usepackage{amsmath}
\numberwithin{equation}{chapter}
\usepackage{bbold}%necessaire pour le caractere 1 qui represente l'identite matricielle
\usepackage{tikz}

\addto\captionsenglish{\renewcommand{\chaptername}{Part}}

\usepackage{titlesec}%modification de la gueule des sections,etc

\titleformat{\chapter}[display]
{\Huge\normalfont\filcenter\scshape\bfseries\sffamily}
{\rule[0pt]{1cm}{1cm}\hfill\thechapter
%\vspace{1pt}
\hrule}
{-25pt}
{}
\titleformat{\section}[hang]
{\large\normalfont\scshape\bfseries}
{\thesection}
{1em}%10pt
{}
\titleformat{\subsection}[hang]
{\normalfont\scshape\bfseries}
{\thesubsection}
{1em}%5pt
{}
\titleformat{\subsubsection}[runin]
{\normalsize\normalfont\scshape}
{}
{1em}
{\rule{5pt}{5pt}\quad}

\bibliographystyle{plain}

\usepackage{geometry}
\geometry{a4paper}

%macros definition
\newcommand\com[2]{\left[#1,#2 \right]}
\newcommand\abs[1]{\left|#1 \right|}
\newcommand\mean[1]{\left\langle #1\right\rangle}
\newcommand\dd[2]{\frac{\mathrm{d}#1}{\mathrm{d}#2}}
\newcommand\ddd[2]{\frac{\mathrm{d}^2#1}{\mathrm{d}#2^2}}
\newcommand\pdd[2]{\frac{\partial#1}{\partial#2}}
\newcommand\pddd[2]{\frac{\partial^2#1}{\partial#2^2}}
\newcommand\cc{\mathrm c . \mathrm c .}
\newcommand\hc{\mathrm h . \mathrm c .}
\newcommand\myvec[2]{\left(\begin{array}{c}#1\\#2\end{array}\right)}
\newcommand\mymat[4]{\left(\begin{array}{cc} #1 & #2\\ #3 & #4\end{array} \right)}
\newcommand\sign{\operatorname{sign}}
\newcommand\Cin{\operatorname{Cin}}

\begin{document}

编译器:

This is pdfTeX, Version 3.1415926-2.3-1.40.12 (TeX Live 2011)

相关内容