如何让 LaTeX 只将以下几行打印为纯文本?当我将文件编译.tex
成.ps
the main texts are bounded by <p>...</p> within the <div class = paragraph section> ...</div> attributes
如何更改 LaTeX 中单行的字体?例如,我希望第二行使用 Courier New 字体,而第一行使用普通默认字体。
Httrack was used for data collection.
**Only raw HTML were downloaded without embedded media files.**
如何在 LaTeX 中启用越南语和中文字体?我想在 LaTeX 中显示以下几行:
乌节路 wujielu “Orchard road” was wrongly segmented as 乌 节路 wu jielu “black joint-road”
‘quốc tế’ mean international, but seperating them by whitespaces could have caused a mis-tokenization
如何在 LaTeX 中获取行中的制表符?例如
this is a tabulated line
答案1
房源
\documentclass{article}
\usepackage{listings}
\lstset{%
basicstyle=\ttfamily,
language=HTML,
}
\lstMakeShortInline|
\begin{document}
Normal Text |<p>| normal text
\begin{lstlisting}
<html>
<head>
<title>Hello HTML</title>
</head>
<body>
<p>Hello World!</p>
</body>
</html>
\end{lstlisting}
\end{document}
有关详细信息,请参阅包文档,例如自动语法突出显示。
越南语/中文
我猜XeLaTeX
或者LuaTeX
可以帮忙。两者都能够处理 Unicode。您所需要的只是包含越南语/中文字符的字体。
标签
\documentclass{article}
\begin{document}
\begin{tabbing}
Text \= Text \= Text\kill
a \> b \> c \\
ddd\> ee \> f \\
\end{tabbing}
\end{document}
请参阅您喜欢的 LaTeX 书籍/手册以了解更多信息
答案2
我相信您也可以使用该verbatim
环境和该fancyvrb
包。
\begin{verbatim}[options]
your text
\end{verbatim}
并且“您的文本”将按照您在文件中输入的内容进行排版,.tex
并且可以使用选项来声明字体。 其中一些选项是fontseries
,,,等等......fontshape
fontsize
检查包信息以fancyvrb
了解所有可用选项。
至于您的字体类型:
{\fontfamily{fontname}
\fontsize{fontsize}{CAPSsize}\selectfont{your text}
}
只需输入您的“字体名称”、两种大小(仅数字,无单位)并将您想要更改的文本放在括号中\selectfont
。