<div dir="ltr">I've followed the instructions in the error message and installed <span style="font-size:13px">File::HomeDir. Latexindent now works, but despite the image of comprehensiveness the documentation seems to provide, it seems to lack some features of the previous version of latex tidy. Is there anyway to get the previous version back?</span><div><span style="font-size:13px"><br></span></div><div>Although latexindent nicely formats align environments and matrices, some of the automation available in the previous version of latex tidy seems to have been lost.</div><div><br></div><div>For example, consider the following:</div><div><br></div><div><div>\begin{lem}</div><div><span class="" style="white-space:pre">        </span>\label{1.19:lem1}</div><div><span class="" style="white-space:pre">  </span>\[ \left\{ </div><div><span class="" style="white-space:pre">       </span>\begin{matrix}</div><div><span class="" style="white-space:pre">             </span>p \in \al\\</div><div><span class="" style="white-space:pre">                </span>q \notin \al </div><div><span class="" style="white-space:pre">     </span>\end{matrix}</div><div><span class="" style="white-space:pre">       </span>\right\}\implies p < q.\]</div><div>\end{lem}</div></div><div><br></div><div>which was indented by latex tidy. Latexindent now indents this as:</div><div><br></div><div><div>\begin{lem}\label{1.19:lem1} </div><div><span class="" style="white-space:pre">        </span>\[ \left\{ <span class="" style="white-space:pre">               </span></div><div><span class="" style="white-space:pre">           </span>\begin{matrix}</div><div><span class="" style="white-space:pre">                     </span>p \in \al    \\</div><div><span class="" style="white-space:pre">                  </span>q \notin \al </div><div><span class="" style="white-space:pre">             </span>\end{matrix}</div><div><span class="" style="white-space:pre">               </span>\right\} </div><div><span class="" style="white-space:pre">         </span>\implies p < q.\]</div><div><span class="" style="white-space:pre">               </span>\end{lem}</div></div><div><br></div><div>If I move the last \] to the next line, latexindent indents this as</div><div><br></div><div><div>\begin{lem}\label{1.19:lem1} </div><div><span class="" style="white-space:pre">  </span>\[ \left\{ <span class="" style="white-space:pre">               </span></div><div><span class="" style="white-space:pre">           </span>\begin{matrix}</div><div><span class="" style="white-space:pre">                     </span>p \in \al    \\</div><div><span class="" style="white-space:pre">                  </span>q \notin \al </div><div><span class="" style="white-space:pre">             </span>\end{matrix}</div><div><span class="" style="white-space:pre">               </span>\right\} </div><div><span class="" style="white-space:pre">         </span>\implies p < q.</div><div><span class="" style="white-space:pre"> </span>\]</div><div>\end{lem}</div></div><div><br></div><div>which looks better, but means that I now have to format my files according to latexindent's rules for it to work correctly. Somehow, this seems to defeat the purpose of an automatic text formatter. The pattern in the example is repeated often in documents of mine thousands of lines long and so, when this behavior of latexindent cascades, it causes lines that should not be indented, to be indented. For example, the following was formatted by latexindent:</div><div><br></div><div><div>\begin{lem}\label{xyz} </div><div><span class="" style="white-space:pre">     </span>\[ \left\{ <span class="" style="white-space:pre">               </span></div><div><span class="" style="white-space:pre">           </span>\begin{matrix}</div><div><span class="" style="white-space:pre">                     </span>p \in \al    \\</div><div><span class="" style="white-space:pre">                  </span>q \notin \al </div><div><span class="" style="white-space:pre">             </span>\end{matrix}</div><div><span class="" style="white-space:pre">               </span>\right\} </div><div><span class="" style="white-space:pre">         </span>\implies p < q.\]</div><div><span class="" style="white-space:pre">               </span>\end{lem}</div><div><span class="" style="white-space:pre">          </span></div><div><span class="" style="white-space:pre">           T</span>his text should be at the beginning of the line.</div><div><span class="" style="white-space:pre">          </span></div><div><span class="" style="white-space:pre">           </span>\begin{lem}\label{xyz} </div><div><span class="" style="white-space:pre">                   </span>\[ \left\{ <span class="" style="white-space:pre">               </span></div><div><span class="" style="white-space:pre">                           </span>\begin{matrix}</div><div><span class="" style="white-space:pre">                                     </span>p \in \al    \\</div><div><span class="" style="white-space:pre">                                  </span>q \notin \al </div><div><span class="" style="white-space:pre">                             </span>\end{matrix}</div><div><span class="" style="white-space:pre">                               </span>\right\} </div><div><span class="" style="white-space:pre">                         </span>\implies p < q.\]</div><div><span class="" style="white-space:pre">                               </span>\end{lem}</div></div><div><br></div><div>Latex tidy would have had no problem with this. The documents of mine tend to consist of environments nested several levels deep, (which is why latex tidy is important to me) and now the test copy on which I tried latexindent has text indented off the screen. Other examples of unexpected behavior, which might not be a complete list... :</div><div><br></div><div>after \documentclass{...} latexindent does not adjust indentation, and so</div><div><br></div><div>\documentclass{article}</div><div><br></div><div>\usepackage{...}</div><div><br></div><div>     \usepackage{...}</div><div><br></div><div>            \usepackage{...}</div><div><br></div><div>is left untouched. Latex tidy would have brought them to the beginning of the line.</div><div><br></div><div>Latexindent does not seem to put text inside \[ \] on a separate line, whereas latex tidy did, and so,</div><div><br></div><div>asdadfa \[ sdfada \] asdfasdfa</div><div><br></div><div>would have been changed to</div><div><br></div><div>asdadfa</div><div>\[ sdfada \]<br></div><div>asdfasdfa<br></div><div><br></div><div>Latexindent leaves it unchanged.</div><div><br></div><div>It is the same with environments:</div><div><br></div><div>\begin{abc} jkl \end{abc}</div><div><br></div><div>would have been changed to</div><div><br></div><div>\begin{abc}</div><div>   this text would be indented.</div><div>\end{abc}<br></div><div><br></div><div>but latexindent leaves it untouched. </div><div><br></div><div>It also doesn't compress multiple blank lines. In summary, latex tidy could take almost any mess I typed and put it in the right place.</div><div><br></div><div>Would it be possible for the old latex tidy to be re-added to the bundle alongside latexindent? Or would it be possible to configure latexindent to mimic certain features of latextidy?</div><div><br></div><div>Anthony</div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Feb 11, 2015 at 1:45 PM, Anthony V. Pulido <span dir="ltr"><<a href="mailto:anthony.pulido@gmail.com" target="_blank">anthony.pulido@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hello René and Allan,<div><br></div><div>Thank you very much for your messages. I am using MacTeX 2014, and just before I performed the procedure you outlined, I updated using texlive (which usually works for me!). Your procedure worked without returning the pmatrix error, but now when I invoke tidy I receive this message:</div><div><br></div><div><div>Can't locate File/HomeDir.pm in @INC (you may need to install the File::HomeDir module) (@INC contains: /Library/Perl/5.18/darwin-thread-multi-2level /Library/Perl/5.18 /Network/Library/Perl/5.18/darwin-thread-multi-2level /Network/Library/Perl/5.18 /Library/Perl/Updates/5.18.2/darwin-thread-multi-2level /Library/Perl/Updates/5.18.2 /System/Library/Perl/5.18/darwin-thread-multi-2level /System/Library/Perl/5.18 /System/Library/Perl/Extras/5.18/darwin-thread-multi-2level /System/Library/Perl/Extras/5.18 .) at /usr/texbin/latexindent line 40.</div><div>BEGIN failed--compilation aborted at /usr/texbin/latexindent line 40.</div></div><div><br></div><div>Concerning the mtpro2 fonts, I tried it, and I found that for some reason, it will not give that error when used independently, but not together with the times font package. And so, in the preamble:</div><div><br></div><div><div>\pdfmapfile{=mtpro2.map}</div><div>\usepackage[mtphrb,subscriptcorrection]{mtpro2}  % [lite] works, too. (I've bought the fonts.)</div><div><br></div><div>works but </div><div><br></div><div>\usepackage{times}</div></div><div><br></div><div><div>\pdfmapfile{=mtpro2.map}</div><div>\usepackage[mtphrb,subscriptcorrection]{mtpro2}</div></div><div><br></div><div>will not work.</div><div><br></div><div>Just in case, this also does not work:</div><div><br></div><div><div><br></div><div><div>\pdfmapfile{=mtpro2.map}</div><div>\usepackage[mtphrb,subscriptcorrection]{mtpro2}</div></div></div><div><br></div><div><div>\usepackage{times}</div></div><div><br></div><div>Finally, using just</div><div><br></div><div>\usepackage{times}</div><div><br></div><div>works.</div><div><br></div><div>I just tried something else and I am now wondering if this a problem with one of my files. I don't think I changed it in a strange way yesterday, but it's possible I did...</div><div><br></div><div>I commented one of the \include{}'s and it worked. When it is not commented, I receive the following error in the console at the end (In addition to "Command returned status code 1.").</div><div><br></div><div><span style="color:rgb(0,0,0);font-family:'Trebuchet MS',Helvetica,sans-serif;font-size:13px;background-color:rgb(240,240,240)">Traceback (most recent call last): File "/Users/Anthony/Library/Application Support/TextMate/Managed/Bundles/LaTeX.tmbundle/Support/bin/texmate.py", line 1061, in </span>status = run_latex(command, filename, cache_filename, verbose) File "/Users/Anthony/Library/Application Support/TextMate/Managed/Bundles/LaTeX.tmbundle/Support/bin/texmate.py", line 224, in run_latex fatal, errors, warnings = lp.parse_stream() File "/Users/Anthony/Library/Application Support/TextMate/Managed/Bundles/LaTeX.tmbundle/Support/lib/parsing.py", line 603, in parse_stream return super(LaTexParser, self).parse_stream() File "/Users/Anthony/Library/Application Support/TextMate/Managed/Bundles/LaTeX.tmbundle/Support/lib/parsing.py", line 187, in parse_stream line = self.get_rewrapped_line() File "/Users/Anthony/Library/Application Support/TextMate/Managed/Bundles/LaTeX.tmbundle/Support/lib/parsing.py", line 135, in get_rewrapped_line statement += line.rstrip('\n') UnicodeDecodeError: 'utf8' codec can't decode byte 0xa4 in position 1: invalid start byte<br></div><div><br></div><div>I don't think it is a problem with the latex syntax, since the file seems to work in the modes described above. <span style="color:rgb(0,0,0);font-family:'Trebuchet MS',Helvetica,sans-serif">Any ideas?</span></div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Anthony</div><div><br></div><div><br></div></font></span></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Feb 11, 2015 at 9:35 AM, René Schwaiger <span dir="ltr"><<a href="mailto:sanssecours@f-m.fm" target="_blank">sanssecours@f-m.fm</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Allan,<br>
<span><br>
> On 11 Feb 2015, at 14:41 , Allan Odgaard <<a href="mailto:mailinglist@textmate.org" target="_blank">mailinglist@textmate.org</a>> wrote:<br>
><br>
> On 11 Feb 2015, at 20:01, René Schwaiger wrote:<br>
><br>
</span><span>>> I would like to remove the library code from the bundle sometimes in the future tough. Is there a nice way to install external dependencies via TextMate? […]<br>
><br>
> There is not, and I also question the wisdom of doing that.<br>
><br>
> If you install something on the user’s system, there is a good chance that a) they will never update it and b) they will not know how to uninstall it (should they later not want the thing that installed it). And installing things globally can cause conflicts.<br>
<br>
</span>I guess you are right. I will keep the current system for now.<br>
<span><br>
> So I definitely recommend having the non-standard dependencies isolated in the bundle. Of course if there is a chance that the user is a CPAN user who is on top of updating their libraries, one could prefer to look for the library in the standard system path, before using the bundled version.<br>
<br>
</span>Unfortunately $PERL5LIB is prepended to the library path. A quick search did not show an easy way to append a directory to the Perl search path in a shell script. So I will leave it as it is for now, unless somebody provides a good reason why we should prefer the systems `YAML::Tiny` version over the one shipped with the bundle.<br>
<br>
Kind regards,<br>
  René<br>
<div><div><br>
_______________________________________________<br>
textmate mailing list<br>
<a href="mailto:textmate@lists.macromates.com" target="_blank">textmate@lists.macromates.com</a><br>
<a href="http://lists.macromates.com/listinfo/textmate" target="_blank">http://lists.macromates.com/listinfo/textmate</a></div></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>