emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Make * bold?
@ 2014-10-13  9:15 Rainer M Krug
  2014-10-13 12:09 ` Andrea Rossetti
  0 siblings, 1 reply; 5+ messages in thread
From: Rainer M Krug @ 2014-10-13  9:15 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1055 bytes --]

Hi

I would like to make three stars bold - is this possible? I have the
following table and at the moment, I get what is in the latex
column. But I would like to have what is in the last column.

| org             | latex                        | what I would like     |
| *3.96e-21 *** * | \textbf{3.96e-21 **} *       | \textbf{3.96e-21 ***} |
| *4.11e-01 ****  | \textbf{4.11e-01 \textbf{*}} | \textbf{4.11e-01 ***} |
| *2.07e-03 ***   | \textbf{2.07e-03 **}         | \textbf{2.07e-03 **}  |
| *3.43e-02 **    | \textbf{3.43e-02 *}          | \textbf{3.43e-02 *}   |

Line 1 and two are just tries to see if there iss a difference with or
without space *there is, but none works).

Line 3 and four, i.e. two and one stars, works as expected.

Any suggestions on how I can get the three stars in bold? I could
obviously use \textbf{} in the table, but I also export the document
to html - so this would not be an option.

Any suggestions?

Thanks,

Rainer
-- 
Rainer M. Krug
email: Rainer<at>krugs<dot>de
PGP: 0x0F52F982

[-- Attachment #2: Type: application/pgp-signature, Size: 494 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Make * bold?
  2014-10-13  9:15 Make * bold? Rainer M Krug
@ 2014-10-13 12:09 ` Andrea Rossetti
  2014-10-13 12:31   ` Rainer M Krug
  0 siblings, 1 reply; 5+ messages in thread
From: Andrea Rossetti @ 2014-10-13 12:09 UTC (permalink / raw)
  To: emacs-orgmode

Rainer M Krug <Rainer <at> krugs.de> writes:
> I would like to make three stars bold - is this possible? I have the
> following table and at the moment, I get what is in the latex
> column. But I would like to have what is in the last column.
> 
> | org             | latex                        | what I would like     |
> | *3.96e-21 *** * | \textbf{3.96e-21 **} *       | \textbf{3.96e-21 ***} |
> ...
> 
> Any suggestions?

Hi! using the "pretty entity" \ast{} works for me in HTML and PDF:

| *3.96e-21 \ast{}\ast{}\ast{}*  |

Does it work for you too? Regards, Andrea

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Make * bold?
  2014-10-13 12:09 ` Andrea Rossetti
@ 2014-10-13 12:31   ` Rainer M Krug
  2014-10-13 12:54     ` Andreas Leha
  0 siblings, 1 reply; 5+ messages in thread
From: Rainer M Krug @ 2014-10-13 12:31 UTC (permalink / raw)
  To: Andrea Rossetti; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1064 bytes --]

Andrea Rossetti <andrea.rossetti@gmail.com> writes:

> Rainer M Krug <Rainer <at> krugs.de> writes:
>> I would like to make three stars bold - is this possible? I have the
>> following table and at the moment, I get what is in the latex
>> column. But I would like to have what is in the last column.
>> 
>> | org             | latex                        | what I would like     |
>> | *3.96e-21 *** * | \textbf{3.96e-21 **} *       | \textbf{3.96e-21 ***} |
>> ...
>> 
>> Any suggestions?
>
> Hi! using the "pretty entity" \ast{} works for me in HTML and PDF:
>
> | *3.96e-21 \ast{}\ast{}\ast{}*  |
>
> Does it work for you too? Regards, Andrea

Thanks - it does, indeed. Strange that it works for both export
backends.


But there are a few formating issues with this:

1) in tex, the spacing between two is different to the spacing between
three
2) in html, the asterix are at the bottom and
3) it is not very readable in org.

Thanks,

Rainer

>
>
>

-- 
Rainer M. Krug
email: Rainer<at>krugs<dot>de
PGP: 0x0F52F982

