Archived
1
0
Fork 0

.gitattributes und line endings korrigiert

This commit is contained in:
Lukas Winkler 2014-09-28 09:17:15 +02:00
parent eea79e88fd
commit 6253389e2c
2 changed files with 60 additions and 38 deletions

22
.gitattributes vendored Normal file
View file

@ -0,0 +1,22 @@
# Auto detect text files and perform LF normalization
* text=auto
# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union
# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain

View file

@ -1,39 +1,39 @@
REM =====================================================
REM This is a batch file to compile using pdflatex and biber (biblatex).
REM When used with TeXworks, add it as batch tool:
REM =====================================================
REM English:
REM Edit > Preferences ... > Typesetting > Processing tools
REM + (new tool):
REM Name: pdflatex+biber
REM Program: (find this pdflatex+biber.bat on your disk and use it here)
REM Arguments:
REM $fullname
REM $basename
REM [x] View PDF after running
REM =====================================================
REM German:
REM Bearbeiten > Einstellungen ... > Textsatz > Verarbeitungsprogramme
REM + (neues Verarbeitungsprogramm):
REM Name: pdflatex+biber
REM Befehl/Datei: (diese pdflatex+biber.bat im Laufwerk suchen und einbinden)
REM Argumente:
REM $fullname
REM $basename
REM [x] PDF nach Beendigung anzeigen
REM =====================================================
REM idea from: http://tex.stackexchange.com/questions/69705/how-to-automate-using-biber-in-miktex-texworks
REM adopted by: Karl Voit, 2013-02-02
REM =====================================================
REM call pdflatex using parameters suitable for miktex:
miktex-pdftex.exe -synctex=1 -undump=pdflatex "%1"
REM generate the references metadata for biblatex (using biber):
biber.exe "%2"
REM call pdflatex twice to compile the references and finalize PDF:
miktex-pdftex.exe -synctex=1 -undump=pdflatex "%1"
miktex-pdftex.exe -synctex=1 -undump=pdflatex "%1"
REM =====================================================
REM This is a batch file to compile using pdflatex and biber (biblatex).
REM When used with TeXworks, add it as batch tool:
REM =====================================================
REM English:
REM Edit > Preferences ... > Typesetting > Processing tools
REM + (new tool):
REM Name: pdflatex+biber
REM Program: (find this pdflatex+biber.bat on your disk and use it here)
REM Arguments:
REM $fullname
REM $basename
REM [x] View PDF after running
REM =====================================================
REM German:
REM Bearbeiten > Einstellungen ... > Textsatz > Verarbeitungsprogramme
REM + (neues Verarbeitungsprogramm):
REM Name: pdflatex+biber
REM Befehl/Datei: (diese pdflatex+biber.bat im Laufwerk suchen und einbinden)
REM Argumente:
REM $fullname
REM $basename
REM [x] PDF nach Beendigung anzeigen
REM =====================================================
REM idea from: http://tex.stackexchange.com/questions/69705/how-to-automate-using-biber-in-miktex-texworks
REM adopted by: Karl Voit, 2013-02-02
REM =====================================================
REM call pdflatex using parameters suitable for miktex:
miktex-pdftex.exe -synctex=1 -undump=pdflatex "%1"
REM generate the references metadata for biblatex (using biber):
biber.exe "%2"
REM call pdflatex twice to compile the references and finalize PDF:
miktex-pdftex.exe -synctex=1 -undump=pdflatex "%1"
miktex-pdftex.exe -synctex=1 -undump=pdflatex "%1"
REM end