but if I need a text bold and italic in the same time.
something like
***italic.bold***
Is there a easy way to implement this?
thanks a lot
> ***italic.bold***
Currently, nested inline markup is not supported. The workaround is easy but
not nice:
define a custom role, e.g.
.. role:: bfit
and use it to mark up :bfit`bold italic text`.
You also need to define styling rules for the bfit class in the CSS
stylesheet for HTML and in the LaTeX preamble for LaTeX.
Günter
Substitution file (we may be adding to with repeated equations)
.. role:: raw-html(raw)
:format: html
.. role:: raw-latex(raw)
:format: latex
.. |f3d| replace:: :raw-html:`<strong><em>FLOW-3D</em></strong>`:raw-
latex:`{\textbf {\em FLOW-3D}}`
Sample from an rst file:
.. _00_model_reference_overview::
.. include:: ../substitutions
Overview
==============
In this chapter, |f3d| models
Kathy