A paragraph I am writing contains a lot symbols such as "{" or "_". To display those symbols as text instead of command, I have to write them as "\{" and "\_". Otherwise, Latex will say there are errors. However, there are so many of those symbols in my document and it would be very inconvenient to have to add a dash in front of them every single time.
An example:
\begin{document}
The Tadrart Acacus (https://en.wikipedia.org/wiki/Acacus_Mountains) have a large variation of landscapes, from different-coloured dunes to arches, gorges, isolated rocks and deep wadis (ravines).
\end{document}
Refer to the wikipedia link: usually, I just copy the link from my browser and paste it into my paragraph. But due to the "_" symbol in the word "Acacus_Mountains", Latex will say there is an error and ask me to enclose it with the "$" symbol.
About the \verbatim environment: it would not work for me because:
- It changes the font of the paragraph.
- It does not go to a new line when reaching the margin.
To illustrate, I will enclose my paragraph with \verbatim:
\begin{document}
\begin{verbatim}
The Tadrart Acacus (https://en.wikipedia.org/wiki/Acacus_Mountains) have a
large variation of landscapes, from different-coloured dunes to arches,
gorges, isolated rocks and deep wadis (ravines).
\end{verbatim}
\end{document}
this is what my text looks like inside the \verbatim environment:

My question is: How to tell Latex that everything in a certain paragraph is to be interpreted as plain text?




\begin{verbatim}...\end{verbatim}without any packages, orfancyvrbpackage, for example – Mar 20 '18 at 17:43\textbf, then doesn't that mean that you don't want the backslash to be treated as plain text? Please add an example of what you want: a complete and minimal document, that illustrates all your problems and desired features (which characters you'd like treated as normally, and which formatting (etc.) you'd like to keep, and how you've indicated them). – ShreevatsaR Mar 20 '18 at 17:46\textbf{}to work, then that means you want not only the backslash to be treated as the escape character, but the{and} in\textbf{...}to be treated as the begin-group and end-group characters, so that the argument to\textbfcan work. But at the same time you say you don't want{` to be treated specially. All of these constraints are difficult to satisfy simultaneously, especially when you don't say what they are. :-) – ShreevatsaR Mar 20 '18 at 17:54allttenvironment orVerbatimfromfancyvrbwith[commandchars=\\\{\}]. – Mar 20 '18 at 17:55urlpackage with its\urlcommand. If you usehyperref(which loadsurlfor you) the URL is even linked. – moewe Mar 20 '18 at 18:03_appear in your document when it is not in a URL? (If you prefer your\urls in the same font as the rest of your docs, go with\urlstyle{same}.) – moewe Mar 20 '18 at 18:06_in URLs, where I would use the\urlcommand. There are also legitimate uses if you want to write computer code, whereverbatimand friends are useful. I just can't think of another case where it would occur. – moewe Mar 20 '18 at 18:15urlpackage, or thehyperrefpackage. – GuM Mar 20 '18 at 18:26listingspackage (note the final “s”), or thefancyvrbpackage. – GuM Mar 20 '18 at 18:28my_matlab_code.min verbatim, not the complete paragraph. If you don't like the default verbatim font, it can be changed. – samcarter_is_at_topanswers.xyz Mar 20 '18 at 18:28my_matlab_code.mwould fall under the "code" category I mentioned.verbatimcomes in handy there as well as the https://ctan.org/pkg/listings package, or if you are feeling fancy and have Python installed https://ctan.org/pkg/minted – moewe Mar 20 '18 at 18:35