變更 LyX 中的預設段落樣式

變更 LyX 中的預設段落樣式

我嘗試了幾個小時在 LyX 中更改章節、段落...等樣式(特別是字體及其顏色),我設法通過修改佈局文件(例如db_stdsections.inc)通過簡單地添加:

Font
Color Green
End Font

Inside Style Paragraph 完成了這項工作,LyX 顯示了綠色段落,但令我驚訝的是,將其轉換為 PDF 後卻保持不變!它仍然像往常一樣黑色,我做錯了什麼?

聚苯乙烯

我不知道如何使用本地樣式,我認為將文字標記為段落環境然後手動設定文字樣式以給他綠色是愚蠢的,我希望兩者同時應用,就像在 MS Word 中一樣。

答案1

我還認為重新定義序言甚至正文中的段落更有用。此外,無論有沒有 Lyx,它都可以工作。無論如何,在看到你的評論之前,我留下了我之前做過的 MWE。

\documentclass{article}
\usepackage{xcolor}
\setcounter{secnumdepth}{5}
\usepackage{lipsum}

\makeatletter
\renewcommand\paragraph{
\@startsection{paragraph}{4}{0em}%
{-1.3\baselineskip}%
{0.3\baselineskip}%
{\normalfont\bfseries\color{red}}%
}%
\makeatother 

\setcounter{secnumdepth}{4}% numbered
\setcounter{tocdepth}{4}% in toc

\newcommand\PARA[1]{\paragraph{\textcolor{blue}{#1}}}


\begin{document}
\tableofcontents
\section{Section}
\subsection{Subection}
\subsubsection{Sub-subsection}

\paragraph{Lore ipsum} \lipsum[4]

\renewcommand\theparagraph{\hspace{-3em}
\rlap{\textcolor{green}{\Roman{paragraph}.}}\hspace{2em}}

\paragraph{Sed commodo} \lipsum[2]
\PARA{Nulla malesuada} \lipsum[6]

\end{document}

相關內容