我似乎无法在 Latex 中写出这个符号“< >”。
答案1
如果你用葡萄牙语写作,你需要
\usepackage[T1]{fontenc}
并可能添加
\usepackage{lmodern}
到文档前言。第一个包是为了使重音词的连字符能够跨越重音而需要的,这在葡萄牙语中是必需的。
这样,输入如下内容
Formato reconhecido <Especificador>
将按预期打印。但是,传统上以等宽字体打印此类关键字,以便与上下文区分开来。因此
Formato reconhecido \texttt{<Especificador>}
是我的建议。
最小示例
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[portuguese]{babel} % or brazil
\begin{document}
Formato reconhecido <Especificador>
Formato reconhecido \texttt{<Especificador>}
\end{document}