The following table shows which characters in the text will be replaced when a LaTeX report will be generated.
Table 5. Replacement of characters in LaTeX reports
Original character | Replacement |
---|---|
- |
-- |
" " |
\glqq \grqq or \glqq \glqq |
& |
\& |
-> |
→ |
<- |
� |
<-> |
↔ |
'test.xml' |
\verb|test.xml| |
--- |
\hline |
'public int sum(int n) { if (n <= 0) { return n; } else { return n + sum(n-1); } }' |
\begin{lstlisting} public int sum(int n) { if (n <= 0) { return n; } else { return n + sum(n-1); } } \end{lstlisting} |
`public int sum(int n) { if (n <= 0) { return n; } else { return n + sum(n-1); } }` |
\begin{lstlisting} public int sum(int n) { if (n <= 0) { return n; } else { return n + sum(n-1); } } \end{lstlisting} |
**important** |
\textbf{important} |
* Item 1 |
\begin{itemize} \item Item 1 \end{itemize} |
+ Item 1.1 |
\begin{itemize} \item Item 1.1. \end{itemize} |
~ Item 1.1.1 |
\begin{itemize} \item Item 1.1.1 \end{itemize} |
Important | |
---|---|
In the source code environment no replacments will be execurted. |
Note | |
---|---|
In advanced input fields the input will be converted to HTML and displayed as HTML. |