Scientific Writing | ||||||||
| Line: 104 to 104 | ||||||||
|---|---|---|---|---|---|---|---|---|
Use BibTexAlso read 'Cite it Right!'.Other citation formats | ||||||||
| Changed: | ||||||||
| < < |
I use bibutils by Chris Putnam to convert e.g. RIS to BibTeX. See my own install instructions on how to get things going. | |||||||
| > > |
I use bibutils by Chris Putnam to convert e.g. RIS to BibTeX. See my own install instructions on how to get things going. | |||||||
How I search my bib filesI use BibTool by Gerd Neugebauer, which can parse, search, pretty-print BibTeX files, and probably more. See my own install instructions on how to get things going. I created a tiny wrapper script around theBibTool executable for searching. This is bibsearch:
| ||||||||
Scientific Writing | ||||||||
| Line: 59 to 59 | ||||||||
|---|---|---|---|---|---|---|---|---|
Adding classes/packages fonts to your existing TeX installation is not difficult.
Either create a directory where all packages go into and add this dir to variable TEXINPUTS.
| ||||||||
| Changed: | ||||||||
| < < |
The more clean approach is described in the CTAN docs. | |||||||
| > > |
The more clean approach is described for example here. | |||||||
LateX picture to eps converterConverting a LaTeX figure file (for example created by XFig) into an eps, with proper LaTeX fonts: | ||||||||
Scientific Writing | ||||||||
| Line: 85 to 85 | ||||||||
|---|---|---|---|---|---|---|---|---|
| (Script by Yuri Kuznetsov.) | ||||||||
| Added: | ||||||||
| > > |
Ignore LaTeX temporaries in subversion (svn)Most of my LaTeX work is stored in my subversion repository (install notes).latex produces quite some additional files (.log, .toc, and many more), which turn up marked with ? in the result from svn status. That is unnecessary information to me, it clutters up the other ? marks of files that I want to recognize as new/unversioned. I set the svn:ignore property on the containing directory using a file with patterns:
svn propset svn:ignore -F ~/tex/texignore .The pattern file ~/tex/texignore contains these lines:
*.aux *.log *.nav *.toc *.snm *.blg *.bbl | |||||||
Use BibTexAlso read 'Cite it Right!'. | ||||||||
Scientific Writing | ||||||||
| Line: 91 to 91 | ||||||||
|---|---|---|---|---|---|---|---|---|
Other citation formatsI use bibutils by Chris Putnam to convert e.g. RIS to BibTeX. See my own install instructions on how to get things going.How I search my bib files | ||||||||
| Changed: | ||||||||
| < < |
I use BibTool by Gerd Neugebauer, which can parse, search, pretty-print BibTeX files, and probably more. I created a tiny wrapper script around it for searching. This is bibsearch:
| |||||||
| > > |
I use BibTool by Gerd Neugebauer, which can parse, search, pretty-print BibTeX files, and probably more. See my own install instructions on how to get things going. I created a tiny wrapper script around the BibTool executable for searching. This is bibsearch:
| |||||||
#!/bin/bash
bibtool -- "select{$*}" -i ~/mybibdir/*.bib
| ||||||||
Scientific Writing | ||||||||
| Line: 12 to 12 | ||||||||
|---|---|---|---|---|---|---|---|---|
beamer2handout converterProducing handouts of your PDF files (e.g. talk slides) is easily done with PDFjam/pdfnup from David Firth. It takes quite some options though, and I made a small script that converts a pdf to an either 4- or 6upped pdf in the usual way. It is used like this: | ||||||||
| Changed: | ||||||||
| < < |
beamer2handout myslides.pdf beamer2handout myslides.pdf 6up beamer2handout myslides.pdf 4up otheroutputfile.pdf | |||||||
| > > |
$ beamer2handout myslides.pdf $ beamer2handout myslides.pdf 6up $ beamer2handout myslides.pdf 4up otheroutputfile.pdf | |||||||
| If you would like to use it get beamer2handout here. The setup is as follows: | ||||||||
| Line: 90 to 90 | ||||||||
Also read 'Cite it Right!'.
Other citation formatsI use bibutils by Chris Putnam to convert e.g. RIS to BibTeX. See my own install instructions on how to get things going. | ||||||||
| Added: | ||||||||
| > > |
How I search my bib filesI use BibTool by Gerd Neugebauer, which can parse, search, pretty-print BibTeX files, and probably more. I created a tiny wrapper script around it for searching. This isbibsearch:
#!/bin/bash
bibtool -- "select{$*}" -i ~/mybibdir/*.bib
Now, I can issue command like (I use single quotes in the terminal to avoid the need for escaping)
$ bibsearch 'author "Brio"' $ bibsearch 'title "MHD"'(double quotes in search string are necessary) | |||||||
Often used abbreviations
| ||||||||
Scientific Writing | ||||||||
| Line: 9 to 9 | ||||||||
|---|---|---|---|---|---|---|---|---|
Theme uubeamerA latex-beamer theme in Utrecht University colors, including the sol logo. Read more on my uubeamer page. | ||||||||
| Added: | ||||||||
| > > |
beamer2handout converterProducing handouts of your PDF files (e.g. talk slides) is easily done with PDFjam/pdfnup from David Firth. It takes quite some options though, and I made a small script that converts a pdf to an either 4- or 6upped pdf in the usual way. It is used like this:beamer2handout myslides.pdf beamer2handout myslides.pdf 6up beamer2handout myslides.pdf 4up otheroutputfile.pdfIf you would like to use it get beamer2handout here. The setup is as follows:
| |||||||
Block (un)commenting in NEditOpen your NEdit settings file file (i.e. in~/.nedit/nedit.rc for versions >= 5.4, or ~/.nedit for older versions)
| ||||||||
Scientific Writing | ||||||||
| Added: | ||||||||
| > > |
TOC: No TOC in "Arthur.ScientificWriting" | |||||||
Use LaTeXOf course...Useful packages/commands/scriptsTheme uubeamerA latex-beamer theme in Utrecht University colors, including the sol logo. Read more on my uubeamer page. | ||||||||
| Added: | ||||||||
| > > |
Block (un)commenting in NEditOpen your NEdit settings file file (i.e. in~/.nedit/nedit.rc for versions >= 5.4, or ~/.nedit for older versions)
First, find in this file:
nedit.macroCommands: \Next, look up the first Comments> line, and just above that, add:
Comments>% Comment@LaTeX:::R: {\n\
replace_in_selection("^.*$", "%&", "regex")\n\
}\n\
Comments>% Uncomment@LaTeX:::R: {\n\
replace_in_selection("(^[ \\\\t]*%)(.*)$", "\\\\2", "regex")\n\
}\n\
Or, including shortcut keys ([Shift]+[Ctrl]+C for commenting, [Shift]+[Ctrl]+[Alt]+C for uncommenting):
Comments>% Comment@LaTeX:Shift+Ctrl+C:c:R: {\n\
replace_in_selection("^.*$", "%&", "regex")\n\
}\n\
Comments>% Uncomment@LaTeX:Shift+Ctrl+Alt+C:u:R: {\n\
replace_in_selection("(^[ \\\\t]*%)(.*)$", "\\\\2", "regex")\n\
}\n\
Save the settings file and (re-)start NEdit.
| |||||||
Adding custom classes by handAdding classes/packages fonts to your existing TeX installation is not difficult. Either create a directory where all packages go into and add this dir to variableTEXINPUTS.
| ||||||||
Scientific WritingUse LaTeX | ||||||||
| Line: 39 to 39 | ||||||||
|---|---|---|---|---|---|---|---|---|
Use BibTex | ||||||||
| Added: | ||||||||
| > > |
Also read 'Cite it Right!'. | |||||||
Other citation formatsI use bibutils by Chris Putnam to convert e.g. RIS to BibTeX. See my own install instructions on how to get things going. | ||||||||
Scientific WritingUse LaTeXOf course... | ||||||||
| Changed: | ||||||||
| < < |
Useful commands/scripts | |||||||
| > > |
Useful packages/commands/scriptsTheme uubeamerA latex-beamer theme in Utrecht University colors, including the sol logo. Read more on my uubeamer page. | |||||||
Adding custom classes by handAdding classes/packages fonts to your existing TeX installation is not difficult. Either create a directory where all packages go into and add this dir to variableTEXINPUTS.
| ||||||||
Scientific WritingUse LaTeXOf course...Useful commands/scripts | ||||||||
| Added: | ||||||||
| > > |
Adding custom classes by handAdding classes/packages fonts to your existing TeX installation is not difficult. Either create a directory where all packages go into and add this dir to variableTEXINPUTS.
The more clean approach is described in the CTAN docs.
| |||||||
LateX picture to eps converter | ||||||||
| Changed: | ||||||||
| < < |
Converting a LaTeX figure file (for example created by XFig) into an eps, with proper LaTeX fonts: | |||||||
| > > |
Converting a LaTeX figure file (for example created by XFig) into an eps, with proper LaTeX fonts: | |||||||
#!/bin/bash -f #!set -x | ||||||||
Scientific WritingUse LaTeXOf course... | ||||||||
| Added: | ||||||||
| > > |
Useful commands/scriptsLateX picture to eps converterConverting a LaTeX figure file (for example created by XFig) into an eps, with proper LaTeX fonts:
#!/bin/bash -f
#!set -x
HEADER="\
\\documentclass{article} \n\
\\usepackage{epsfig,color,amsfonts,amssymb} \n\
\\\nonstopmode \n\
\\\begin{document} \n\
\\\titlepage \n\
\input{$1} \n\
\\\end{document} \n\
\004 \n\
"
echo -e $HEADER > TEMPFILE.tex
latex TEMPFILE.tex > /dev/null
dvips -E -q -o $2 TEMPFILE.dvi
rm -f TEMPFILE TEMPFILE.tex TEMPFILE.dvi TEMPFILE.aux TEMPFILE.log
Save the above in a file texfig2eps, run chmod u+x texfig2eps, and use it as texfig2eps inputfile outputepsfile.
(Script by Yuri Kuznetsov.)
| |||||||
Use BibTexOther citation formats | ||||||||
Scientific WritingUse LaTeXOf course...Use BibTex | ||||||||
| Changed: | ||||||||
| < < |
Of course... | |||||||
| > > |
Other citation formatsI use bibutils by Chris Putnam to convert e.g. RIS to BibTeX. See my own install instructions on how to get things going. | |||||||
Often used abbreviations
| ||||||||
Scientific WritingUse LaTeX | ||||||||
| Line: 14 to 14 | ||||||||
|---|---|---|---|---|---|---|---|---|
| ||||||||
| Added: | ||||||||
| > > |
Other expressions
| |||||||
| Line: 1 to 1 | ||||||||
|---|---|---|---|---|---|---|---|---|
| Added: | ||||||||
| > > |
Scientific WritingUse LaTeXOf course...Use BibTexOf course...Often used abbreviations
| |||||||