Simplified w2l.bat
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@87 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
parent
559293a169
commit
84758bc2ad
4 changed files with 6 additions and 11 deletions
|
@ -2,6 +2,8 @@ Changelog for Writer2LaTeX version 1.0 -> 1.2
|
|||
|
||||
---------- version 1.1.6 ----------
|
||||
|
||||
[all] Changed w2l.bat to use %~dp0 as suggested by Dave Jarvis (this leaves out any (probably none) win 9x users)
|
||||
|
||||
[w2l] Clarified that BibTeX-Writer2LaTeX.js uses GPLv3 license
|
||||
|
||||
[w2l] New option include_original_citations (default false). If set to true the original Zotero or JabRef citation text will be
|
||||
|
|
Binary file not shown.
|
@ -1,20 +1,13 @@
|
|||
@echo off
|
||||
rem *Very* simple batch file to run Writer2LaTeX
|
||||
rem Created by Henrik Just, october 2003
|
||||
rem Modfied december 2003 as suggested by Juan Julian Merelo Guervos
|
||||
rem Last modified july 2007
|
||||
|
||||
rem Please edit the following line to contain the full path to Writer2LaTeX:
|
||||
|
||||
set W2LPATH="c:\writer2latex10"
|
||||
rem Last modified february 2011
|
||||
|
||||
rem If the Java executable is not in your path, please edit the following
|
||||
rem line to contain the full path and file name
|
||||
|
||||
set JAVAEXE="java"
|
||||
|
||||
%JAVAEXE% -jar %W2LPATH%\writer2latex.jar %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
%JAVAEXE% -jar "%~dp0\writer2latex.jar" %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
|
||||
set W2LPATH=
|
||||
set JAVAEXE=
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Version 1.2 (2011-02-10)
|
||||
* Version 1.2 (2011-02-14)
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -33,7 +33,7 @@ public class ConverterFactory {
|
|||
|
||||
// Version information
|
||||
private static final String VERSION = "1.1.6";
|
||||
private static final String DATE = "2011-02-10";
|
||||
private static final String DATE = "2011-02-14";
|
||||
|
||||
/** Return the Writer2LaTeX version in the form
|
||||
* (major version).(minor version).(patch level)<br/>
|
||||
|
|
Loading…
Add table
Reference in a new issue