更新 Linux 版本时出现问题

更新 Linux 版本时出现问题

西班牙语译文:

早上好。

我有几本用 Tex 制作的书(pdf 用 XeLaTeX 制作),在更新软件时遇到了问题。

目前我已经安装了 texlive-full + kile。使用的发行版是 Debian 7。我尝试升级到其他发行版,如 Ubuntu 及其衍生版,如 LinuxMint、KXStudio 等。迁移的结果始终相同:文档不会生成相同的 pdf。在 Debian 和 xBuntu/衍生版中执行的最小 tex 文件和 pdf 代理。

我使用 XeLaTeX 制作了 Kile 汇编 用镰刀去除镰刀

有人知道为什么会发生这种情况吗? 有解决办法吗?

未翻译的原文:

美好时光。

我找到了几本用 Tex 编写的书(pdf 用 xelatex 编写),我发现了一个更新我的软件的问题。

目前我已安装 texlive-full + kile。使用的发行版是 Debian 7。他打算在其所有发行版中更新其他发行版如 Ubuntu 以及其他衍生版如 LinuxMint、KXStudio 等。迁移的结果是始终如一:文档未生成相同的 pdf。附加最小的 tex 和 pdf 文件,这些文件是在 Debian 和 xBuntu/derivados 上制作的。

使用 Xelatex 进行 Kile 编译

为什么会发生这种情况?有什么解决方案?

文件 .tex:

\documentclass[a4paper,11pt]{book} % libro impreso
\usepackage[right=1.8cm,left=2.6cm,top=2.6cm,bottom=1.8cm,headsep=0.6cm,footskip=0cm]{geometry}
\usepackage{fontspec}
\usepackage{wrapfig} 
\usepackage[framemethod=TikZ]{mdframed} 
\usepackage{titlesec}

\setmainfont{Linux Libertine O}
\setlength{\headheight}{17pt}
\titleformat{\chapter}[display]
  {\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}
            {6dd} %espacio entre la leyenda del capitulo y el titulo del capitulo
            {\Huge}
\titlespacing*{\chapter}{0pt} %margen izquierdo del titulo
            {-20pt} %espacio antes de la leyenda capítulo
            {3cc} %espacio despues del titulo del capitulo
\setlength{\parindent}{1.5em} % entrada párrafo 1.5 cuadratines
\setlength{\parskip}{0pt plus 0pt minus 0pt} % separación entre párrafos
\linespread{1} % interlinea
\mdfdefinestyle{Marco}{%
    linecolor=black,
    outerlinewidth=0.25dd,
    roundcorner=6pt,
    innertopmargin=6dd,
    innerbottommargin=6dd,
    innerrightmargin=6dd,
    innerleftmargin=6dd,
    backgroundcolor=white}


\begin{document}

\chapter{Posiciones del paciente}

\section{Decúbito supino}

\noindent\begin{wrapfigure}[9]{l}[0mm]{54mm}
\vspace{-5mm}
\includegraphics[height=40mm, keepaspectratio]{imatges/4-1.png}
\end{wrapfigure}
\\ \\ \\ \\ \\ \\ \\ \\ 
\indent 


\section{Decúbito prono}

\noindent\begin{wrapfigure}[9]{l}[0mm]{54mm}
\vspace{-5mm}
\includegraphics[height=40mm, keepaspectratio]{imatges/4-2.png}
\end{wrapfigure}
\\ \\ \\ \\ \\ \\ \\ \\ 
\indent 


\section{Decúbito lateral}

\noindent\begin{wrapfigure}[9]{l}[0mm]{54mm}
\vspace{-5mm}
\includegraphics[height=40mm, keepaspectratio]{imatges/4-3.png}
\end{wrapfigure}
\\ \\ \\ \\ \\ \\ \\ \\ \\
\indent 


\begin{mdframed}[style=Marco]

\textbf{Zonas delicadas}

\vspace{1\baselineskip}

\begin{itemize}
\item \textit{Hueco poplíteo:} Situada en la región posterior de la rodilla

\item \textit{Triángulo de Scarpa:} Espacio triangular en la región de la ingle, cuyos lados están formados por el ligamento inguinal, músculo sartorio y el primer aductor.

\item \textit{Pliegue de codo:} Zona entre el brazo y el antebrazo (parte anterior).
\end{itemize}
\end{mdframed}

\newpage

\end{document}

Debian 7 中的 .pdf 结果: 使用 Debian 7 实现的版本

.pdf 在 xBuntu 中的结果为两页: 使用 xBuntu 实现的版本,第 1 页

使用 xBuntu 实现的版本,第 2 页

相关内容