키 입력 패키지로 명령 키 표시

키 입력 패키지로 명령 키 표시

Macintosh에서 LaTeX로 터미널을 여는 지침을 작성하려고 합니다. 이를 위해서는 키 누르기를 설명해야 하는데, 키스트로크 패키지로 해결한 문제입니다. 불행하게도 Command 키를 설명하는 방법을 찾을 수 없는 것 같습니다. 나는 \Command과 를 모두 시도했습니다 \Cmd. Command 키를 표시하려면 어떻게 해야 합니까?

\documentclass{book}

\usepackage{keystroke}

\title{Install Homebrew on A Macintosh}
\begin{document}
\maketitle
\subsection{Homebrew}
First, install the \href{https://brew.sh}{homebrew package manager for OS X} by simply pasting the ruby script on their website into your terminal emulator. You can open your terminal emulator by pressing \Cmd + \Spacebar
\end{document}

답변1

기본적으로 keystroke패키지는 다음만 정의합니다.

\Enter \Del  \Ins    \Esc   \Shift  \Ctrl  \Home
\End   \PgUp \PgDown \PrtSc \Scroll \Break

(영어 이외의 다른 언어에 대한 현지화된 버전 포함) 목록에 직접 추가할 수 있습니다.

\documentclass{book}

\usepackage{keystroke}
\usepackage{hyperref}

\newcommand*{\Cmd}{\keystroke{Cmd}}


\title{Install Homebrew on A Macintosh}
\author{Miles}

\begin{document}

\maketitle

\subsection{Homebrew}
First, install the \href{https://brew.sh}{homebrew package manager for OS X}
by simply pasting the ruby script on their website into your terminal emulator.
You can open your terminal emulator by pressing \Cmd + \Spacebar

\end{document}

여기에 이미지 설명을 입력하세요

답변2

다음은 다음을 사용하는 솔루션입니다.menukeys. Btw: 패키지의 예제 파일을 믿습니다.keystroke해당 패키지에는 Mac 명령 키가 없습니다.

메뉴키

\documentclass{article}
\usepackage[os=mac]{menukeys}
\begin{document}
\subsection{Homebrew}
First, install the \dots\ by simply pasting the ruby script on their website into your terminal emulator. You can open your terminal emulator by pressing \keys{\cmd+\Space}
\end{document}

답변3

\keystroke패키지 의 명령은 , 등 keystroke의 인수를 사용합니다 . 심지어 그래픽을 입력 인수로 사용하므로 이것이 제가 사용한 것입니다.aZF1

\documentclass{book}
\usepackage{keystroke}
\usepackage{graphicx}
\usepackage{scalerel}
\def\cmd{%
    \scalerel*{\includegraphics{apple}}{X}%
}

\begin{document}
    \subsection{Homebrew}
    First, install the homebrew package manager for OS X  by simply pasting the ruby script on their website into your terminal emulator. You can open your terminal emulator by pressing \keystroke{\cmd}+\Spacebar
\end{document}

산출

관련 정보