저는 몇 시간 동안 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}