Skip to content

Commit

Permalink
Revert tikz changes and correct attrib name
Browse files Browse the repository at this point in the history
  • Loading branch information
janssenhenning committed Nov 16, 2022
1 parent 64e454a commit 2080d3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,3 @@ python:

build:
image: testing
apt_packages:
- pdf2svg
2 changes: 0 additions & 2 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@

tikz_tikzlibraries = 'arrows, chains, shapes, positioning, calc, intersections'
tikz_includegraphics_path = 'tikz/graphics'
tikz_transparent=True
tikz_proc_suite='pdf2svg'

myst_heading_anchors = 3
myst_enable_extensions=['colon_fence',]
6 changes: 3 additions & 3 deletions source/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -437,19 +437,19 @@ the desired attribute can be selected using phrases that should (`contains`) or

```{code-cell} ipython3
:tags: [raises-exception]
evaluate_attribute(xmltree, schema_dict, 'mtRadius')
evaluate_attribute(xmltree, schema_dict, 'radius')
```

```{code-cell} ipython3
:tags: [raises-exception]
evaluate_attribute(xmltree, schema_dict, 'mtRadius', contains='species')
evaluate_attribute(xmltree, schema_dict, 'radius', contains='species')
```

```{code-cell} ipython3
:tags: [raises-exception]
#The result is empty since the example file has no mtRadius attribtues specified
#on the atom groups
evaluate_attribute(xmltree, schema_dict, 'mtRadius', not_contains='species')
evaluate_attribute(xmltree, schema_dict, 'radius', not_contains='species')
```

### Relative XPaths
Expand Down

0 comments on commit 2080d3f

Please sign in to comment.