我尝试排版标题页并使用大号粗体。问题是线条似乎太靠近彼此。我觉得这样看起来很糟糕。这是应该的方式吗?有没有更好的方法?
\begin{document}
\begin{center}
{\LARGE\bf An \textit{a priori} Typology of Sentential Negation from an HPSG Perspective}\\[\baselineskip]
\end{center}
\end{document}
编辑:好的,我真正想要的是像下面这样的标题页。我希望在行与行之间留出空间。这就是 baselineskip 的原因。而摆弄字体大小的全部原因是谷歌学术的描述,它告诉 pdf 制作者对标题、作者和其余部分使用不同大小的字体。
\documentclass[11pt,a4paper,fleqn,draft]{article}
\begin{document}
\begin{center}
{\LARGE\bf An \textit{a priori} Typology of Sentential Negation from\\[1mm] an HPSG Perspective}\\[\baselineskip]
{\large Joshua Crowgey}\\[\baselineskip]
University of Washington\\[3\baselineskip]
Proceedings of the HPSG 2012 Conference\\[\baselineskip]
Department of Linguistics, Chungnam National University Daejeon, South Korea\\[\baselineskip]
Stefan M{\"u}ller (Editor)\\[\baselineskip]
2012\\[\baselineskip]
CSLI Publications\\[\baselineskip]
http://csli-publications.stanford.edu/
\end{center}
\newpage
\end{document}
答案1
插入组\par
内{\LARGE...}
并删除末尾的换行符,因为“这里没有行可以结束。”或者,完全删除组格式,让字体选择由环境决定范围center
:
\documentclass{article}
\begin{document}
\begin{center}
{\LARGE\bfseries An \textit{a priori} Typology of Sentential Negation from an HPSG Perspective}
\end{center}
\begin{center}
\LARGE\bfseries An \textit{a priori} Typology of Sentential Negation from an HPSG Perspective
\end{center}
\end{document}
这里的动机是 TeX 仅在完全读取段落后才设置段落。因此,如果没有空行或类似指示,则\par
段落无法通过 中的更改正确设置\baselineskip
。
请注意,、\it
等\bf
字体宏已被弃用,因为它们不使用 LaTeX2e 引入的新字体选择方案。请改用{\itshape ..}
、{\bfseries ..}
或\textit{..}
。\textbf{..}
请参阅\textit
我使用或\it
或\bfseries
等有关系吗\bf
?
和两个字母的字体样式命令(\bf
,,\it
...)会在 LaTeX 中复活吗?
了解更多信息。
根据您更新的帖子,使用上面描述的概念,可以尝试以下一些操作:
\documentclass[11pt,a4paper,fleqn,draft]{article}
\usepackage{url}% http://ctan.org/pkg/url
\begin{document}
\begin{center}
{\LARGE\bf An \textit{a priori} Typology of Sentential Negation from\par an HPSG Perspective\par}
\bigskip
{\large Joshua Crowgey\par}
University of Washington
\vspace*{3\bigskipamount}
Proceedings of the HPSG 2012 Conference
\bigskip
Department of Linguistics, Chungnam National University Daejeon, South Korea
\medskip
Stefan M{\"u}ller (Editor)
\medskip
2012
\medskip
CSLI Publications
\medskip
\url{http://csli-publications.stanford.edu/}
\end{center}
\newpage
\end{document}
答案2
- 添加
\usepackage{setspace}
。 - 要更改整个文档的行距,请使用
\setstretch{baselinestretch}
。对于某些自定义文本,请使用环境:\begin{spacing}{2.5} ... \end{spacing}
。
我想,这就是您所需要的。
答案3
这取决于您使用的文档类别,但您也可以使用\title{}
。并查看我使用 \textit 或 \it、\bfseries 或 \bf 等有关系吗
\documentclass{article}
\title{\textbf{\LARGE An \emph{a priori} Typology of Sentential Negation from an HPSG Perspective}}
\date{}
\begin{document}
\maketitle
\vspace{-3\baselineskip} % If you wish to remove the space for date and author
Start of the text part ....
\end{document}
答案4
当你只想更改两行之间的空格时,你可以写:
first line\\[-1ex]
second line
它在图中非常有用。