-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 37e8e27
Showing
8 changed files
with
1,311 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Change Log | ||
========== | ||
|
||
|
||
## 0.1.0 (2022-08-11) | ||
|
||
**Here Applies** has been published. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
hereapplies.sty | ||
=============== | ||
|
||
A LaTeX package for cross-linking applications of concepts | ||
|
||
|
||
Example usage | ||
------------- | ||
|
||
### LaTeX source | ||
|
||
``` tex | ||
\documentclass[oneside]{book} | ||
\usepackage{hereapplies} | ||
\begin{document} | ||
\title{Some title} | ||
\author{Some author} | ||
\maketitle | ||
This is concept one. To see this concept applied, please | ||
see\whereapplies{conceptone}. | ||
This is concept four. To see this concept applied, please | ||
see\whereapplies{conceptfour}.\newpage | ||
\hereapplies{conceptone}This is page \thepage. As you can see, ``concept | ||
one'' applies here.\newpage | ||
\hereapplies{conceptfour}This is page \thepage. As you can see, | ||
``concept four'' applies here.\newpage | ||
\hereapplies{conceptone}This is page \thepage. As you can see, ``concept | ||
one'' applies here.\newpage | ||
\hereapplies{conceptfour}This is page \thepage. As you can see, | ||
``concept four'' applies here.\newpage | ||
\hereapplies{conceptone}This is page \thepage. As you can see, ``concept | ||
one'' applies here. | ||
\end{document} | ||
``` | ||
|
||
### Result | ||
|
||
![Example of hereapplies.sty][1] | ||
|
||
|
||
[1]: example.png | ||
|
Oops, something went wrong.