단락 옆에 핵심 단어를 추가하는 방법은 무엇입니까?

단락 옆에 핵심 단어를 추가하는 방법은 무엇입니까?

명확성을 위해 다음과 같이 단락 옆에 핵심 단어를 추가하고 싶습니다.

여기에 이미지 설명을 입력하세요

\documentclass[12pt]{article}
\usepackage{blindtext}

\begin{document}
\blindtext

\end{document}

이 목표를 어떻게 달성할 수 있나요?

답변1

\marginnote한 가지 옵션 은marginnote패키지; 기하학 패키지를 사용하면 marginparsep(여백 메모와 일반 텍스트 사이의 분리) 및/또는 marginparwidth메모에 예약된 너비를 변경할 수 있습니다.

\documentclass[12pt]{article} 
\usepackage[marginparsep=25pt]{geometry} 
\usepackage{blindtext} 
\usepackage{marginnote} 
\usepackage{xcolor} 

\newcommand\KeyWord[1]{%
  \marginnote{\parbox[t]{\marginparwidth}{\raggedright\small \textcolor{red}{#1}}}}
\reversemarginpar 

\begin{document} 

\KeyWord{Key note}\blindtext 

\end{document}

결과:

여기에 이미지 설명을 입력하세요

답변2

그냥 추가하세요.;-)

\documentclass{article}

\newcommand{\KW}[1]{%
  \par % ensure vertical mode
  \leavevmode % start a paragraph
  {\setbox0=\lastbox}% remove the indentation box
  \makebox[0pt][r]{\textbf{#1}\hspace{2em}}% print the keyword
  \hspace*{\parindent}% add the parindent
  \ignorespaces
}

\begin{document}

This paragraph has no keyword, it has some boring text just to
make it wrap across a couple of lines.

\KW{key word}
This paragraph has a keyword, it has some boring text just to
make it wrap across a couple of lines.

\end{document}

여기에 이미지 설명을 입력하세요

답변3

sep다음은 배열, font및 를 조정할 수 있는 키-값 인터페이스입니다 color.

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage[nopar]{lipsum}
\usepackage{xcolor,xkeyval}

\makeatletter
\define@cmdkey{KW}{sep}{}
\define@cmdkey{KW}{color}{}
\define@cmdkey{KW}{font}{}
\newcommand{\KeyWord}[2][]{%
  \par\noindent
  \setkeys{KW}{#1}%
  \makebox[0pt][r]{\textcolor{\cmdKV@KW@color}{\cmdKV@KW@font #2}\hspace*{\cmdKV@KW@sep}}%
  \hspace*{\parindent}\ignorespaces
}
\makeatother
\newcommand{\KeyWordsetup}[1]{\setkeys{KW}{#1}}%
\AtBeginDocument{\KeyWordsetup{font=\bfseries,color=red,sep=\marginparsep}}% defaults

\begin{document}

\KeyWord{Key note}\lipsum[1]

\KeyWord[sep=20pt]{Key Note}\lipsum[2]

\KeyWord[font=\itshape,color=blue!50]{KEY NOTE}\lipsum[3]

\KeyWordsetup{font=\slshape,color=red,sep=\marginparsep}%
\KeyWord{Key note}\lipsum[4]
\end{document}

관련 정보