Search found 5 matches
- Fri Dec 11, 2009 4:56 am
- Forum: BibTeX, biblatex and biber
- Topic: how to use aux2bib
- Replies: 1
- Views: 2046
how to use aux2bib
aux2bib (given an .aux file, make a portable .bib file to go with it) doesn't seem to have a manual. Does anybody know how to use it?
- Fri Dec 11, 2009 1:05 am
- Forum: Text Formatting
- Topic: the \centering command
- Replies: 1
- Views: 5331
the \centering command
Apparently, what I think \centering should do is not really what it does. For example
\documentclass{article}
\begin{document}
{\centering Why is this line not centered?}
{A
\centering B
C}
a
\centering b
c
% why is it that c is centered yet C is not?
\end{document}
Maybe I should stick ...
\documentclass{article}
\begin{document}
{\centering Why is this line not centered?}
{A
\centering B
C}
a
\centering b
c
% why is it that c is centered yet C is not?
\end{document}
Maybe I should stick ...
- Sun Dec 06, 2009 9:30 pm
- Forum: General
- Topic: how to manage LaTeX macros in a collaborative paper
- Replies: 1
- Views: 1631
how to manage LaTeX macros in a collaborative paper
Let's say X and Y are writing a single paper, and say X writes part 1 and Y writes part 2. Each of these authors has their own tex file containing all of their macros (\newcommand stuff)
X and Y add include their macros together in the preamble:
% preamble
% ...
\input{X-macros.tex} % X's macros ...
X and Y add include their macros together in the preamble:
% preamble
% ...
\input{X-macros.tex} % X's macros ...
- Sun Dec 06, 2009 9:12 pm
- Forum: BibTeX, biblatex and biber
- Topic: how to work out bibliography issues between multiple authors
- Replies: 1
- Views: 1736
how to work out bibliography issues between multiple authors
Let's say authors X, Y and Z are writing a single paper. Three people may have their own bib files. If X writes part 1 of the paper freely referencing from X's own bib file and Y writes part 2 referencing from Y's own bib file, then there may be some merge issue later.
If X, Y and Z all decides to ...
If X, Y and Z all decides to ...
- Sun Nov 08, 2009 2:40 pm
- Forum: General
- Topic: position of optional parameter in a LaTeX command.
- Replies: 2
- Views: 1826
position of optional parameter in a LaTeX command.
Usually LaTeX macro takes parameters in the form: \somecommand[opt-param1][opt-param2]{param1}{param2}
But the \blindlistlist command in the blindtext package takes an optional parameter after an obligatory parameter: \blindlistlist[<level>]{<env>}[<x>]
What is the benefit of taking an optional ...
But the \blindlistlist command in the blindtext package takes an optional parameter after an obligatory parameter: \blindlistlist[<level>]{<env>}[<x>]
What is the benefit of taking an optional ...