Lyx 上的奉献精神

Lyx 上的奉献精神

我正在使用 Lyx(模板报告),我想在文档的第三页添加对我家人的献词。像这样:

在此处输入图片描述

我尝试了代码\begin{dedication}文本\end{dedication},但没有结果。

答案1

为了使用,\begin{dedication}...\end{dedication}您必须定义环境。

看你提供的图像,我假设页眉和页脚是在其他地方定义的。以下是获取dedication环境的一种方法

\documentclass{article}

\usepackage{lipsum} % for sample text
\newenvironment{dedication}{\phantom{}\vfill\begin{flushright}\begin{minipage}{0.5\textwidth}\raggedleft}{\end{minipage}\end{flushright}\vfill}
\begin{document}

\begin{dedication}
\lipsum[1] 
\end{dedication}

\end{document}

相关内容