上下箭頭,右側有註釋

上下箭頭,右側有註釋

我知道類似的命令\underrightarrow{Text}允許註釋箭頭。是否有類似的方法來創建一個向上向下的箭頭,其右側有文字註釋? 在此輸入影像描述

答案1

這個問題很模糊,但由於它來自新用戶,我會嘗試一下。

用於文字中的符號

\documentclass{article}

\usepackage{mathtools}
\usepackage{accents}

\newcommand{\ubar}[1]{\underaccent{\bar}{#1}}

\newcommand{\Jarrow}{\ubar{J}\!\!\downarrow}

\begin{document}

$\Jarrow$

\end{document}

的定義\ubar借用自這個精彩的答案由埃格格。

在此輸入影像描述

用於圖形(例如交換圖)

\documentclass{article}

\usepackage{mathtools}
\usepackage{accents}
\usepackage{tikz}
\usepackage{tikz-cd}

\newcommand{\ubar}[1]{\underaccent{\bar}{#1}}

\begin{document}

% For general use in figures made in plain TikZ:

\begin{tikzpicture}
\draw[->] (0,0) -- (0,-1);
\node[scale=0.8] at (-0.2,-0.5) {$\ubar{J}$}; 
\end{tikzpicture}

% When making commutative diagrams:

\begin{tikzcd}
{} \arrow[d, "\ubar{J}"'] \\
{}
\end{tikzcd}

\end{document}

在此輸入影像描述

請注意,您可以使用tikz-cd製作交換圖之外的包(例如xypic),儘管在我看來,tikz-cd這是最好的。

嗯,我希望這對你有一些幫助。願上帝保佑並永遠祝福你。

答案2

含鈦Kz,newcommand用參數定義a

\arr{<length>}{<pos>}{<location>}{<text>}

代碼:

\documentclass[margin=3mm,varwidth]{standalone}
\usepackage{tikz}
\newcommand{\arr}[4]{%
\begin{tikzpicture}[line width=0.35mm,>=stealth]%
\draw[->](0,0)--++(-90:#1)node[pos=#2,#3]{$\underline{#4}$};%
\end{tikzpicture}%
}

\begin{document}
\arr{1}{0.65}{left}{J}
\quad
\arr{0.5}{0.65}{right}{J}
\quad
\arr{0.85}{0.1}{above}{J}
\quad
\arr{0.85}{}{below}{J}
\\[0.5cm]
This is an arrow \arr{0.85}{0.65}{right}{J}with annotation.
\end{document}

在此輸入影像描述

相關內容