如何在 Mac OS X 上使用 PDFlatex 排版的 LaTeX 文档中链接到本地​​文件?

如何在 Mac OS X 上使用 PDFlatex 排版的 LaTeX 文档中链接到本地​​文件?

\href{file://./path-to-file}{filename}当我尝试通过将其排版为远程链接的方式将指向本地文件的链接嵌入到 LaTeX 文档中时,sohttp://会被添加到前面。我如何链接到本地​​文件,并使用相对于生成的 PDF 位置的路径?

答案1

您应该能够将 URL 放在\url标签中:

\url{file://./path-to-file}

pdflatex我相信它会做正确的事情,所以它会在生成的 PDF 中显示为链接。您的计算机是否知道如何打开该文件是另一个问题。

答案2

您可以尝试使用\href{run:<file>}。例如:

\href{run:./myfile.png}{%

This is the link (Can be also a figure)

} 
  • myfile.png(或任何扩展名)放入与 .tex 文件相同的文件夹中。

答案3

我确信这是有效的:

The test plan is \href{run:test_plan.pdf}{here}.

其中文件 test_plan.pdf 与引用它的 latex 文件位于同一目录中。

答案4

你试过这个\include{}命令吗?比如\include{chapters/filename}你可以包含一个 .tex 文件。但不要把 .tex 写在命令中。StackExchange 网络中有一个页面,它只涉及 TeX。

我的基本 TeX 项目如下所示:

我的项目名称.tex

\input{header}
\begin{document}
\hyphenation{}          % Words where LaTex-hyphenation fails 
\maketitle          % Creates a page with the title
\newpage
%  \onehalfspacing              % This uses the package setspace
\tableofcontents        % This creates the table of contents
\include{chapter/acronym}   % Acronyms i use
\include{chapter/chapter_1}
% ...
\include{chapter/chapter_n}

\include{chapter/glossary}  % My glossary
\bibliography{bibliography/bibliography}  % Literature database
\end{document}

chapter_x.tex 如下所示:

\section[section short title]{section title}

我的 header.tex 如下所示:

%
% Document preamble
%
  \documentclass[  %
    12pt,          % default font size
    a4paper,       % papersize
    twoside,       % printout will be two sided
%    txt,           % 
    ]{article}

  \usepackage{ulem}          % all words have the underline at the same height \uline statt \underline

  \usepackage[     %
    T1             % T1 font has european sigs
    ]{fontenc}

  \usepackage[     %
    utf8           % Depends on the operating system
    ]{inputenc}    %

  \usepackage[     %
    dvips,         %
    usenames       % allows to use blue yellow etc for font colors
    ]{color}

  \usepackage{hyperref} % allows hyperlings in the table of contents

  \usepackage{amsmath} % math stuff
  \usepackage{amssymb}  % even more math stuff
  \usepackage{extpfeil}
  \usepackage[     % 
    style=long,   % 
%    toc=true,      % Boolean; if true the glossary will be shown in the table of contents
    hypertoc=true, % Hyperlinks in the glossary
    hyper=true,    % 
    number=none,   % 
    acronym=true   % 
    ]{glossary}
  \setacronymnamefmt{\gloshort}

  \usepackage{makeidx}
%  \usepackage{xymtexps}
%  \usepackage{cite} % Used for citing
  \usepackage{bibgerm}
  \usepackage[numbers,square]{natbib}
  \bibliographystyle{dinat}
  \usepackage{textcomp} % Allows to set a ° for example
  \usepackage[     % 
    german         % You may not need this *g*
    ]{babel}

  \usepackage{setspace} % allows to easily change the space between lines
  \usepackage{pstricks} % Used to create graphs
  \usepackage{pst-plot} % Used to create graphs

  \renewcommand{\acronymname}{Abkürzungsverzeichnis} % Sets the name for acronymepage (I'm from germany)
  \makeindex
  \makeacronym
  \makeglossary


  \author{Autor name}
  \title{Document title}
  \date{\copyright\ \today}

这个设置对我来说很好。

抱歉,文件评论中有错别字。我刚刚把我的评论从德语翻译过来,懒得去修改它们G

相关内容