xcolor パッケージは、テキストへの色の追加をサポートします。これを使用して、背景、フォントの色、ページの背景を設定できます。定義済みの色から色を選択することも、RGB を使用して色を作成することもできます。数学の公式にも色を付けることができます。
コードまたはプログラムにインポートされるパッケージは次のように記述されます。
usepackage{xcolor}
さまざまな色数にアクセスするために使用されるコマンドを以下に示します。
上記のこれらのコマンドは、コード内で次のように宣言されます。
documentclass[dvipsnames, usenames]{beamer}
を入力するためのコマンドは、 色付きのテキスト 以下にリストされています。
色付きのテキストを入力するには 2 つの方法があります。 1 つは、 テキストの色 コマンドを使用する方法と、 色 指示。
の テキストの色 コマンドは次のように宣言されます テキストの色{ 言及された色 { 文章 } 。
color コマンドは {color{言及された色}some text} として宣言されます。
textcolor コマンドは 1 つの段落内のすべてに使用され、color コマンドはテキストが他の tex 環境や複数行にまたがる場合に使用されます。
背景色を変更するには、次のコマンドを使用できます pagecolor {記載の色}。このコマンドは、ページ全体の背景に色を付けます。
テキストの背景に色を付けるには、 カラーボックス {言及された色}{テキスト} コマンド。
背景とテキストの色の両方を変更したい場合は、以下の方法でコマンドを使用できます。
colorbox{mentioned-color}{text}{color{mentioned-color}text}
あらゆる場所で使用される原色、またはすべての色の根源となる原色は次のとおりです。赤、黄色、 そして青 (魚) 。 3 つの二次色はオレンジ、紫、緑色であり、2 つの原色を混合して形成されます。 3 次色は 6 つあり、1 次色と 2 次色を混合して形成されます。
すべてのシステムで使用できる事前定義された色を以下に示します。
他の事前定義された色は以下にリストされています。
シスのチュートリアル
テキストに色を付ける簡単な例を考えてみましょう。コードを以下に示します。
documentclass[12pt]{article} usepackage[dvipsnames]{xcolor} % declaring the package is necessary to implement colors egin{document} The text is written here.\ extcolor{red}{the purpose of learning LaTeX is great.}\ %this LaTeX pattern is used to print the default layout of the work Latex. This is also the text end{document}
出力:
さまざまな行に色を付けるコードを以下に示します。
documentclass[12pt]{article} usepackage[dvipsnames]{xcolor} egin{document} extcolor{red}{This the text} \ extcolor{magenta}{the purpose of learning LaTeX is great.} \ extcolor{yellow}{the lines of different colors}\ extcolor{pink}{the text is written above} \ extcolor{green}{The software used is Texmaker.} \ extcolor{orange}{the text is a combination of words and sentences.} end{document}
出力:
新色
いくつかのカラーもあります。これらの色が適切でない場合は、独自の色を作成できます。
定義します 新しい色 パッケージには、以下を含める必要があります エックスカラー パッケージ。新しい色を作成するために使用されるコマンドは次のとおりです。
definecolor{color name}{prototype}{specifications}
ここ、 仕様 は色の説明を意味し、プロトタイプはモデルです。 5 つの基本モデルまたはプロトタイプがあります。 グレー、rgb、RGB、HTML、cmyk 。さまざまなモデルの色合いの範囲と、プロトタイプと仕様の説明を以下に示します。
私。グレー: グレーの色合いの範囲は次のとおりです。 0(黒) そして 1(白) 。たとえば、0.89 は非常に明るいグレー、0.20 は濃いグレーになります。ライトグレーに定義されたコマンドは次のようになります。
definecolor{light-gray}{gray}{0.92} definecolor{dark-gray}{gray}{0.20}
ii. RGB: 赤、緑、青の 3 色を定義します。範囲は 0 と 1 の間で同じです。コマンドは次のように記述されます。
definecolor{orange}{rgb}{1, 0.5, 0}
iii. RGB: このプロトタイプでは、数量は各色の 0 ~ 255 の数値で表されます。コマンドは次のように記述されます。
definecolor{orange}{RGB}{255, 127, 0}
iv. HTML: これらは、RRGGBB の形式で書かれた 6 つの 16 進数です。形式は HTML で使用される形式に似ています。 htmlのコマンドは次のように記述します。
definecolor{orange}{HTML}{FF7F00}
で。 cmyk: シアン、マゼンタ、イエロー、ブラックを表します。色の量は 0 と 1 の間で表されます。コマンドは次のように記述されます。
definecolor{orange}{cmyk}{0, 1, 0.5,0}.
色混合コマンドのコードを以下に示します。
documentclass[12pt]{article} usepackage[dvipsnames]{xcolor} egin{document} {color{red!50!yellow}colored text}\ % it is a mixture of 50 percent red and 50 percent yellow {color{pink!80!yellow}LaTeX text}\ {color{white!60!red}Some text}\ {color{blue!25!orange}this is text}\ % it is a mixture of 25 percent blue and 75 percent orange {color{blue!55!orange}Nice text}\ {color{green!70!yellow}Any text}\ {color{blue!20!white!30!green}Beautiful text}\ % it is a mixture of (20*0.3) percent blue, ((100-20)*0.3) percent white and (100-30) percent green {color{pink!40!red!50!yellow}colored text} extcolor{blue}{This the text} \ end{document}
出力:
新しい色の違いと、各色への配分の割合に注目してください。
プロトタイプ コマンドのコードを以下に示します。
documentclass[14pt]{article} usepackage[dvipsnames]{xcolor} egin{document} {color[rgb]{0,0,1} The text will look blue-colored} \ extcolor[rgb]{0,1,0}{The text will look green-colored} \ {color[rgb]{1,1,0} The text will look red-green color mixture} \ extcolor[rgb]{1,0,1}{The text will look red-blue color mixture} \ end{document}
出力:
1 行に 2 つ以上の色を挿入することもできます。このようなタイプのコードを以下に示します。
documentclass[14pt]{article} usepackage[dvipsnames]{xcolor} egin{document} This is the {color{red!80!yellow}LaTeX text}\ {color{blue!70!yellow}This topic contains} {color{white!60!red}Some text}\ end{document}
出力:
テキストのハイライト
テキストを強調表示するために使用されるコマンドがあります。要件に応じて、テキストを強調表示するために任意の色を選択できます。あなたには必要だ 魂 のパッケージ エックスカラー パッケージを使用して強調表示されたテキストを実装します。
の 魂 パッケージは次のように書かれています usepackage{魂}
テキストを強調表示するコマンドは次のように記述されます。 hl{任意のテキスト} 。ここ ' hl ' コマンドはハイライト キャプションとして使用されます。
テキストを強調表示する簡単なコードを以下に示します。
documentclass[12pt]{article} usepackage[dvipsnames]{xcolor} usepackage{soul} egin{document} egin{center} extbf{color{red}The highlighted text below :} end{center} The text given here is the hl{highlighted text.} end{document}
上の例では、太字コマンド、色、およびハイライト コマンドを使用していることがわかります。
出力は以下の画像に示されています。
カラーハイライトを指定するには、sethlcolor{カラー名} コマンドを使用する必要があります。 1 つのプログラムで多数のカラー ハイライトを使用することもできます。
カラーハイライトのコードは以下のとおりです。
documentclass[12pt]{article} usepackage{xcolor, soul}% you can also write both the packages in this format egin{document} egin{center} extbf{color{blue}The color highlighted text below :} end{center} sethlcolor{pink} The text given here is the hl{highlighted text in pink.}\ sethlcolor{orange} The text given here is the hl{highlighted text in orange.} end{document}
出力:
テキストの背景
テキストの背景色とその背景のフレーム/境界線の色を変更するには、 fカラーボックス {フレームの任意の色}{任意の背景色}{テキスト} コマンド。テキストの背景は、 カラーボックス {任意の色}{テキスト} コマンド。
テキストの背景を変更するコードは以下のとおりです。
documentclass[12pt]{article} usepackage{xcolor, soul} egin{document} colorbox{green}{The text is written here}\ \ colorbox{lightgray}{The text is written here} end{document}
出力:
テキストの背景とフレームを変更するコードは次のとおりです。
documentclass[12pt]{article} usepackage{xcolor, soul} egin{document} fcolorbox{red}{white}{The text is the simple LaTeX text}\ \ fcolorbox{red}{pink}{This is the normal text}\ \ fcolorbox{blue}{cyan}{text is here}% you can choose any color of your choice end{document}
出力:
Javaで文字列をintに変換する
ページの背景色
ページの背景色を変更するには、 pagecolor {色の名前}コマンド。背景色を変更するコードは以下のとおりです。
documentclass[12pt]{article} usepackage{xcolor, soul} egin{document} fcolorbox{red}{white}{The text is the simple LaTeX text}\ \ pagecolor{lightgray} fcolorbox{blue}{cyan}{text is here} end{document}
ここで私たちが選んだのは、 ライトグレー 色。ご要望に応じて色を変更できます。
出力:
色はこうしましょう オレンジ 今。出力は次のようになります。
を選択した場合、 ピンク color の場合、出力は次のようになります。
色付きの線
ドキュメント内のどこにでも色付きの線を描くことができます。必要に応じて線の幅を設定できます。コードを以下に示します。
documentclass{article} usepackage[dvipsnames]{xcolor} colorlet{LightRubineRed}{RubineRed!70!} colorlet{Mycolor1}{green!40!orange!60!} egin{document}
LaTeX の色付きの線を以下に示します。 \
oindent {color{LightRubineRed} ule{linewidth}{1mm} }\ oindent {color{Mycolor1} ule{linewidth}{1mm} } end{document}
ここでは、最初に色を作成し、それを使用して色付きの線を描画します。
出力: