-
The
parskipcommand makes a skip between paragraphs. The length of skip can be set using the command\setlength, e.g.,\setlength{\parskip}{15pt plus 1pt minus 1pt} -
The command
\itemsepsets the space between items in lists, e.g.,\begin{itemize} \itemsep = 0.8cm \item \end{itemize} -
The …
Scientific References
-
JabRefis an open-source cross-plotform software for managing scientific references.Mendeleyis a good cost-free cross-platform software for managing scientific references. It introduces the concept of social research. -
If you use bibtex in your LaTeX code, you have to compile your code using
pdflatex/latex,bibtex,pdflatex/latexandpdflatex …
LaTeX for Chinese
xetexis the state-of-art way for dealing with Chinese type setting. You can installxetexon Debian series of Linux distributions (Debian, Ubuntu, Linux Mint, etc.) using the following command.
wajig install texlive-xetex
You can use command xelatex to compile.
The utf-8 format is preferred.
There are 2 good ways …
LaTeX Commands for Compiling
- LaTeX
- If your LaTeX code contains only EPS figures, you can use the
latexcommand (also OK to usepdflatex) to compile your code. - If you use bibtex, you have to compile your code using commands
latex,bibtex,latexandlatexin sequence. - If you use the
psfragpackage to …
- If your LaTeX code contains only EPS figures, you can use the
Graphics in LaTeX
-
Generally PDF figures are preferred for LaTeX code.
-
There are many useful commands in Linux for converting between different types of figures, e.g.,
convert,pdf2ps, etc. So it does not matter much which types of figures you produce. You can always convert them into other format when needed. -
The …
Convert LaTeX to Word
pandoc is a general purpose tool for converting between different type of documents,
however,
it is not good at converting LaTeX code to word.
tex4ht is a better tool for converting LaTeX code to word.
The following are instructions to use tex4ht to convert LaTeX to word.
-
Compile your LaTeX …