<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Revision control for LaTeX: in search of an answer</title>
	<atom:link href="http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/</link>
	<description>A survival guide for the 21st century researcher</description>
	<lastBuildDate>Sun, 14 Mar 2010 19:14:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Uwe Brauer</title>
		<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/comment-page-1/#comment-112460</link>
		<dc:creator>Uwe Brauer</dc:creator>
		<pubDate>Mon, 08 Mar 2010 22:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.academicproductivity.com/?p=317#comment-112460</guid>
		<description>I just checked. No documentation and as far as I can see you have to insert your changes with \change comments etc.
Does  not look to comfortable  I have not checked the 
python scripts though. But my first impression is latex diff is better....if it could only merge......</description>
		<content:encoded><![CDATA[<p>I just checked. No documentation and as far as I can see you have to insert your changes with \change comments etc.<br />
Does  not look to comfortable  I have not checked the<br />
python scripts though. But my first impression is latex diff is better&#8230;.if it could only merge&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/comment-page-1/#comment-112370</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Mon, 08 Mar 2010 12:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.academicproductivity.com/?p=317#comment-112370</guid>
		<description>there is the trackchanges.sty at sourceforge:
http://sourceforge.net/projects/trackchanges/
but I am having some bugs and conflicts. It seems to be a very promising tool for further development, though. Anyone willing to do this?</description>
		<content:encoded><![CDATA[<p>there is the trackchanges.sty at sourceforge:<br />
<a href="http://sourceforge.net/projects/trackchanges/" rel="nofollow">http://sourceforge.net/projects/trackchanges/</a><br />
but I am having some bugs and conflicts. It seems to be a very promising tool for further development, though. Anyone willing to do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andres</title>
		<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/comment-page-1/#comment-102848</link>
		<dc:creator>Andres</dc:creator>
		<pubDate>Mon, 04 Jan 2010 11:14:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.academicproductivity.com/?p=317#comment-102848</guid>
		<description>How about google wave? would be nice to have bot that would do the editing, version control seems pretty easy.</description>
		<content:encoded><![CDATA[<p>How about google wave? would be nice to have bot that would do the editing, version control seems pretty easy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: File diff round-up</title>
		<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/comment-page-1/#comment-99870</link>
		<dc:creator>File diff round-up</dc:creator>
		<pubDate>Mon, 14 Dec 2009 23:17:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.academicproductivity.com/?p=317#comment-99870</guid>
		<description>[...] on Debian Science List Discussion on Ask Slashdot Discussion on Academic Productivity ScribTex &#8212; a online collaborative wiki-like LaTeX [...]</description>
		<content:encoded><![CDATA[<p>[...] on Debian Science List Discussion on Ask Slashdot Discussion on Academic Productivity ScribTex &#8212; a online collaborative wiki-like LaTeX [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duke</title>
		<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/comment-page-1/#comment-97578</link>
		<dc:creator>Duke</dc:creator>
		<pubDate>Tue, 01 Dec 2009 08:21:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.academicproductivity.com/?p=317#comment-97578</guid>
		<description>As far as I am concerned, I prefer git to CVS or SVN, since it works well on a disconnected laptop, and does not try to contact a remote server at every commit.
But it&#039;s OK, any versioning system is OK and does almost the same thing.
What is mainly important is:
+ have a Makefile, that builds the latex document
+ fix the file and directory structure of your document, so that everyone ends editing the same files, and does not add or remove some during the collaborative process, I mean, it is OK and better if only one person is responsible for this structure

Then just commit around, and for the diffs, you can use your source diff, and for a more clear view of the real changes, I found something called latexdiff (google for it), and just wrapped it with a small shell script to generate a document tree with a diff from 2 git tags (or checksums).
This way I have a tree with every diff latex file (generated with latexdiff from the 2 versions I want), and I just have to type &quot;make&quot;, to generate a pdf file that shows the diffs (you can even choose how old removed text is displayed as well as the new one).
This works because of the 2 previous points.

I developed this just to show some colleagues that latex is still better than word.
I am looking to adapt this to latex and git plugins in eclipse, since it can be a good approach to this issues (I don&#039;t believe in the LyX way).</description>
		<content:encoded><![CDATA[<p>As far as I am concerned, I prefer git to CVS or SVN, since it works well on a disconnected laptop, and does not try to contact a remote server at every commit.<br />
But it&#8217;s OK, any versioning system is OK and does almost the same thing.<br />
What is mainly important is:<br />
+ have a Makefile, that builds the latex document<br />
+ fix the file and directory structure of your document, so that everyone ends editing the same files, and does not add or remove some during the collaborative process, I mean, it is OK and better if only one person is responsible for this structure</p>
<p>Then just commit around, and for the diffs, you can use your source diff, and for a more clear view of the real changes, I found something called latexdiff (google for it), and just wrapped it with a small shell script to generate a document tree with a diff from 2 git tags (or checksums).<br />
This way I have a tree with every diff latex file (generated with latexdiff from the 2 versions I want), and I just have to type &#8220;make&#8221;, to generate a pdf file that shows the diffs (you can even choose how old removed text is displayed as well as the new one).<br />
This works because of the 2 previous points.</p>
<p>I developed this just to show some colleagues that latex is still better than word.<br />
I am looking to adapt this to latex and git plugins in eclipse, since it can be a good approach to this issues (I don&#8217;t believe in the LyX way).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jose</title>
		<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/comment-page-1/#comment-77004</link>
		<dc:creator>Jose</dc:creator>
		<pubDate>Sat, 08 Aug 2009 15:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.academicproductivity.com/?p=317#comment-77004</guid>
		<description>LyX did it for me. Excellent application.</description>
		<content:encoded><![CDATA[<p>LyX did it for me. Excellent application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mica</title>
		<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/comment-page-1/#comment-70174</link>
		<dc:creator>Mica</dc:creator>
		<pubDate>Thu, 25 Jun 2009 00:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.academicproductivity.com/?p=317#comment-70174</guid>
		<description>I might be a little late on this, but GIT now comes with a graphical front end in perl/tk. I run it on windows at work, at home on my mac &amp; linux boxes. it&#039;s called gitk and git gui. it comes with the git bundle... as far as your stubborn collaborators, in the gui they would only have to click the &quot;commit&quot; button, then select &quot;push&quot; from one of the drop down menus. pretty simple :P</description>
		<content:encoded><![CDATA[<p>I might be a little late on this, but GIT now comes with a graphical front end in perl/tk. I run it on windows at work, at home on my mac &amp; linux boxes. it&#8217;s called gitk and git gui. it comes with the git bundle&#8230; as far as your stubborn collaborators, in the gui they would only have to click the &#8220;commit&#8221; button, then select &#8220;push&#8221; from one of the drop down menus. pretty simple <img src='http://www.academicproductivity.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uwe Brauer</title>
		<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/comment-page-1/#comment-61581</link>
		<dc:creator>Uwe Brauer</dc:creator>
		<pubDate>Tue, 28 Apr 2009 18:10:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.academicproductivity.com/?p=317#comment-61581</guid>
		<description>Well but you cannot *merge* with latexdiff! with ediff you can!
well with meld as well but this is not wordwise.

I have not checked the latexdiff manual very carefully but I got the impression that latexdiff cannot deal with 3 files, but 
you might want to contact the author of that package.

I did that several times and his responds have been fast usually.

Uwe</description>
		<content:encoded><![CDATA[<p>Well but you cannot *merge* with latexdiff! with ediff you can!<br />
well with meld as well but this is not wordwise.</p>
<p>I have not checked the latexdiff manual very carefully but I got the impression that latexdiff cannot deal with 3 files, but<br />
you might want to contact the author of that package.</p>
<p>I did that several times and his responds have been fast usually.</p>
<p>Uwe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leonardo Rolla</title>
		<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/comment-page-1/#comment-61572</link>
		<dc:creator>Leonardo Rolla</dc:creator>
		<pubDate>Tue, 28 Apr 2009 16:40:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.academicproductivity.com/?p=317#comment-61572</guid>
		<description>Thanks, Uwe.

But for 2 files we already have latexdiff.

What would be really nice is latexdiff3 and wordwise ediff3

About the script for &quot;Step 1&quot;, do you know anything like that?</description>
		<content:encoded><![CDATA[<p>Thanks, Uwe.</p>
<p>But for 2 files we already have latexdiff.</p>
<p>What would be really nice is latexdiff3 and wordwise ediff3</p>
<p>About the script for &#8220;Step 1&#8243;, do you know anything like that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uwe Brauer</title>
		<link>http://www.academicproductivity.com/2008/revision-control-for-latex-in-search-of-an-answer/comment-page-1/#comment-61563</link>
		<dc:creator>Uwe Brauer</dc:creator>
		<pubDate>Tue, 28 Apr 2009 15:44:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.academicproductivity.com/?p=317#comment-61563</guid>
		<description>Well have you tried ediff-regions-wordwise 
in (X)emacs?
That comes quite 
close to what you are looking for, but only works for 2 files.

Uwe Brauer</description>
		<content:encoded><![CDATA[<p>Well have you tried ediff-regions-wordwise<br />
in (X)emacs?<br />
That comes quite<br />
close to what you are looking for, but only works for 2 files.</p>
<p>Uwe Brauer</p>
]]></content:encoded>
	</item>
</channel>
</rss>
