-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Quotation style #588
Quotation style #588
Conversation
enable pdftex extensions with \usepackage{microtype}
/.''/ -> /''./ and /,''/ -> /'',/
BTW I believe this is standard British style. Sent from my iPhone
|
It would be cleaner if this didn't have a merge-and-then-revert of #584, which seems like it may be a while before is it merged. Can it be rebased or cherrypicked or some other git magic to get rid of those commits? |
One easy set of git commands to remove merge commits is (when you're on the appropriate branch, assuming upstream is HoTT/book and origin is Shark64/book): git remote update
git rebase -i upstream master
# then close the editor that opens
git push origin quote-style:quote-style -f See, e.g., http://code-redefined.blogspot.com/2010/11/git-rebase-tricks-cleaning-up-twisted.html for a longer explanation. |
If you want to delete the merge-and-revert, you can do the above, but delete the lines that include commits that you don't want to keep. An alternative is to do git remote update
git checkout master
git pull upstream master:master --ff-only # or use --rebase or whatever if you have changes to master
git checkout -b quote-style-2
git cherry-pick 70e9bc1
git cherry-pick 70ea00b
git cherry-pick d976b6e
git push origin quote-style-2:quote-style -f
# now clean up branches
git checkout quote-style
git pull origin quote-style:quote-style -f
git branch -D quote-style-2 |
I kindly ask that these pull requests be disentangled. The |
Ok, so the stile should be period outside the quotes but inside the parenthesis? |
Here is the rule I've always known for periods and parentheses: http://www.quickanddirtytips.com/education/grammar/periods-and-parentheses . I've never heard of differences across the Atlantic on this one; are there? |
and here is the issue I was referring to, regarding periods and quotation marks: On Jan 1, 2014, at 11:34 AM, Mike Shulman [email protected] wrote:
|
Irrespective of what the style should be, there should be three separate pull requests: periods and quotes, periods and parentheses, and microtype. |
Switch to logical quoting style, periods and comma at the ed of a quotation are put outside the quote.