独立输出目录

独立输出目录

我将其配置TexStudio为使用名为“build”的临时文件目录。

当我编译独立文档时,除 和 之外的所有文件pdfsynctex.gz位于“build”文件夹中。当我编译主文档时,主文档的所有临时文件都位于 build 文件夹中,但独立文件会使我的基本目录变得混乱。

有没有什么办法可以防止这种情况发生?

为了清楚起见,文件夹结构如下所示:

  • 基本文件夹/
    • 文档.tex
    • 独立版.tex
    • 建造/

编译后如下所示:

  • 基本文件夹/
    • 文档.tex
    • 独立版.tex
    • 文档.pdf
    • 独立版.pdf
    • 文档.synctex.gz
    • 独立.aux
    • 独立日志
    • 独立.aux
    • 建造/
      • 文档.aux
      • 檔案.log
      • 文档.auxlock

文档内容:

\documentclass{article}
\usepackage{standalone}
\standaloneconfig{mode=buildnew}
\usepackage{tikz,pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
    this is a Document.
\begin{figure}[!hbt]
    \centering
    \includestandalone{Standalone}
    \caption{The caption text}\label{fig:abc}
\end{figure}
\end{document}

独立版包含:

\documentclass[convert=false]{standalone}
\usepackage{tikz}
\usepackage{pgfplots} 
\begin{document}    
\begin{tikzpicture}
\begin{axis}
\addplot[blue, mark=x] coordinates {(0,0)
    (1,2)(2,3)
    (3,4)(4,6)
    (5,11)(6,20)
    (7,15)(8,12)
    (9,8)(10,7)
    (11,3)(12,0)};
\label{axis1}
\end{axis}
%
\end{tikzpicture}
\end{document}

相关内容