我有一个tikz代码来生成一些在latex
中正常运行的图形(在背面:https://www.overleaf.com上进行了测试)。但是,这应该是大型rmarkdown
文件的一部分,但是在rmarkdown
中时,我似乎无法在某些节点标签中使用项目符号列表。我的问题是:
rmarkdown
中使用项目符号列表作为tikz的节点标签?latex
时在\newlist
中使用\setlist
和rmarkdown
定义的内容在哪里?我可以在latex
中生成这些图形,并使用knitr :: include_graphics(...)将其包括在内,但我更喜欢使用一种更自动的方式,即我可以让代码生成图形并将它们嵌入为它们出现在文件中。
---
title: "Title"
author: "Me"
output:
bookdown::pdf_document2:
keep_tex: yes
latex_engine: xelatex
---
以下内容在编织程序块之外正常工作。
p
\begin{itemize}
\item first item
\item second item
\end{itemize}
当该标签不涉及项目列表时,它也可以在编织块内作为节点标签使用。否则,结果为:! LaTeX Error: Something's wrong--perhaps a missing \item.
```{tikz, tikz-ex, echo=F, fig.cap = "Funky tikz", fig.ext = 'png', cache=TRUE, eval=T, engine.opts = list(template = "tikz2pdf.tex")}
\usetikzlibrary{arrows, shapes}
\definecolor{myColor}{rgb}{0.98, 0.94, 0.9}
\begin{tikzpicture}
\tikzstyle {stile} = [
ellipse,
draw=myColor,
fill=myColor,
thick,
inner sep=0pt,
text centered,
align=center
]
\node [stile](P){
p
\begin{itemize}
\item first item
\item second item
\end{itemize}
};
\end{tikzpicture}
tikz2pdf.tex包含以下内容:
\documentclass{article}
\include{preview}
\usepackage[utf8]{inputenc}
\usepackage[skins]{tcolorbox}
\usepackage{
tikz,
enumitem,
xcolor
}
\usetikzlibrary{
shapes,
arrows
}
\begin{document}
\begin{preview}
\end{preview}
\end{document}
最终,我想自定义此列表以更改项目的格式,例如颜色,边距等。为此,我有以下代码也可以在latex
中使用,但是我不确定在哪里使用rmarkdown
时将其放置。
\definecolor{BulletsColor}{rgb}{0.98, 0.94, 0.9}
\newlist{myBullets}{itemize}{1}
\setlist[myBullets]{
label=\textcolor{BulletsColor}{\textbullet},
leftmargin=*,
topsep=0ex,
partopsep=0ex,
parsep=0ex,
itemsep=0ex,
before={\color{BulletsColor}\itshape}
}
理想情况下,我希望能够像在latex
中那样使用它:
\node [stile](P){
p
\begin{myBullets}
\item first item
\item second item
\end{myBullets}
};
我希望(很抱歉,我无法提供完整的图片)输出类似于:
P
在节点标签中。
答案 0 :(得分:1)
如果要在具有段落,换行符等的节点中包含复杂文本,则需要将其放在诸如parbox或minipage之类的框中。否则,tikz无法确定文本宽度和执行任何格式。
\documentclass{article}
\usepackage{tikz}
\usepackage{enumitem}
\begin{document}
\definecolor{BulletsColor}{rgb}{0, 0, 0.9}
\newlist{myBullets}{itemize}{1}
\setlist[myBullets]{
label=\textcolor{BulletsColor}{\textbullet},
leftmargin=*,
topsep=0ex,
partopsep=0ex,
parsep=0ex,
itemsep=0ex,
before={\color{BulletsColor}\itshape}
}
\begin{tikzpicture}
\node[draw, rounded corners] (a) {
\begin{minipage}{2.5cm}
p
\begin{myBullets}
\item first item
\item second item
\end{myBullets}
\end{minipage}
}
;
\end{tikzpicture}
\end{document}
我更改了BulletColor,因为文本几乎是白色且不可见。
答案 1 :(得分:1)
Alain Merigot解决了您的Tikz问题。您的其他问题与R Markdown特别相关。我会尝试解决这些问题。
您在评论中询问了他给您的代码放在哪里。为了解决这个问题,您需要考虑R Markdown流程。 tikz
代码块中的所有代码都将插入到tikz2pdf.tex
所在的行中的%% TIKZ_CODE %%
中。但是您没有该行,因此需要添加它。然后LaTeX将处理该文件以生成图形。因此,图中将使用的所有内容都必须放入您的tikz2pdf.tex
模板中。那是Alain的大部分补充。
LaTeX生成图形后,将在您的主文件中再次调用该图形,该文件将具有某种\includegraphics
宏以将图形包括在主文件中。如果您还希望在主文件中使用这些定义中的任何一个(例如,您希望在两个地方使用相同的颜色),则也必须在其中重复这些定义。它们应该放在代码块之外。如果它们需要放在标题中(例如\usepackage
调用),则需要
在YAML中。
以下是使用Alain的Tikz代码对示例进行的修改。
tikz2pdf.tex
:
\documentclass{article}
\usepackage[pdftex,active,tightpage]{preview}
\usepackage[utf8]{inputenc}
\usepackage[skins]{tcolorbox}
\usepackage{
tikz,
enumitem,
xcolor
}
\begin{document}
\definecolor{BulletsColor}{rgb}{0, 0, 0.9}
\definecolor{myColor}{rgb}{0.98, 0.94, 0.9}
\newlist{myBullets}{itemize}{1}
\setlist[myBullets]{
label=\textcolor{BulletsColor}{\textbullet},
leftmargin=*,
topsep=0ex,
partopsep=0ex,
parsep=0ex,
itemsep=0ex,
before={\color{BulletsColor}\itshape}
}
\tikzstyle {stile} = [
ellipse,
draw=BulletsColor,
fill=myColor,
thick,
inner sep=0pt,
text centered,
align=center
]
\begin{preview}
%% TIKZ_CODE %%
\end{preview}
\end{document}
Title.Rmd
:
---
title: "Title"
author: "Me"
output:
bookdown::pdf_document2:
keep_tex: yes
latex_engine: xelatex
---
```{tikz tikz-ex, echo=FALSE, fig.cap = "Funky tikz", fig.ext = 'pdf', cache=FALSE, eval=TRUE, engine.opts = list(template = "tikz2pdf.tex")}
\usetikzlibrary{
shapes,
arrows
}
\begin{tikzpicture}
\node[stile] (a){
\begin{minipage}{2.5cm}
p
\begin{myBullets}
\item first item
\item second item
\end{myBullets}
\end{minipage}
};
\end{tikzpicture}
```
这将产生一个包含
的页面注意:在编辑模板时,我在代码块中设置了cache = FALSE
。如果不这样做,除非knitr
块也有更改,否则tikz
不会查看模板的更改。停止缓存可以避免开发过程中的混乱。对模板满意后,您可以再次打开缓存以加快处理速度。