I hope this is not out of scope of tex.sx: I use the version 2.46 of TeXShop (with Lion) and I recently started structuring my document in various scripts linking them to the main .tex file with the header %!TEX root = ./main.tex.
This works fine except that whenever opening one such "subfile", TeXShop also opens and then minimizes the main.tex file.
To make things clearer, here's a simple example.
File main.tex
\documentclass[a4paper,11pt,twopage,openright]{book}
\begin{document}
\vspace*{\fill}
\begin{center}
This is the main document.
\end{center}
\vfill
\include{chap-tools}
\end{document}
File chap-tools.tex
%!TEX root = ./main.tex
\chapter{Tools}
Some text.
Now say that everything is closed and that I open the file chap-tools.tex then Texshop will also open and minimize the file main.tex. (it also happens on other, yet similar, situations)
It might seem stupid but it drives me crazy!
I was wondering if other users had encountered the same problem and whether they had found a workaround (I tried my luck in the preference pane of Texshop but in vain...).
Thanks a lot!
:)– tibL Jun 4 '12 at 15:35