vote up 1 vote down star

Hello,

I need to insert text like this in my Latex document:

((((tetrameristaceae,pellicieraceae),marcgraviaceae),balsaminaceae),(fouquieriaceae,polemoniaceae,sladeniaceae,(ternstroemia,adinandra)pentaphylacaceae,(schima,gordonia)theaceae,(lissocarpa,diospyros)ebenaceae,symplocaceae,(maesaceae,(theophrastaceae,(primulaceae,(myrsine,ardisia)myrsinaceae))),(diapensiaceae,(parastyrax,styrax)styracaceae),sapotaceae,(barringtonia,gustavia)lecythidaceae,(((ericaceae,cyrillaceae),(purdiaea,clethra)clethraceae),(sarraceniaceae,((actinidia,saurauia)actinidiaceae,roridulaceae)))))ericales;

Latex writes the all text in one line, going way off in the right margin. I cannot use \linebreak by hand, this just gives a poor result when the text is longer, and it would be a lot of work given all the similar text to include.

Any idea?

Thanks!

flag

7 Answers

vote up 7 vote down

Your question lacks the definition of the desired outcome, so I'll just try to guess.

Simplest idea: just add spaces after each comma.

link|flag
And as a bonus, it looks better too. – ShreevatsaR Jun 5 at 22:22
vote up 4 vote down

You could add hyphenation hints in the text: if you put \- in a word (for example non\-breaking) LaTeX will break only at those position but will break at those positions if necessary. You'll get a hyphen at the breaking position though. Another possible option might be using the hyphenat package and defining the comma as your hyphenation character. As I never used that package myself I might be wrong here though.

link|flag
vote up 1 vote down

I haven't tried it, but it looks like the newicktree package may be of some interest to you. The article PHY·FI: fast and easy online creation and manipulation of phylogeny color figures and the associated web-based tool also seem like they would be helpful.


EDIT: I found a way to more or less accomplish what you want by using a package in a way that it almost certainly was not intended. Here is the LaTeX code:

\documentclass{article}
\usepackage{url}
\begin{document}
\url{((((tetrameristaceae,pellicieraceae),marcgraviaceae),balsaminaceae),(fouquieriaceae,polemoniaceae,sladeniaceae,(ternstroemia,adinandra)pentaphylacaceae,(schima,gordonia)theaceae,(lissocarpa,diospyros)ebenaceae,symplocaceae,(maesaceae,(theophrastaceae,(primulaceae,(myrsine,ardisia)myrsinaceae))),(diapensiaceae,(parastyrax,styrax)styracaceae),sapotaceae,(barringtonia,gustavia)lecythidaceae,(((ericaceae,cyrillaceae),(purdiaea,clethra)clethraceae),(sarraceniaceae,((actinidia,saurauia)actinidiaceae,roridulaceae)))))ericales;}
\end{document}

Here is the result: IMAGE

link|flag
vote up 1 vote down

Here's a quick solution that gets part of the way there (as far as I can tell). It doesn't require any changes to the markup, but allows you to insert extra spaces if you like automatically.

\documentclass{article}
\begin{document}
\newcommand\comma{,}
\newcommand\openbrace{(}
\newcommand\closebrace{)}
\begingroup
\catcode`\,=\active
\catcode`\(=\active
\catcode`\)=\active
\gdef\weird{%
  \begingroup
  \catcode`\,=\active
  \catcode`\(=\active
  \catcode`\)=\active
  \def,{\comma\allowbreak}%
  \def({\openbrace\allowbreak}%
  \def){\closebrace\allowbreak}%
  \processweird
}
\endgroup
\newcommand\processweird[1]{#1\endgroup}
\weird{((((tetrameristaceae,pellicieraceae),marcgraviaceae),balsaminaceae),(fouquieriaceae,polemoniaceae,sladeniaceae,(ternstroemia,adinandra)pentaphylacaceae,(schima,gordonia)theaceae,(lissocarpa,diospyros)ebenaceae,symplocaceae,(maesaceae,(theophrastaceae,(primulaceae,(myrsine,ardisia)myrsinaceae))),(diapensiaceae,(parastyrax,styrax)styracaceae),sapotaceae,(barringtonia,gustavia)lecythidaceae,(((ericaceae,cyrillaceae),(purdiaea,clethra)clethraceae),(sarraceniaceae,((actinidia,saurauia)actinidiaceae,roridulaceae)))))ericales;}
\end{document}
link|flag
vote up 0 vote down

As far as I know, you can put whitespace between nodes and have the usual linebreaks. You can also introduce optional hyphenations (with a hyphen) by inserting \- in the words.

If you (or whoever has to approve your work) insists on arbitrary breaks, perhaps you can use the seqsplit package.

link|flag
vote up -2 vote down

Thank you,

I tried adding a space after each comma before (and i believe defining the comma as my hyphenation character would give the same answer), the output is better but still has a lot of places where the text goes way in the right margin.

What i need to do is break the line when it is full, regardless of where i am in the text. Below is an example of my desired output; this one was obtained under word.

Thanks again.

alt text

link|flag
2  
I'm sorry, but it really shows that this is from Word... it looks awful. You should really put a small space after the commas instead as suggested by the others. – Martin Geisler Jun 5 at 23:58
I hope you aren't intending this mess for human consumption -- it's completely and totally unreadable. Whitespace is your friend! – kquinn Jun 6 at 7:09
vote up -2 vote down

It is what a Newick formatted phylogeny should look like: not a matter of being aesthetic, a matter of keeping the right scientific format, without spaces.... Plus, putting a space does not fully fix the problem as there are still a lot of cases where the text appears in the right margin.

Thanks though.

link|flag
3  
According to evolution.genetics.washington.edu/phylip/… , "Blanks or tabs may appear anywhere except within unquoted labels or branch_lengths." Textual representations where whitespace is significant are dangerous, and almost always unsuitable for print. Python only gets away with it because whitespace is only significant in one very limited way, and the convention is already required by any sane coding standards. – unknown (google) Jun 6 at 2:37
2  
By the way, I think that you are getting the downvotes because you should modify your question, not add answers that are no answers. This is not a forum, where posts are sorted chronologically, but a Q&A site, and posts are by default sorted by votes, and may change place at any time. – Svante Jun 6 at 6:03
Ok, thanks to all of you for your help and sorry for the mess i created by adding questions after questions...... I took the repeated advice to add spaces after the commas and to insert optional hyphenations (\-) when there were still issues. The result is good, thanks!! – Helene Jun 6 at 22:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.