[-- Attachment #2: Type: application/pgp-signature, Size: 494 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Make * bold?
  2014-10-13 12:31   ` Rainer M Krug
@ 2014-10-13 12:54     ` Andreas Leha
  2014-10-13 13:04       ` Rainer M Krug
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Leha @ 2014-10-13 12:54 UTC (permalink / raw)
  To: emacs-orgmode

Hi Rainer,

Rainer M Krug <Rainer@krugs.de> writes:

> Andrea Rossetti <andrea.rossetti@gmail.com> writes:
>
>> Rainer M Krug <Rainer <at> krugs.de> writes:
>>> I would like to make three stars bold - is this possible? I have the
>>> following table and at the moment, I get what is in the latex
>>> column. But I would like to have what is in the last column.
>>> 
>>> | org             | latex                        | what I would like     |
>>> | *3.96e-21 *** * | \textbf{3.96e-21 **} *       | \textbf{3.96e-21 ***} |
>>> ...
>>> 
>>> Any suggestions?
>>
>> Hi! using the "pretty entity" \ast{} works for me in HTML and PDF:
>>
>> | *3.96e-21 \ast{}\ast{}\ast{}*  |
>>
>> Does it work for you too? Regards, Andrea
>
> Thanks - it does, indeed. Strange that it works for both export
> backends.
>
>
> But there are a few formating issues with this:
>
> 1) in tex, the spacing between two is different to the spacing between
> three
> 2) in html, the asterix are at the bottom and
> 3) it is not very readable in org.

To help with 3) have a look at http://orgmode.org/manual/Special-symbols.html (esp. C-c C-x \)

Best,
Andreas

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Make * bold?
  2014-10-13 12:54     ` Andreas Leha
@ 2014-10-13 13:04       ` Rainer M Krug
  0 siblings, 0 replies; 5+ messages in thread
From: Rainer M Krug @ 2014-10-13 13:04 UTC (permalink / raw)
  To: Andreas Leha; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1391 bytes --]

Andreas Leha <andreas.leha@med.uni-goettingen.de> writes:

> Hi Rainer,
>
> Rainer M Krug <Rainer@krugs.de> writes:
>
>> Andrea Rossetti <andrea.rossetti@gmail.com> writes:
>>
>>> Rainer M Krug <Rainer <at> krugs.de> writes:
>>>> I would like to make three stars bold - is this possible? I have the
>>>> following table and at the moment, I get what is in the latex
>>>> column. But I would like to have what is in the last column.
>>>> 
>>>> | org             | latex                        | what I would like     |
>>>> | *3.96e-21 *** * | \textbf{3.96e-21 **} *       | \textbf{3.96e-21 ***} |
>>>> ...
>>>> 
>>>> Any suggestions?
>>>
>>> Hi! using the "pretty entity" \ast{} works for me in HTML and PDF:
>>>
>>> | *3.96e-21 \ast{}\ast{}\ast{}*  |
>>>
>>> Does it work for you too? Regards, Andrea
>>
>> Thanks - it does, indeed. Strange that it works for both export
>> backends.
>>
>>
>> But there are a few formating issues with this:
>>
>> 1) in tex, the spacing between two is different to the spacing between
>> three
>> 2) in html, the asterix are at the bottom and
>> 3) it is not very readable in org.
>
> To help with 3) have a look at http://orgmode.org/manual/Special-symbols.html (esp. C-c C-x \)

Thanks - good point.

Rainer

>
> Best,
> Andreas
>
>
>

-- 
Rainer M. Krug
email: Rainer<at>krugs<dot>de
PGP: 0x0F52F982

[-- Attachment #2: Type: application/pgp-signature, Size: 494 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-10-13 13:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-13  9:15 Make * bold? Rainer M Krug
2014-10-13 12:09 ` Andrea Rossetti
2014-10-13 12:31   ` Rainer M Krug
2014-10-13 12:54     ` Andreas Leha
2014-10-13 13:04       ` Rainer M Krug

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).