Text Formatting ⇒ special characters
-
- Posts: 12
- Joined: Fri Mar 12, 2010 5:43 pm
special characters
\textbf{$\rm{cp x.0* ~/Desktop/rv_vb10/}$} \newline
However the input comes out as:
cpx.0 ∗ /Desktop/rvv b10/
where the second "v" is below "rv". I know the reason why it is doing it but I do not know how to show this in latex correctly.
Thanks
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
special characters
Code: Select all
\verb+cp x.0* ~/Desktop/rv_vb10/+
-
- Posts: 12
- Joined: Fri Mar 12, 2010 5:43 pm
special characters
Code: Select all
\textbf{$\verb+cp x.0* ~/Desktop/rv_vb10/+$} \newline
Code: Select all
! Missing $ inserted.<inserted text>$l.29 \textbf{$\verb+cp x.0* ~/Desktop/rv_vb10/+$}\newline?
special characters
Code: Select all
\documentclass{article}\begin{document}text text \verb+cp x.0* ~/Desktop/rv_vb10/+ text texttext text \textbf{cp x.0 \textasciitilde\negthinspace/Desktop/rv\textunderscore vb10/} text text\end{document}
-
- Posts: 12
- Joined: Fri Mar 12, 2010 5:43 pm
Re: special characters
Thank you very much!