答案1
欢迎来到 TeX.SX!你可以使用\rule
:
\documentclass{article}
\usepackage{xcolor}
\begin{document}
The curve consisting of thick, vertical bars \textcolor{red}{\rule{2pt}{0.66em}} in Fig.~1 shows that ...
\end{document}
但如果你还想复制图表中的其他标记,最好使用 Ti钾Z,我猜(您将其作为标签添加到您的问题中,因此您可能无论如何都在寻找这样的解决方案):
\documentclass{article}
\usepackage{tikz}
\newcommand{\thickverticalbar}{%
\begin{tikzpicture}[baseline]
\draw[line width=2pt, red] (0,0) -- (0,0.66em);
\end{tikzpicture}%
}
\begin{document}
The curve consisting of thick, vertical bars \thickverticalbar{} in Fig.~1 shows that ...
\end{document}
输出看起来与其他解决方案的输出非常相似。
答案2
可以使用\hstretch{<value>}
包scalerel
来创建一个非常粗的简单垂直条。
\documentclass[a4paper,12pt]{article}
\usepackage{oplotsymbl}
\usepackage{xcolor}
\usepackage{scalerel}
\newcommand{\tick}{\raisebox{\depth}{$ \linev $}}
\begin{document}
The curve consisting of thick, vertical bars \textcolor{red}{\hstretch{4}{\tick}} in Fig.~1 shows that \ldots
\end{document}