在LaTeX中,破折号(dash)有几种不同的形式,包括短破折号(hyphen)、中破折号(en dash)和长破折号(em dash)。下面我将分别介绍它们的正确表示方法和具体输入命令,并给出使用示例。
1. **短破折号(hyphen)**:
- **表示方法**:短破折号在LaTeX中通常用于连接单词以形成一个复合词或短语。
- **输入命令**:直接使用键盘上的连字符键(`-`)即可。
- **示例**:`self-esteem`(自尊)
2. **中破折号(en dash)**:
- **表示方法**:中破折号用于表示一个范围,如日期、时间或数字范围。
- **输入命令**:在LaTeX中,可以通过输入两个连字符(`--`)来自动生成中破折号。
- **示例**:`pp. 123--145`(第123页到第145页);`June--August`(6月到8月)
3. **长破折号(em dash)**:
- **表示方法**:长破折号在LaTeX中用作标点符号,用于表示突然的转折、插入或中断。
- **输入命令**:在LaTeX中,可以通过输入三个连字符(`---`)来自动生成长破折号。
- **示例**:`However, this is not the case---at least, not always.`(然而,情况并非如此——至少,并不总是如此。)
下面是包含上述三种破折号使用示例的LaTeX代码片段:
```latex
\documentclass{article}
\begin{document}
Here is an example of a hyphen in a compound word: \textbf{self-esteem}.
Here is an example of an en dash indicating a range: see pages \textbf{123--145}.
Here is an example of an em dash used as punctuation: However, this is not the case\textbf{---}at least, not always.
\end{document}
```
在编译上述LaTeX代码后,你将看到短破折号、中破折号和长破折号在文档中的正确表示。希望这些信息对你有所帮助!