I m writing one article in which i need to write a paragraph full of medical terms. How can i wrap a text in a line without using line break (or hyphen)?
Regards
|
I m writing one article in which i need to write a paragraph full of medical terms. How can i wrap a text in a line without using line break (or hyphen)? Regards |
|||
|
You can break a word with no hyphen at the end of the line (see the other answers), but then it doesn't look like a broken word. It might be a good idea to use some other symbol there instead of the hyphen, for instance
I strongly recommend using the package
|
|||
|
If you want to split a word but don't want a hyphen to be used where the split happens, you can define a new hyphenation style:
Now you can use it as in From the TeXBook:
|
||||
|
|
You can use
and then use
this can be used for displaying DNA sequences, but probably does an alright job in your case as well |
|||
|
|
\mbox{....}. To avoid hyphens you may also use\usepackage{hyphenat}and use\nohyphens{<text>}. To make it global use\usepackage[none]{hyphenat}– Harish Kumar Mar 1 at 2:23\raggedrightmode. This may be preferable to maintaining full justification. The latter is likely to produce some lines with huge inter-word gaps when hyphenation is turned off. – Mico Mar 1 at 3:17